I\'m using Microsoft.XMLHTTP from a classic asp page to post info to another site...
I\'d like to be able to inspect what\'s going on with fiddler, and to do so I ha
oops
I think I found it
http://support.microsoft.com/kb/289481/EN-US/
you have to issu something like
proxycfg -d -p myProxyServer:80 ""
...
edit:
I've also found that using ServerXMLHTTP instead of XMLHttp, you have a setProxy method...
http://msdn.microsoft.com/en-us/library/ms760236(VS.85).aspx
and here is a usage example
http://msdn.microsoft.com/en-us/library/ms763680(VS.85).aspx
...