开发者

ASIHTTPRequest synchronously

开发者 https://www.devze.com 2022-12-17 02:20 出处:网络
I have an iPhon开发者_C百科e app which uses ASIHTTPRequest to communicate to a REST service on my server. When I\'m running on the simulator, it works just fine, but when I get onto the phone itself,

I have an iPhon开发者_C百科e app which uses ASIHTTPRequest to communicate to a REST service on my server. When I'm running on the simulator, it works just fine, but when I get onto the phone itself, I get weird behavior.

The very first time I click the button that initiates the request, I get the results back immediately, and all is fine. From that point on, when I click the button to initiate the connection it takes about 2-3 minutes to connect. It almost seems like the ASIHTTPRequest that I kicked off first (and from which I've already received the correct results) has not completed. Is there some sort of magic I need to use to terminate the original request before starting the next one? I assumed that since the -start method returned, and I have results from the server that the original request was completed and I could start another.

Any ideas?

Thanks

--Steve


Steve - What you've described is a common problem that will occur if the requests are attempting to keep a persistent connection. Try this out:

[request setShouldAttemptPersistentConnection:NO];


You're not suppose to call the -start method, it belongs to the NSOperation. The ASIHTTPRequest interface is either -startSynchronous or -startAsynchronous.

However, it's highly recommend to use the asynchronous call otherwise, your main thread (ie., UI) will be blocked.

From the ASIHTTPRequest documentation[1]

In general, you should use asynchronous requests in preference to synchronous requests. When you use ASIHTTPRequest synchronously from the main thread, your application's user interface will lock up and become unusable for the duration of the request. Synchronous requests are only really suitable for software without a UI (like a script that runs from the terminal), or if you are running the request from a separate thread that you maintain (perhaps from inside your own NSOperation, for example).

[1] http://allseeing-i.com/ASIHTTPRequest/How-to-use

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号