> We have a c# webform application that uses ASP.NET webservices to
> communicate with our IIS server over the public internet. The customer is
[quoted text clipped - 12 lines]
> 2. Do I need to edit some .net configuration file to force the proxy server
> to be used by the SoapHttpClientProtocol framework class.
Have you tried myClient.Proxy = WebProxy.GetDefaultProxy()? That won't
work if the IE proxy settings are dynamic, generated from script, from
autoconfig entries or from DHCP or DNS lookups. If that's the case, create
your own instance of WebProxy and set the appropriate values.

Signature
Tom Porterfield