Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

SOAP connection error 800A1527

131 views
Skip to first unread message

Kelly

unread,
May 13, 2005, 9:06:11 AM5/13/05
to
I have written following code.


Set SoapClient = New SoapClient30
Call
SoapClient.MSSoapInit("http://User:P...@site.com/MySe­rvice.asmx?wsdl")

SoapClient.ClientProperty("Ser­verHTTPRequest") = True


call SoapClient.SubmitJob("My Job Data")


This works fine on localhost and I get expected result. But when I run
it on server I get error when I call a function and not when I execute
MSSoapInit line.


I have installed SOAP toolkit 3.0 on server and on local machine. Both
are W2K machines.


The error is as follows:


Connector error '800a1527'


Connector:Connection time out. HRESULT=0x800A1527 - Client:An
unanticipated error occurred during the processing of this request.
HRESULT=0x800A1527 - Client:Sending the Soap message failed or no
recognizable response was received HRESULT=0x800A1527 -
Client:Unspecified client error. HRESULT=0x800A1527


Can anyone help me please?

Kelly

unread,
May 13, 2005, 10:02:06 AM5/13/05
to

JSP

unread,
May 24, 2005, 9:19:51 PM5/24/05
to
This is caused by the PROXY settings.

Try the code:

If (USEPROXY) Then
oSoapClient.ConnectorProperty("ProxyUser") = ProxyUserName
oSoapClient.ConnectorProperty("ProxyPassword") = ProxyPassword
oSoapClient.ConnectorProperty("ProxyServer") = ProxyHost
Else ' local_machine
oSoapClient.ConnectorProperty("ProxyServer") = "<CURRENT_USER>"
End If

Firstly you may need to run proxycfg.exe -u

See KB 289481 - INFO: You May Need to Run ProxyCfg Utility for
ServerXMLHTTP to Work.

0 new messages