在我的应用程序中,我尝试以 NSString 格式发送 Web 服务请求。我使用 sudzc 生成网络服务。但是,当我发送请求时,显示错误
Entity: line 1: parser error : Start tag expected, '<' not found
Bad Request
Error Domain=CXMLErrorDomain Code=1 "The operation couldn’t be completed. (CXMLErrorDomain error 1.)"^
这是我发送的 xml 格式的字符串,
NSString *string=[NSString stringWithString:@"<request><ClosingDate>06-Sep-2012</ClosingDate><ProductName>Document Management Software</ProductName><ProductID>3</ProductID><CurrencyID>3</CurrencyID></request>"];
但错误显示'<' not found,我不知道究竟是什么错误?需要一些帮助
编辑
我使用 SUDZC 生成网络服务
MFLCommonServices *services1=[MFLCommonServices service];
NSString *request=[NSString stringWithString:@"<request><ClosingDate>06-Sep-2012</ClosingDate><ProductName>Document Management Software</ProductName><ProductID>3</ProductID><CurrencyID>3</CurrencyID></request>"];
[services1 CreateRequest:self action:@selector(CreateRequestHandler:) Email:@"xxxxx" Password:@"xxxxxx" Token:@"xxxxxx" Request:request];