Cocoa 通过http请求调用WCF服务_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Cocoa 通过http请求调用WCF服务

Cocoa 通过http请求调用WCF服务

 2013/10/17 18:35:30  勿以己悲  博客园  我要评论(0)
  • 摘要:以Get的方式传递Http请求:NSURL*jsonURL=[NSURLURLWithString:[NSStringstringWithFormat:@"http://www.xxx.com/coffeeiphone/Service.svc/maintransactioninsert/%@/%@/%@",stockid,[formatstringFromDate:selected],[quantitytext],nil]]
  • 标签:WCF 服务 HTTP请求 HTTP
class="brush:objc;gutter:true;">



以 Get的方式传递Http请求:
 
NSURL *jsonURL = [NSURL URLWithString:[NSString stringWithFormat:@"http://www.xxx.com/coffeeiphone/Service.svc/maintransactioninsert/%@/%@/%@",stockid,[format stringFromDate:selected],[quantity text], nil]];

NSString *jsonData = [[NSString alloc] initWithContentsOfURL:jsonURL];   
  

 



以 POST的方式传递Http请求:

 

 

NSURL *theUrl = [NSURL URLWithString:@"yourURL"];
NSMutableURLRequest *theRequest = [[NSMutableURLRequest alloc] initWithURL:theUrl];
[theRequest setHTTPMethod:@"POST"];
//set the body of your request:
[theRequest setHTTPBody: //request here];
//get your response:
NSData *response = [NSURLConnection sendSynchronousRequest:theRequest returningResponse:nil error:nil];

  

发表评论
用户名: 匿名