Answer the question
In order to leave comments, you need to log in
ASP.NET web service call not working on iPad
Hello. Who has experience in debugging ASP.NET applications on the ipad, please tell me. There is a web service that works fine in all browsers except safari on the ipad. Returns the value of some boolean variable, depending on the result, one or the other function is called:
WebSite.Services.User.Settings.GetBoolean("SOME_SETTING",
function(result) {
if (result) onTrue();
else onFalse();
SOME_SETTING = result;
},
function(result) {
alert(result.get_message());
}
Answer the question
In order to leave comments, you need to log in
Thanks everyone for the advice. Understood. The problem was that the iPad was caching http requests. I added the current time to the passed parameters so that the request was different each time and rewrote this piece to jquery via $.post(). Helped.
I think we should start with the breakpoint problem. Does it work if accessed from other browsers? If yes, then look why we don’t get into the function, maybe it somehow manages and therefore always returns true
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question