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] "J-T" wrote:
> 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
>
>