473,729 Members | 2,340 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

asp.net 1.1 would not start: web server is not running 1.1

Hello, everybody,

When I try to create an ASP.NET 1.1 Application, I got: VS.Net has detected
that the Specified Web Server Is Not Running ASP.NET Version 1.1" Error
Message.

I am running VS.net 2003 Pro on w2k. My web server is the local IIS5. I have
my windows and IIS running for a while and VS.Net is a new install.

I have run aspnet_regiis –I, and regsvr32 aspnet_isapi.dl l under commend
line prompt successfully. I found out I have v1.0.3705 and v1.1.4322 under my
%windir%\Micros oft.net\framewo rk\. I run the v1.1 one.

I have also un/reinstall the VS.net.

I understand the first step is always the hardest, but I did not expect to
research for it for weeks without answers.

Your help is much appreciated!

Nov 18 '05 #1
1 1189
Hi Homer,

When you create a Web application with Visual Studio .NET 2003, we make a
request for a non-existent file called get_aspx_ver.as px. We expect to get
back a header that tells us what version of ASP.NET you are running. If we
get back "1.1.4322", all is good. If we get back anything else (including
an error message), we throw the error you are seeing.

There are a few good ways to tell what's going on with these issues:

1. Open a Web browser and try browsing to http://server/get_aspx_ver.aspx.
Tell me what you see specifically.
2. Look at the IIS logs on the server and see what the server is returning
for that request.
3. Get a network sniff of project creation to see what's going on over the
wire.

Jim Cheshire [MSFT]
MCP+I, MCSE, MCSD, MCDBA
ASP.NET Developer Support
ja******@online .microsoft.com

This post is provided "AS-IS" with no warranties and confers no rights.
--------------------
| Thread-Topic: asp.net 1.1 would not start: web server is not running 1.1
| thread-index: AcSvs1WrX3E7lYI LTvyhacDVbY/z2w==
| X-WBNR-Posting-Host: 12.10.13.194
| From: "=?Utf-8?B?aG9tZXI=?=" <ho***@discussi ons.microsoft.c om>
| Subject: asp.net 1.1 would not start: web server is not running 1.1
| Date: Mon, 11 Oct 2004 09:57:04 -0700
| Lines: 20
| Message-ID: <21************ *************** *******@microso ft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 8bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: TK2MSFTNGXA03.p hx.gbl 10.40.1.29
| Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG XA03.phx.gbl
| Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.framew ork.aspnet:2670 75
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| Hello, everybody,
|
| When I try to create an ASP.NET 1.1 Application, I got: VS.Net has
detected
| that the Specified Web Server Is Not Running ASP.NET Version 1.1" Error
| Message.
|
| I am running VS.net 2003 Pro on w2k. My web server is the local IIS5. I
have
| my windows and IIS running for a while and VS.Net is a new install.
|
| I have run aspnet_regiis –I, and regsvr32 aspnet_isapi.dl l under
commend
| line prompt successfully. I found out I have v1.0.3705 and v1.1.4322
under my
| %windir%\Micros oft.net\framewo rk\. I run the v1.1 one.
|
| I have also un/reinstall the VS.net.
|
| I understand the first step is always the hardest, but I did not expect
to
| research for it for weeks without answers.
|
| Your help is much appreciated!
|
|

Nov 18 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
5839
by: Mark Adams | last post by:
I am a relative newbie to MySQL. I had a Postfix+Courier+MySQL mail server running for several months. It took me a week or so to get it up and running in September. Now, I did a clean upgrade to Mandrake 9.2 and am reinstalling everything. This thing is kicking my ass and I can't seem to get past it. I could really use some help if anybody has any. Just for reference, this was my primary source for information on installation and...
1
2392
by: Tom wilson | last post by:
I've been through everything with this error and cannot get the debugger to work remotely. The only thing I can trace it down to is that RPC is not communicating between servers. So after many, many hours of searching I found the RPCPing utilitty. We have 8 servers, 2 Exchange 2003 servers. RPCPing pings nothing from anywhere on all protocols. I've tried on all severs in all directions and from several different workstations. I...
8
2050
by: Robert Megee | last post by:
I can't get Process.Start() to work from a Web application. Is this because of the security settings in the browser? Since this is for a private network, security isn't an issue. Anyone know how to make this work or is there another way? I've tried: Process proc = new Process(); proc.StartInfo.Startfile = "c:\\winnt\\notepad.exe"; proc.Start();
16
4215
by: Serdar Kalaycý | last post by:
Hi everybody, My problem seems a bit clichè but I could not work around. Well I read lots of MSDN papers and discussions, but my problem is a bit different from them. When I tried to run the project in debug mode (by hitting F5) it gives an error message "Error while trying to run project: Unable to start debugging on the web server.
6
3075
by: mg | last post by:
The following .exe and its parameters work correctly from the command prompt (it prints x.pdf without prompting the user. acrord32.exe /t "c:\exportfiles\x.pdf" "HP LaserJet 3300 Series PCL 6" "HP LaserJet 3300 Series PCL" "DOT4_001" But, I have not been able to use the exe and its parameters as arguments #1 & #2 in System.Diagnostics.Process.Start( arg1 , arg2) when run in the code behind of a Visual Studio WebForm
6
3119
by: kai | last post by:
Hi, I was tring to run an example (HelloWorld.aspx) from MSPrss book, I get this message: "ASP.NET Development Server faild to start listening port 1034. Error message: An attempt was made to access a socket in a way fobidden by its access permissions."
16
2537
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client uses IE to talk with a server. The user on the client (IE) sees an ASP net page containing a TextBox. He can write some text in this text box and push a submit button.
4
7620
by: ian | last post by:
A few weeks ago I was able to run remote debugging from my local machine (VS 2005 XP sp2) but now I get the following message: unable to start debugging on the web server. logon failure: unknown user name or bad password I logged on to a neighbors computer and I can debug from his so the server should be OK right? The web server is running Server 2003 sp1. I even tried disabling the loopback check in the registry...
0
4214
by: Arun21084 | last post by:
Hi, Recently I installed an application HP SIP(Service Information Portal) on a Windows 2000 server.The application comes along with an installation of Tomcat 5.0.19. Already there was an Apache 2 running on the server used by other application. Once after installation of the product(HP SIP), I tried to restart the Tomcat 5.0.19 process using below methods(errors reported below respectively) 1) services.msc console Could not start...
0
8763
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9427
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9202
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9148
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8151
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6022
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4528
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4796
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2165
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.