Groups | Blog | Home
all groups > asp.net > december 2005 >

asp.net : How to remotely debug an asp.net application


J-T
12/1/2005 11:14:06 PM
Hello,

We have an ASP.NET application which talks to a third party webservices to
verify a credit card.This application is in another DMZ and completely
outside of our developement zone (where all out developers develope
stuff).I'd like to trace what message app is sending to webserivce and what
response it gets.How can I remotely do this? Can CLR debugger do this?

Thanks a lot

Santhi Maadhaven
12/2/2005 7:18:02 AM
Hi,
See the below link for remote debugging it will help u.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsdebug/html/vctskinstallingremotedebugmonitor.asp

If you want to trace information ,you can change in web.config of application
<configuration>
<system.web>
<trace enabled="true"
requestLimit="15"
pageOutput="true"
localOnly="false" />
<system.web>
</configuration>

You can see the trace information in http://hostname/AppName/trace.axd

[quoted text, click to view]
AddThis Social Bookmark Button