H
hmariwa
Guest
Hi Sjellin, "status 905" indicates that there was a connection timeout. It is possible that the soap response is taking longer than your timeout value. Also , notice that , for "-clientConnectTimeout STOP-AFTER " n is in milliseconds while k is in seconds. You can try to use ETIME to find the timeout value to use as shown in the following example:. DEFINE VAR et AS INT DEFINE VAR n AS INT. et = ETIME(TRUE) RUN IN . et = ETIME(FALSE). n = et * 5. You can now use n as your "-clientConnectTimeout" value and n /1000 as your STOP-AFTER value.
Continue reading...
Continue reading...