PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV Mobile 2024 → Windows Mobile Webservice Call
Windows Mobile Webservice Call
Débuté par DAVE SUMMERS ( DS PR, 25 juil. 2011 13:34 - Aucune réponse
Membre enregistré
16 messages
Posté le 25 juillet 2011 - 13:34
Hi

Can anyone help, I have a webservice REST call that works great BUT seems the result is not refreshing after the first call as though it is cached. The value changes fine on the development test window but not when deployed. (this is a public webservice where i know the data is changing regularly)

the following is code on a refresh button;

Url = "http://urladdress/rest/type…"

IF HTTPRequest(Url,"","","","","user","password") THEN
HTTP_Res = UTF8ToString(HTTPGetResult())

IF Length(HTTP_Res) > 0 THEN
info(XMLExtractString(HTTP_Res,"Result"))
END
END

regards

Dave