what is the procedure of performing wsdl parsing in iphone?

Posted by Ankit Vyas on Stack Overflow See other posts from Stack Overflow or by Ankit Vyas
Published on 2010-06-04T04:08:45Z Indexed on 2010/06/07 12:22 UTC
Read the original article Hit count: 270

Filed under:

i have performed like this Is there any thing wrong performed by me?
NSURL *url = [NSURL URLWithString:@"http://111.111.111.111/BattleEmpire.Service/ApplicationService.svc?wsdl"]; NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url]; [theRequest setHTTPMethod:@"GET"]; NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self]; if(theConnection) { webData = [[NSMutableData data] retain]; NSLog( @"connection established"); } else { NSLog(@"theConnection is NULL"); }

© Stack Overflow or respective owner

Related posts about iphone