This is the logical flow for my application:
-
At first, when the view controller has finished loading, then a
NSURLConnectionrequest can start its execution -
The response consists in xml data
-
After parsing that xml I need to send another
NSURLConnectionrequest. -
After sending the second request, if the response is ok, I receive other xml data
-
After parsing the second xml, I have to check some issues between first and second xml data.
So, is it possible to send multiple request? How? I do not need code, you could just explain it.
Thank you in advance.
Hope this will help you understand better….