I'm recently testing new logging features and discovered a weird behaviour when invoking a particular webservice:
Code:
[384] HTTP
Silence TIMEOUT '@GBL_WEBSERVICETIMEOUT' evaluates to '10000'
HTTP Initial Connection TIMEOUT '@GBL_WEBSERVICETIMEOUT' evaluates to '10000'
HTTP Initial Connection Retries is ''
Empty HTTP Initial Connection Retries defaults to '2'
Script code is 'wait'
Script code 'wait' corresponds to file 'Vox\Spn\Scripts\Wait.wav'
URL '@vSiteCall' evaluates to <ommited: sensitive data>
HTTP Request Message Body is ''
Setting local variable '@VXMLLOAN' to ''
Playing 'Wait.wav'
Connection attempt 1
Connection attempt 2
ERROR: Unable to connect to host
'WSAENOTSOCK'
Setting local variable '@VXMLLOAN' to ''
FAILURE
Hiding some sensitive data with 'X', the contents of @vSiteCall are:
Code:
http://webservicehbexecuter/Executer.asmx/Execute?pIdentifier=PRLoanInformation&pValues=6XXX1~00XXXXXX909~IVRID~WB~WBP~2XXX1~ES&pClient=
The untouched contents work just fine when pasted in IE8 in the same computer: I get all the XML data I need to parse for later dictation. But the IVR application just fails with that WSAENOTSOCK error.
According to Visual Studio's Help, that means:
Quote:
Socket operation on nonsocket. An operation was attempted on something that is not a socket. Either the socket handle parameter did not reference a valid socket, or for the select() function, a member of an fd_set structure was not valid.
So, what's wrong? The IVR app can invoke the same webservice with different parameters (other procedures identified in pIdentifier) just fine, what's wrong with this particular call?