开发者

what is the procedure of performing wsdl parsing in iphone?

开发者 https://www.devze.com 2023-01-02 11:14 出处:网络
i have performed like thisIs there any thing wrong performed by me? NSURL *url = [NSURL URLWithString:@\"开发者_开发知识库http://111.111.111.111/BattleEmpire.Service/ApplicationService.svc?wsdl\"];

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"); }


For the parsing of the WSDL web service Referrer this site:http://sudzc.com/Default.aspx It also provides Video how to parse such kind of Web Service.It's really helpful and so simple to implement..

0

精彩评论

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