Thanks a million!
Cameron
Hello Sir, I reviewed the netmon cap files more closely.
One of the things that I noticed is the proxy server
involved in this is: SQUID/2.4
After searching in our bug database for soaptk, I found
that developer group is aware of this scenario where
soaptk clients on win98 and winme machine fail when SQUID
proxy is involved. The same client works on win2k and
winxp. They have clearly stated that this is not going to
fixed. They have also issued a list of supported proxies
and respective configuration by soap toolkit v3.0 Please
note that a KB article is currently in works which
documents following:
Following Proxy scenarios are tested/supported by SOAP
Toolkit 3.0:
MS ISA Proxy
o Proxy: no auth, NTLM auth
o Tunneling: plain http connections, SSL
connections, authenticated (Basic, Digest, NTLM)
connections
MS Proxy 2.0
o Proxy: no auth, Basic auth
o Tunneling: plain http connections, SSL
connections, authenticated (Basic, Digest) connections
Apache Proxy
o Proxy auth: no auth, basic auth
o Tunneling: plain http connections,
authenticated(Basic) auth
Netscape Proxy Unix v3.52
o Proxy: no authentication
o Tunneling: plain http connections
>.
>
Thanks for posting this information. The message from MS is unclear as to
connecting through SQUID would work when connecting with a win2k/xp client.
Did you get it working, with *any* proxy requiring authentication? I noticed
in the original email that Cameron was asking for a code snippet -- did you
get that? If so, it'd be great to post that as well.
Thanks,
JT
"Gerson Rolim" <ger...@supplysystems.com.br> wrote in message
news:153601c334e3$bc2e5740$a501...@phx.gbl...
set sc = new SoapClient30
sc.MSSoapInit "c:\file_path\ACME.xml"
'Proxy user properties
sc.ConnectorProperty("ProxyServer") = "server addr:8080"
sc.ConnectorProperty("ProxyUser") = "userlogin"
sc.ConnectorProperty("ProxyPassword") = "password"
-----
Cheers,
Gerson Rolim
SupplySystems
Brazil
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>.
>
"Cameron Michaelson" <cameron.m...@wal-mart.com> wrote in message
news:37cc01c32aa2$cdb9f2d0$3101...@phx.gbl...
Dim oSoapClient
Set oSoapClient = CreateObject("MSSOAP.SoapClient30")
oSoapClient.MSSoapInit "http://SERVER/service.asmx?wsdl"
oSoapClient.ConnectorProperty("ProxyServer") = "<CURRENT_USER>"
oSoapClient.ConnectorProperty("EnableAutoProxy") = TRUE
oSoapClient.ConnectorProperty("RequestHTTPHeader") = "user-agent:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)"
There seems to be no information I can find about RequestHTTPHeader anywhere
on the internet and only the following in the help file.
RequestHTTPHeader (write only) Enables you to set HTTP header for
the request message.
but it seems to work by setting just the property you want to change and
letting the Toolkit fill in the rest.
hope this helps.
- Des
"Roger" <roger...@NOSPAMwebxcentric.com> wrote in message
news:eBVqSQsk...@TK2MSFTNGP12.phx.gbl...