PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV Mobile 2024 → Windows Mobile Webservice Call
Windows Mobile Webservice Call
Iniciado por DAVE SUMMERS ( DS PR, jul., 25 2011 1:34 PM - Sem resposta
Membro registado
16 mensagems
Publicado em julho, 25 2011 - 1:34 PM
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