iphone sdk xcode程序中如何调用web service?

happy0022 2010-03-22 11:09:21
现在我有一个MyEclipse 6.0 java写的web service,不知道该怎么在我的iphone程序中调用。还请高手指点!最好有代码示例。谢谢了。
...全文
3784 15 打赏 收藏 转发到动态 举报
写回复
用AI写文章
15 条回复
切换为时间正序
请发表友善的回复…
发表回复
程序员小迷 2012-01-14
  • 打赏
  • 举报
回复
不直接用系统的http类即可么,有这么复杂吗
yy7074 2011-08-08
  • 打赏
  • 举报
回复
我也想要一份 实例代码,楼主谢谢啦~~哪位大哥有的话麻烦发一份呀~287869021@qq.com
飞鱼是我 2011-08-05
  • 打赏
  • 举报
回复
同求示例源码!lz弄好的话麻烦发一份给我,先谢了!zbflying@126.com
ukfishball 2011-06-20
  • 打赏
  • 举报
回复
[Quote=引用 11 楼 zhanglei5415 的回复:]

调用webservice 需要我们组装soap请求信息,维护不方便。
iphone os也有比较优秀的封装好的处理http请求的类库ASIHttpRequest,通过该类库可以很easy的实现与服务器的交互。
[/Quote]

能不能给我一些范例??我初学IPHONE 都不知应该怎样开始
ReyZhang 2011-05-11
  • 打赏
  • 举报
回复
调用webservice 需要我们组装soap请求信息,维护不方便。
iphone os也有比较优秀的封装好的处理http请求的类库ASIHttpRequest,通过该类库可以很easy的实现与服务器的交互。
ReyZhang 2011-05-11
  • 打赏
  • 举报
回复
其实从服务器上获取数据,除了使用webservice以外,也可以向服务器发送http请求,让服务器端返回一个比较好处理的格式,如JSON,并且在iphone os下有专门的处理 Json格式的类库,通过该类库我们可以很容易的将获取的json格式序列化成objective-c下的NSArray or NSDictionary 对象。
zhangjiangboljz 2011-05-06
  • 打赏
  • 举报
回复
谢谢。。。。
duglyjp 2011-02-24
  • 打赏
  • 举报
回复
我的博客里头有完整版
云瑀 2010-08-04
  • 打赏
  • 举报
回复

#import <UIKit/UIKit.h>

@interface Hello_SOAPViewController : UIViewController
{
IBOutlet UITextField *nameInput;
IBOutlet UILabel *greeting;
NSMutableData *webData;
NSMutableString *soapResults;
NSXMLParser *xmlParser;
BOOL *recordResults;
}

@property(nonatomic, retain) IBOutlet UITextField *nameInput;
@property(nonatomic, retain) IBOutlet UILabel *greeting;
@property(nonatomic, retain) NSMutableData *webData;
@property(nonatomic, retain) NSMutableString *soapResults;
@property(nonatomic, retain) NSXMLParser *xmlParser;

-(IBAction)buttonClick: (id) sender;

@end

#import "Hello_SOAPViewController.h"

@implementation Hello_SOAPViewController

@synthesize greeting, nameInput, webData, soapResults, xmlParser;

-(IBAction)buttonClick:(id)sender
{
recordResults = FALSE;

NSString *soapMessage = [NSString stringWithFormat:
@"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
"<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"
"<soap:Body>\n"
"<Hello xmlns=\"http://viium.com/\">\n"
"<name>%@</name>\n"
"</Hello>\n"
"</soap:Body>\n"
"</soap:Envelope>\n", nameInput.text
];
NSLog(soapMessage);

NSURL *url = [NSURL URLWithString:@"http://viium.com/WebService/HelloWorld.asmx"];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
NSString *msgLength = [NSString stringWithFormat:@"%d", [soapMessage length]];

[theRequest addValue: @"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[theRequest addValue: @"http://viium.com/Hello" forHTTPHeaderField:@"SOAPAction"];
[theRequest addValue: msgLength forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPMethod:@"POST"];
[theRequest setHTTPBody: [soapMessage dataUsingEncoding:NSUTF8StringEncoding]];

NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

if( theConnection )
{
webData = [[NSMutableData data] retain];
}
else
{
NSLog(@"theConnection is NULL");
}

[nameInput resignFirstResponder];

}

-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
[webData setLength: 0];
}
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[webData appendData:data];
}
-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
NSLog(@"ERROR with theConenction");
[connection release];
[webData release];
}
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSLog(@"DONE. Received Bytes: %d", [webData length]);
NSString *theXML = [[NSString alloc] initWithBytes: [webData mutableBytes] length:[webData length] encoding:NSUTF8StringEncoding];
NSLog(theXML);
[theXML release];

if( xmlParser )
{
[xmlParser release];
}

xmlParser = [[NSXMLParser alloc] initWithData: webData];
[xmlParser setDelegate: self];
[xmlParser setShouldResolveExternalEntities: YES];
[xmlParser parse];

[connection release];
[webData release];
}

-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *) namespaceURI qualifiedName:(NSString *)qName
attributes: (NSDictionary *)attributeDict
{
if( [elementName isEqualToString:@"HelloResult"])
{
if(!soapResults)
{
soapResults = [[NSMutableString alloc] init];
}
recordResults = TRUE;
}
}
-(void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
if( recordResults )
{
[soapResults appendString: string];
}
}
-(void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{
if( [elementName isEqualToString:@"HelloResult"])
{
recordResults = FALSE;
greeting.text = soapResults;
[soapResults release];
soapResults = nil;
}
}


/*
Implement loadView if you want to create a view hierarchy programmatically
- (void)loadView {
}
*/

/*
Implement viewDidLoad if you need to do additional setup after loading the view.
- (void)viewDidLoad {
[super viewDidLoad];
}
*/


- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}


- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
// Release anything that's not essential, such as cached data
}


- (void)dealloc
{
[xmlParser release];
[super dealloc];
}
@end

范例.......
wxm4585 2010-08-04
  • 打赏
  • 举报
回复
有两种方法生成SOAP本地代理类
1:使用WSDL2OBJC.exe,生成SOAP代理类,引入工程中。
2:访问http://sudzc.com/,在线提交服务地址或者上传WSDL文件,返回SOAP代理类,引入工程中。
Kareny000 2010-06-29
  • 打赏
  • 举报
回复
请问楼主,这个问题解决了吗,我也遇到同样的问题,可以帮忙吗?谢谢了~~我想用soap,但是刚刚接触iphone不是很了解!
Defonds 2010-03-25
  • 打赏
  • 举报
回复
应该有接口。
happy0022 2010-03-22
  • 打赏
  • 举报
回复
可以在详细点吗? 初学iphone 不是很明白
儿大不由爷 2010-03-22
  • 打赏
  • 举报
回复
用HTTP接口自己封装就可以了

29,028

社区成员

发帖
与我相关
我的任务
社区描述
主要讨论与iOS相关的软件和技术
社区管理员
  • iOS
  • 大熊猫侯佩
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧