|
Archives
D Programming
digitalmars.Ddigitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger D.gnu D C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript electronics |
DMDScript - proxy.pac doesn't work after installing DMDscript plugin in IE 6
After installing DMDscript using the instructions at http://www.digitalmars.com/dscript/cppscript.html IE6.0.2800.1106CO (Windows2000, fully up to date with the latest patches) couldn't connect through the proxy any more. The message is "Cannot connect through server". IE was set up to use automatic proxy configuration through a file named "proxy.pac", which contains something like: function FindProxyForURL(url, host) { if (isPlainHostName(host) || isInNet(host, "10.0.0.0", "255.0.0.0")) return "DIRECT"; if (isInNet(myIpAddress(), "10.0.0.0", "255.0.0.0")) return "PROXY myproxy:80"; return "DIRECT"; } When manually setting the proxy to myproxy:80, IE could connect through the proxy again. (workaround) Because proxy.pac uses javascript, I assume that this file is now handled by DMDscript as well, which - for some reason - doesn't work. No error message is shown, except that any attempt to connect to a site through the proxy gives a "Cannot connect to server" error message. Regards, Jan Nijtmans Nov 11 2005
Nov 11 2005
In article <dl2d0n$n53$1 digitaldaemon.com>, Dan says...I'm honestly not sure and I'm definitely not on the DMDScript payroll, but this may have to do with the ActiveXObject support? My understanding is that Microsoft is changing their support for some COM objects because of their switch to the "Firewall" API in order to feign greater security so they may have introduced the bug themselves. Nov 14 2005
|