PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → .Can not run link! System error sending HTTP request
.Can not run link! System error sending HTTP request
Débuté par Ahmet Celepci, 12 jan. 2018 17:43 - Aucune réponse
Posté le 12 janvier 2018 - 17:43
Hello,

I need your help. It`s strange. Because we make an request on the same Network an with other PC´s. But we become by one PC the answer and by other the error "System error sending HTTP request. We disabled Firewall. But the PCs have the same configruation. I hope you can help me.

w_Result is string
w_data is ANSI string
w_webservice_result is boolean
p_username is string = "u894366745"
HTTPCreateForm("FORM")

HTTPTimeOut(60000)


w_webservice_result = HTTPSendForm( "FORM", StringBuild("https://www.a-trust.at/asignrkonline/v2/%1/ZDA",p_username), httpGet, "", "", "application/json", "", "" )


trace(w_webservice_result )
IF w_webservice_result THEN
w_Result = HTTPGetResult(httpHeader)

w_data = UTF8ToAnsi(HTTPGetResult(httpResult))

HTTPCancelForm("FORM")

IF StringCount(w_Result,"200 OK") > 0 THEN
let vjs = JSONToVariant(w_data)
trace(vjs.zdaid)
ELSE
trace("error")
END
end