Hiii .. 我正在创建一个应用程序,其中我使用名为 "http://192.168.0.51/iPadDataCollection/Service.svc?wsdl" 的 Web 服务。我已经从这个 Web 服务中解析了类,并且我已经编写了代码来访问一个名为 TestConnection 的方法,但是我收到了错误 400(错误请求)。谁能帮我解决这个问题??提前谢谢。
BasicHttpBinding_IServiceBinding *binding=[[Service BasicHttpBinding_IServiceBinding]initWithAddress:@"http://192.168.0.51/iPadDataCollection/Service.svc?wsdl"];
binding.logXMLInOut = YES;
Service_TestConnection *request = [[Service_TestConnection alloc] init];
request.Unique_Id =txtID.text;
[binding TestConnectionAsyncUsingParameters:request delegate:self];
[spinner startAnimating];
[request release];