Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Unable to Connect to Web Service
Message
From
12/02/2005 05:44:47
 
 
To
11/02/2005 13:11:14
General information
Forum:
Visual FoxPro
Category:
Web Services
Miscellaneous
Thread ID:
00986007
Message ID:
00986248
Views:
20
Thinking more about it I remember that _webservices.vcx uses Soap2 (MSSOAP.SoapClient) whilst _ws3client.vcx uses Soap3 (MSSOAP.SoapClient30). Therefore to test if it's a soap version issue you can use the code I gave earlier or just modify the _ws3client.vcx.

MODIFY CLASS wshandler of _ws3client.vcx
open procedure "connectws"
modify "THIS.wsObject = CREATEOBJECT(SOAPCLIENT_CLASS)" to "THIS.wsObject = CREATEOBJECT("MSSOAP.SoapClient")"

As you are getting a timeout issue it might be worth while extending the Soap Timeout property.
MODIFY CLASS wshandler of _ws3client.vcx
open procedure "setconnectorproperties"
Add "THIS.wsObject.ConnectorProperty("Timeout") = 30000"

Cheers
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform