Problem With SOAP 3.0 And Proxy

  • Thread starter Pasquale Di Gennaro
  • Start date
P

Pasquale Di Gennaro

I have a Problem with an installation of my application(my application use
SOAPSDK 3.0)

When i create object SOAP return this error :

Connector:Connection failed or server refused connection (request might
exceed MaxPostSize). HRESULT=0x800A151E - Client:An unanticipated error
occurred during the processing of this request. HRESULT=0x800A151E -
Client:Sending the Soap message failed or no recognizable response was
received


Application not it works when a client connection use Proxy

For createObject Soap With Proxy i have write this code:

Set SoapCL = New SoapClient30

WSDLEndPointUrl ="http://IpAddess/SoapCaller/SoapCaller.WSDL"
WSDLFile = "file:///" & App.Path & "\lib\SoapCaller.WSDL"

Call SoapCL.MSSoapInit(WSDLFile, "SoapCaller", "SoapCallerSoapPort")

SoapCL.ConnectorProperty("EndPointURL") = WSDLEndPointUrl
SoapCL.ConnectorProperty("ProxyServer") = "<CURRENT_USER>"
SoapCL.ConnectorProperty("ProxyUser") = UserName
SoapCL.ConnectorProperty("ProxyPassword") = Pwd
SoapCL.ConnectorProperty("WinHTTPAuthScheme") = 1
SoapCL.ConnectorProperty("Timeout") = 980000

WHY?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top