Buen dia,
Estoy desarrollando Web Services con la clase MSXML2.XMLHTTP y para saber el valor de la respuesta del servidor estoy utilizando el metodo Status pero me esta marcando el error: "(DOS Error -2147352567) WINOLE/1007 Error no especificado
(0x80004005): msxml3.dll"
Cual sera el problema?
Les envio parte del codigo:
oHttp:=CreateObject("MSXML2.XMLHTTP")
oHttp:Open("POST", "https://exchange-staging.motiveintegrator.com/mockservice/ford/fmc-5-1/otc")
oHttp:SetRequestHeader("x-motive-app-id", "3fb559a4-5f8a-4b40-a710-e3c110e82440")
oHttp:SetRequestHeader("x-motive-eval-type-id", "05648e56-0808-4db1-a42a-261c5ee87ce8")
oHttp:SetRequestHeader("x-motive-trigger-id", "8077")
oHttp:SetRequestHeader("Authorization", "Bearer &eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6InI1VFl6SHFoX3BPZjVWYX...")
oHttp:SetRequestHeader("Content-Type", "text/xml; charset=utf-8")
oHttp:SetRequestHeader("Host", "b2dgwqa.ford.com")
oHttp:SetRequestHeader("Content-Length", "11366")
oHttp:SetRequestHeader("Expect", "100-continue")
oHttp:Send( cSoap )
IF ( oHttp:status == 200 )
MsgInfo(oHttp:ResponseText)
ELSE
MsgInfo(oHttp:statusText )
ENDIF