We noticed that our upload program, which utilizes SubmitRequest was timeing out. We increased the value from 100000 to 400000 and it still timed out at 100 seconds.
Seems like the increased variable should have changed the outcome. Any ideas?
httpTimeOut = 400000
contentType = "application/json; charset=utf-8"
result = createSecurityContext(security_context, "TLSv1.2:Min")
if (result = 0) then
result = createSecureRequest(postURL, postType, req_handle, security_context)
if (result = 0) then
result = setRequestHeader(req_handle, "Content-Type", contentType)
if (result = 0) then
if (token <> '') then
result = setRequestHeader(req_handle, "Authorization", "Bearer ":token)
end
result = submitRequest(req_handle, httpTimeOut, postData, respHeaders, respData, httpStatus)
output = respData
if (result = 0) then
…
------------------------------
Nelson Schroth
president
C3CompleteShop LLC
Harrison OH US
------------------------------