Hi there!
If we understand you correctly, your web service hosted by Cassini sends our requests that you would like to capture, and you can capture them in WebDev, but not in Cassini. If that's it the case, here some thoughts:
Proxy settings of IE are user-specific. When you run WebDev, it runs in the context of your user account, so proxy settings from IE->Tools are inherited by WebDev process. Cassini and IIS, unlike WebDev, normally run as windows services - processes that have their own non-interactive user account (Local System in Cassini case). Windows service processes cannot inherit user-specific proxy settings since they run under different account context. The work-around for this would be to
run Cassini as a regular interactive exe for debugging purposes. In this situation Cassini, just like WebDev, will inherit WinInet proxy settings of the current user and your HTTP tracer will be able to capture traffic from the web service. Another way to work around it is to add proxy settings in the code:
Code:request.Proxy = new WebProxy(proxyHost,proxyPort);
Please let us know if this information was helpful.
Best regards,
UltiDev Team.
Please donate at
http://www.ultidev.com/products/Donate.aspx to help us improve our products.