soap

Invoke other webmethod with SoapExtension

I've a WSDL defining a web service named CalendarService: <soap:address location="http://example.com/calendar"/&gt; The WSDL defines following methods: String setDate(String date) int setTime(int time) CalendarService is not deployed anywhere. CalendarServiceProxy is a proxy generated from CalendarService WSDL. I've a web servic...

Sending Illegal XML Characters in Soap Request

I am trying to send special (&, ' (single quote)) characters in the Soap Request. I am using axis 1.4. The webservice client is in weblogic server and the webservice server is an ibm mainframe (COBOL program). The request data from the client contains special character (& symbol) which is converted to &amp; I tried to enclose it with ...

Incompatibilities between Indy 9 and Windows Server 2003?

I'm having a problem with a Delphi application on some Windows 2003 servers. It uses a webservice call to connect with another server and transmit data back and forth. As soon as the app gets to the Authenticate method, the app dies. The app has worked for years on previous boxes with Win Server 2003, but it doesn't on freshly built m...

Windows Phone 7 Connect to SharePoint via SOAP

I am making my second application for the Windows 7 Phone Series platform and I cannot seem to connect to a SharePoint server using https. 99% of the following is not my code. I have borrowed it from http://blog.daisley-harrison.com/blog/post/Practical-Silverlight-and-SharePoint-Integration-Part-Two.aspx untill I can further understand...

SOAP Requests in Dojo

I am trying to make a call to a SOAP web service through Dojo, but have found no relevant, up-to-date documentation on how to make a SOAP request. Does anyone have any experience making a SOAP request in Dojo? ...

Why can't I send SOAP requests to Ebay finding API with this php?

This is my code: <?php error_reporting(E_ALL); //new instance of soapClient pointing to Ebay finding api $client = new SoapClient("http://developer.ebay.com/webservices/finding/latest/FindingService.wsdl"); //attach required parameters to soap message header $header_arr = array(); $header_arr[] = new SoapHeader("X-EBAY-SOA-MESSAGE-PR...

How to use a SOAP API in ASP.NET?

Hi, I've trying to use the API for CapsuleCRM... http://capsulecrm.com/help/page/api_gettingstarted I've been reading some articles on SOAP in asp.net and I just don't get it. Most of them seem to be ablut creating a web service, not using it and none of them seem to explain how to use basic HTTP authentication. I have got as far as ...

InvalidOperationException when using soap client

I've added as wsdl file using the add servece reference dialog in vs2008. MyService serviceproxy = new MyService(); When I instantiate the service proxy, I get an InvalidOperationException with the following text (translated from german): Could not find default endpoint element to the contract "ServiceName.ServiceInterface" in...

Can't generate valid web. referense

Hi 2 all, I set up Open-xchage(wrote on Java) on openSUSE and installed SOAP extension on it. Then i tried to generate web referense in vs2008, but it doesn't work. Can I generate WebReferense of Java-based service and use it in .net/c# ? Any ideas. Thanks. ...

Is WebService the next Big thing?

I was today trying to figure out on working with WebService and found many articles really gospel over the Web Service and its effectiveness in the Market share. My Questions are: For a Complex project of critical data, is it better to opt for WebService? What Makes WebService different from other way of fetching the data? ...

PHP Server did not recognize the value of HTTP Header SOAPAction

I am making my first SOAPclient and I am stuck with the Headers, I am getting a response and when I look at my request it has a soap:body but no soap:headers. The web service has needs 3 parameters 1.UserName 2.Password 3.errorMessage This is the code I have set up. $SOAPAction = 'http://localhost/DriveAwayPriceCalculation/PriceCal...

How can I access an ASP.Net 2.0 web service using VB Script?

I'm trying to find a way to access a web service from a VB Script .vbs file running under wscript.exe. I pulled some sample code from Microsoft and modified it to use the SOAP 3.0 toolkit but it gives me an error. Dim SOAPClient Set SOAPClient = createobject("MSSOAP.SOAPClient30") SOAPClient.mssoapinit("https://www.domain.com/Folder/Se...

PHP: How do I install soap extension?

Ok. I am just starting to use soap and my first problem is installing it. I got this error: Fatal error: Class 'SoapClient' not found in /home/user/mysite.com/path/to/file.php on line 16 I am hosting my site in DreamHost and ask the guys there. But they told me that they don't support any third-party installation. Does anyone has t...

Access with Silverlight to a postgres database running under Linux ?

Hi everyone, I know we cannot access directly to a database with Silverlight. Linq 2 SQL doesn't exist for Silverlight but can I use other things ? I heard too about RIA Services and ADO.net but I don't think they are implemented for a Linux Server. Thanks for your future answers. ...

how to manually deploy a web service on tomcat 6?

I'm learning how to develop soap web services with java. So far now I've been following this excelente tutorial http://java.sun.com/developer/technicalArticles/J2SE/jax_ws_2/ it all goes well, I have my web service working from the command line with it's embeded server, and then, with the help of netbeans I deployed it on tomcat. I'd...

difference between soap web service and webservice

i saw that in asp.net .asmx file, we create webservices [webmethod] //method definition here now for soap webservice [webmethod] [SoapHeader(some parameters here)] //method defination here my question is what's the difference between both webservices type and how to choose which service type to choose ...

Axis/SOAP service styles and interoperability

There are four "styles" of service in Axis. RPC services use the SOAP RPC conventions, and also the SOAP "section 5" encoding. Document services do not use any encoding (so in particular, you won't see multiref object serialization or SOAP-style arrays on the wire) but DO still do XML<->Java databinding. Wrapped serv...

Has anyone combined soap.py or suds with python-ntlm?

I'd like to replace an app's current (badly busted and crufty) cURL-based (cURL command-line based!) SOAP client with suds or soap.py. Trouble is, we have to contact an MS CRM service, and therefore must use NTLM. For a variety of reasons the NTLM proxy is a bit of a pain to use, so I'm looking into python-ntlm to provide that support. ...

Why use Soap as authenitcation in webservice?

Hi I am looking at this tutorial http://www.codeproject.com/KB/cpp/authforwebservices.aspx and I am wondering what the reason for using authentication through soap is? Like why not just pass the username and password through the parameters instead? Is it more secure to do it like the way the guy is in the tutorial verus just using pass...

PHP SOAP error: Method element needs to belong to the namespace

I'm unable to retrieve data from an XML document, any help is greatly appreciated. I'm using PHP 5.2.10 and the WSDL url is an internal link within my company. The following code produces an error. $url = "http://dta-info/IVR/IVRINFO?WSDL"; $params = array("zANI" => "12345"); try{ $client = new SoapClient($url, arra...