Hi there.

I have made a webservice which basically tells the caller if an update is available and sets a global value to the link of the file if an update is available

the caller end, the code basically is:

(globally created the webservice method:

Webservice.something = new Webservice() etc...)

Then to check if there is an update:

something.CheckUpdate(1);

at this point the webservice checks for some stuff, returns true if there is an update else false if there is no update

client (caller) side: if its true then it calls another method to the webservice to get the link to the file (that link to the file has been set by the global variable on the webservice end)

thing is, when I do:

something.GetLinkToFile()

I get returned nothing, just blank string. Any ideas?