PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV Mobile 2024 → Windows Mobile Webservice Call
Windows Mobile Webservice Call
Started by DAVE SUMMERS ( DS PR, Jul., 25 2011 1:34 PM - No answer
Registered member
16 messages
Posted on July, 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