开发者

wsdl/soap failed to load external entity

开发者 https://www.devze.com 2023-03-12 04:25 出处:网络
I am using ASIHTTPRequest in my iOS app. I am calling a wsdl/Soap web services like this : NSData开发者_高级运维 *xmlData =// I construct the soap message witk soapui

I am using ASIHTTPRequest in my iOS app. I am calling a wsdl/Soap web services like this :

NSData开发者_高级运维 *xmlData =  // I construct the soap message witk soapui

NSURL *url = [NSURL URLWithString:@"https:myUrlWSDL"];
self.currentRequest = [ASIFormDataRequest requestWithURL:url];
[self.currentRequest appendPostData:xmlData];
[self.currentRequest setDelegate:self];
[self.currentRequest startAsynchronous];

but the server return to me this error :

<?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="schemas.xmlsoap.org/soap/envelope/…: Parsing WSDL: Couldn't load from 'http://...?wsdl' : failed to load external entity "http://...?wsdl"

it is a probleme with ssl ?? thanks for your answers

0

精彩评论

暂无评论...
验证码 换一张
取 消