Hello everybody,
I have a webapplication which uses an external webservice to send files and messages. The IIS runs on a Windows2003 Server.
I now need to log somehow the requests which are send by the ASP.NET-MVC application to the external service. In Fiddler2 I just can see the incoming answers from the webservice, but I cannot see the requests which are sent from my application. I need to see the whole XML Soap request.
I've already added this to the web.config
<system.net>
<defaultProxy>
<proxy bypassonlocal="false" usesystemdefault="true" proxyaddress="http://127.0.0.1:8888" />
</defaultProxy>
</system.net>
Does anyone know what else I can do?
Thanks