简体   繁体   中英

Calling java SOAP web-Service from iPhone

I have a query regarding calling java SOAP web-Service from iPhone.

I have successfully implemented calling .asmx type web services. But I am getting following error when I try to implement same for WSDL.

Error Code: 407 Proxy Authentication Required. The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied. (12209)

I am sending the correct SOAP Envelope and connecting to the url http://myWebService?WSDL

Is the problem related to web-service? Or do I need to implement something else?

Thanks in advance.

WSDL is not a web service type, its an xml based description file. So that url is not the url of your webservice. Thus, you shouldnt send your requests to http://myWebService?WSDL .

Try http://myWebService/myservice.webserviceextension ( asmx, svc, ...)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM