how can I specify a proxy configuration using Microsoft.XMLHTTP?

前端 未结 4 1747
情深已故
情深已故 2020-12-03 12:04

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

4条回答
  •  广开言路
    2020-12-03 12:38

    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

    ...

提交回复
热议问题