English 中文(简体)
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, ...)





相关问题
IIS 6.0 hangs when serving a web-service

I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a separate application or using cassini from Visual studio. Once I deploy on the ...

ASP.net web services

I am using a web service which sets the Thread.CurrentPrincipal object while logging in and soon later when another webmethod of the same web service accesses Thread.CurrentPrincipal, its different/...

Unity Container Disposing and XML Web Service

I am registering some wrapers over un-managed objects in container. How can I dispose of them at the end of the container s lifetime? Please bear in mind I have an XML Web service.

SharePoint : web service permission error

I have a sharepoint site, and I am calling a standard sharepoint web service. I create the web service request like this : wsDws.Url = this.SiteAddress + @"/_vti_bin/Dws.asmx"; When I use ...

热门标签