Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Unable to Connect to Web Service
Message
De
12/02/2005 05:44:47
 
 
À
11/02/2005 13:11:14
Information générale
Forum:
Visual FoxPro
Catégorie:
Web Services
Divers
Thread ID:
00986007
Message ID:
00986248
Vues:
19
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform