NSURLConnectionを使用して、私のiosアプリケーションからWebサービスを呼び出しています。ここに私のコードがあるエラードメイン取得= NSURLErrorDomainコード= -1004 "サーバーに接続できませんでした。"
#define kBaseServerUrl @"http://winshark.softwaytechnologies.com/bariodwcfservice/baroidservice.svc/Json/"
#define kProductServiceUrl @"Products"
-(void)callService{
NSURL *url;
if (currState == ProductServiceState) {
url = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@/%d",kBaseServerUrl,kProductServiceUrl,[self getRevisionNumberForProduct]]];
}
else if(currState == TankStrickerServiceState){
url = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@/%d",kBaseServerUrl,kTankStrickerServiceUrl,[self getRevisionNumberForTankStricker]]];
}else if(currState == CalculationServiceState){
url = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@/%d",kBaseServerUrl,kCalculationServiceUrl,[self getRevisionNumberForCalculation]]];
}else{
//Future Use
}
NSLog(@"%@",[url absoluteString]);
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
NSURLConnection *urlConnection = [[NSURLConnection alloc] initWithRequest:urlRequest delegate:self];
NSLog(@"%@",urlConnection);
}
そのをしてくださいhttp://winshark.softwaytechnologies.com/bariodwcfservice/baroidservice.svc/Json/Products/123
このURLを呼び出すに終わるが、私は、ブラウザでこのURLを打ったときにその作業罰金が、私のアプリイムに
Error Domain=NSURLErrorDomain Code=-1004 "Could not connect to the server."
このエラーを取得問題の可能性があるものを手助けしてください
デバイスまたはシミュレータでこれをテストしていますか? – Wasim
両方が動作していない – sachin