我是堆栈溢出的新手。我正在通过我的iPhone应用程序处理Web服务连接,我是iPhone开发的新手,所以我通过以下链接尝试了一个示例,
http://www.leesilver.net/1/post/2011/08/calling-a-web-service-from-objective-c.html
但是我收到了以下错误,"property 'data' not found on object of type 'AppDelegate'"
在NSString * query = AppDelegate.data;
以下是我的整个代码,
-(IBAction)btnDone:(id)sender{
recordResults = FALSE;
NSString *query = AppDelegate.data; // Getting the error at this line
//property 'data' not found on object of type 'AppDelegate'
query = [query stringByReplacingOccurrencesOfString:@"<" withString:@"<"];
query = [query stringByReplacingOccurrencesOfString:@">" withString:@">"];
NSString *soapMessage = [NSString stringWithFormat:
@"<?xml version=\"1.0\" encoding=\"utf-8\"?>"
"<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/\">"
"<soap:Body>\n"
"<HelloWorld xmlns=\"http://tempuri.org/\">\n"
"<xmlIn>\n"
"<![CDATA[%@]]>\n"
"</xmlIn>\n"
"</HelloWorld>\n"
"</soap:Body>\n"
"</soap:Envelope>\n", query ];
NSLog(@"%@",soapMessage);
NSURL *url = [NSURL URLWithString:@"http://www.xxxxxxx.net/service.asmx"];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
NSString *msgLength = [NSString stringWithFormat:@"%d",[soapMessage length]];
[theRequest addValue:@"text/xml" forHTTPHeaderField:@"Content-Type"];
[theRequest addValue:@"http://www.xxxxxxxxxxx.net/service.asmx?op=HelloWorld" forHTTPHeaderField:@"SOAPAction"];
[theRequest addValue:msgLength forHTTPHeaderField:@"Content-Type"];
[theRequest setHTTPMethod:@"POST"];
[theRequest setHTTPBody:[soapMessage dataUsingEncoding:NSUTF8StringEncoding]];
NSLog(@"Message Length..%@",msgLength);
NSURLConnection *theConnection = [[NSURLConnection alloc]initWithRequest:theRequest delegate:self];
if(theConnection)
{
conWebData = [NSMutableData data];
}
else
{
NSLog(@"theConnection is NULL");
}
}
-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
[conWebData setLength:0];
}
-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
NSLog(@"ERROR with theConnection");
}
-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSLog(@"DONE. Received Bytes:%d",[conWebData length]);
NSString *theXML = [[NSString alloc]initWithBytes:[conWebData mutableBytes] length:[conWebData length] encoding:NSUTF8StringEncoding];
NSLog(@"%@",theXML);
xmlParser = [[NSXMLParser alloc]initWithData:conWebData];
[xmlParser setDelegate:self];
[xmlParser setShouldResolveExternalEntities:YES];
[xmlParser parse];
}
-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict
{
if([elementName isEqualToString:@"HelloWorldResult"])
{
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:@"HelloWorldResult"])
{
recordResults = FALSE;
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"" message:soapResults delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
soapResults = nil;
}
}
对此有任何帮助表示赞赏。 提前谢谢。
答案 0 :(得分:0)
消息长度的标题是&#34; Content-Length&#34;而不是&#34; Content-Type&#34;,请尝试: [theRequest addValue:msgLength forHTTPHeaderField:@&#34; Content-Length&#34;]; 代替 [theRequest addValue:msgLength forHTTPHeaderField:@&#34; Content-Type&#34;]; 对于REST Web服务,应用程序服务器必须作为消息响应返回XML或JSON,请参阅我的&#34; WebService&#34;应用...
答案 1 :(得分:0)
您好我创建了一个非常适合我的工具http://www.wsdl2code.com
SampleServiceProxy *proxy = [[SampleServiceProxy alloc]initWithUrl:@"YOUR
URL" AndDelegate:self];
[proxy GetDouble];
[proxy GetEnum];
[proxy getEnum:kTestEnumTestEnum2];
[proxy GetInt16];
[proxy GetInt32];
[proxy GetInt64];
[proxy GetString];
[proxy getListStrings];