Hi, I have an application in which I need to hit 2 webservices on a single button action.
-(IBAction)hitAction
{
[webServiceObj hitWebService1];
[webServiceObj hitWebService2];
}
The connection delegates and parser delegates have not been called for the 1st web service. For 2nd web service all the delegates for connection and parsing have been called.I am not getting whats the mistake I am doing.Please help me out.