Can't debug 1.1 web app

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Please help..

I can't debug ASP.NET 1.1 application. I also have ASP.NET 2.0 installed.
Running aspnet_regiis -lv produces:

=====================================================
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322>aspnet_regiis -lv
1.1.4322.0 Valid
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\asp
net_isapi.dll
2.0.50727.0 Valid (Root)
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\as
pnet_isapi.dll
=====================================================

Pressing F5 results in this error:

"Error while trying to run project: Unable to start debugging on the web
server. Server side-error occurred on sending debug HTTP request.

Make sure the server is operating correctly. Verify there are no syntax
errors in web config by doing a Debug.Start Without Debugging. You may also
want to refer tot he ASP.NET andATL Server debugging topic in the online
documentation".

I can run the application without debugging and receive no errors.

Any help would be greatly appreciated.

Thanks
 
Have you gone into IIS and gone to the Properties > "ASP.NET" Tab > "ASP.NET
version" and checked it, for you web app?
 
I have. The ASP.NET tab has 1.1.4322 selected. I have noticed that the
"Application Name" on the "Directory" tab keeps getting cleared. Thanks in
advance James.
 
You can try clicking "Remove" then "Create" again. But I'd make a not of
your settings beforehand. Then again, I'm over cautious.
 
I've tried that without success. I can debug ASP.NET 2.0 apps, but not 1.1.
Any other suggestions?
 
kmilburn said:
Please help..

I can't debug ASP.NET 1.1 application. I also have ASP.NET 2.0 installed.
Running aspnet_regiis -lv produces:

=====================================================
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322>aspnet_regiis -lv
1.1.4322.0 Valid
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\asp
net_isapi.dll
2.0.50727.0 Valid (Root)
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\as
pnet_isapi.dll
=====================================================

Pressing F5 results in this error:

"Error while trying to run project: Unable to start debugging on the web
server. Server side-error occurred on sending debug HTTP request.

Make sure the server is operating correctly. Verify there are no syntax
errors in web config by doing a Debug.Start Without Debugging. You may also
want to refer tot he ASP.NET andATL Server debugging topic in the online
documentation".

I can run the application without debugging and receive no errors.

Any help would be greatly appreciated.

Thanks
If you are using dbgclr.exe, each has it's own version. The 1.1 version
can't debug the 2.0 version, and most likely the 2.0 version won't debug the
1.x version.
Don't know if that helps.
Mike
 
Back
Top