Debugging ASP.NET Web Pages That Require SSL

G

Guest

have an ASP.NET web application on a virtual directory that is set to require SSL. After making the settings in IIS I try to debug from VS.NET and I get a message that the project is not configured to debug. However, the project has all the settings and I can debug it if I remove the SSL requirement. How can I debug a project that where the virtual directory is set to require SSL
 
P

Peter O'Reilly

Production environment use SSL and do not debug.
Development environment, no SSL usage and debug in this environment.

The answer to your question is to create a development environment.
 
N

Nicole Calinoiu

You need to change the URLs that VS.NET uses to reach the project files and
web application. While neither your solution or project are loaded in
VS.NET, make the following edits in notepad:

1. In the solution (.sln) file, edit the URL to the .csproj file for the
web application. The original line might look something like this:

Project("{<GUID>}") = "projectname",
"http://someserver/projectname/projectname.csproj", "{<another GUID>}"

You need to change it to something like the following (i.e.: use https
instead of http):

Project("{<GUID>}") = "projectname",
"https://someserver/projectname/projectname.csproj", "{<another GUID>}"

2. In the webinfo file (.webinfo) for the web application, edit the URLPath
attribute of the Web element to use https. e.g.:

<Web URLPath = "http://server/projectname/projectname.csproj" />

would become

<Web URLPath = "https://server/projectname/projectname.csproj" />

HTH,
Nicole
 
G

Guest

The change in the .sln file worked until I specified client cert. required or accepted. Is it possible to debug a secure page in VS.NET with a client certificate?
 
N

Nicole Calinoiu

Unfortunately, it doesn't look like VS.NET is set up to use client
certificates with web projects. However, it is still possible to debug with
client certificates--it's just a wee bit of a PITA:

1. In the IIS admin console, set your application to _not_ require client
certificates.
2. Load your solution/project in VS.NET.
3. Start debugging the project by running it from VS.NET.
4. While it's already debugging (started in step 3), use the the IIS admin
console to set your application to require client certificates.
5. Continue your debugging run. You should be able to see the client
certificate in the requests for the remainder of the debugging session.

HTH,
Nicole
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,053
Latest member
BrodieSola

Latest Threads

Top