active questions tagged soap-client - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:26:16Z http://stackoverflow.com/feeds/tag/soap-client http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1947006/how-to-implement-a-soaphttpclientprotocol 0 How to implement a SoapHttpClientProtocol Alex 2009-12-22T15:19:04Z 2009-12-22T15:19:04Z <p>Since <a href="http://stackoverflow.com/questions/1922214/is-soaphttpclientprotocol-thread-safe">this</a> question tells me that SoapHttpClientProtocol is not thread safe. And, my real life testing tells me this is true, as my SoapHeader properties keep getting mixed up between calls. Is there a way to make sure that I can use this across threads and keep my properties correct? And make sure I don't run into the example given in that question of one thread thinking the connection is open, when another thread has closed it? Do I need to worry about the soap header values after my request has been made? How can I verify the properties are as I set them until the request has been issued?</p> http://stackoverflow.com/questions/206154/whats-the-best-soap-client-library-for-python-and-where-is-the-documentation-fo 23 What's the best SOAP client library for Python, and where is the documentation for it? blackrobot 2008-10-15T19:50:07Z 2009-12-14T23:04:53Z <p>I've never used <a href="http://en.wikipedia.org/wiki/SOAP" rel="nofollow">SOAP</a> before and I'm sort of new to Python. I'm doing this to get myself acquainted with both technologies. I've installed <a href="http://trac.optio.webfactional.com/wiki/soaplib" rel="nofollow">SOAPlib</a> and I've tried to read their <a href="http://trac.optio.webfactional.com/wiki/Client" rel="nofollow">Client</a> documentation, but I don't understand it too well. Is there anything else I can look into which is more suited for being a SOAP Client library for Python?</p> <p>Edit: Just in case it helps, I'm using Python 2.6.</p> http://stackoverflow.com/questions/1791129/how-to-report-progress-of-a-web-service-on-windows-mobile-client 0 How to report progress of a web service on windows mobile client? Colin 2009-11-24T16:17:29Z 2009-12-04T16:45:42Z <p>I have tried to implement progress reporting using a soap extension as described at the following links:</p> <p><a href="http://stackoverflow.com/questions/135478/how-do-you-measure-the-progress-of-a-web-service-call">stackoverflow</a><br /> <a href="http://www.codeproject.com/KB/webservices/Soap_Extension_Progress.aspx" rel="nofollow">codeproject</a><br /></p> <p>However, my "ProgressUpdate" method is not being called, and I believe that is because I haven't got an app.config file in my Windows Mobile project to tell the web service calls to be processed by the SOAP Extension. How can do it in Windows Mobile? This is the sample config file used in the article:</p> <pre><code>&lt;?xmlversion="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;system.web&gt; &lt;webServices&gt; &lt;soapExtensionTypes&gt; &lt;add type="SoapExtensionLib.ProgressExtension, SoapExtensionLib" priority="1" group="High" /&gt; &lt;/soapExtensionTypes&gt; &lt;/webServices&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> http://stackoverflow.com/questions/1660759/how-do-i-intercept-outbound-and-inbound-soap-messages-from-c-client-side-web-pro 0 How Do I Intercept Outbound and Inbound Soap Messages from C# Client Side Web Proxy IanT8 2009-11-02T11:35:59Z 2009-11-07T04:46:47Z <p>I'm writing UI to test an asmx web service. Server and client are .NET. Client proxy has been generated using wsdl.exe.</p> <p>I would like to intercept and store a string representation of outgoing and incoming <strong>SOAP</strong> messages generated as a result of calling methods on the web proxy, so I can add a feature to the UI which will show the message just sent/received.</p> <p>I dimly recall there are two pairs of extension points where code can can be added to intecept the message but I cannot remember how this was done. I think the examples I have in mind involved compressing some part of the message on the client and the reverse on the server, even though in my scenario, I want to store rather than alter the message.</p> <p>Any hints and help gratefully received.</p> <p>(I've partially implemented a SoapExtension. I don't understand how the ChainStream method works, and I'm not sure how to notify a listener that a soap message has been trapped (since I'm not in control of instantiating the soap extension).'</p> http://stackoverflow.com/questions/1652895/is-this-a-standard-or-common-encoding-for-a-soap-request 1 Is this a standard or common encoding for a SOAP request? Walt Gordon Jones 2009-10-31T00:04:54Z 2009-10-31T00:08:57Z <p>I'm using a web service where the WSDL describes a single string element in each request and response. </p> <pre><code>&lt;s:element name="SERVICE"&gt; &lt;s:complexType&gt; &lt;s:sequence&gt; &lt;s:element minOccurs="0" maxOccurs="1" name="SERVICERequest" type="s:string" /&gt; &lt;/s:sequence&gt; &lt;/s:complexType&gt; &lt;/s:element&gt; </code></pre> <p>Embedded in that string are a number of plain XML elements that have escaped tags.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;soap:Body&gt; &lt;SERVICE xmlns="https://services.transcard.com/"&gt; &amp;lt;SERVICERequest&amp;gt; &amp;lt;SERVICE_REQ&amp;gt; &amp;lt;PARAM_1&amp;gt; Value1 &amp;lt;/PARAM_1&amp;gt; &amp;lt;PARAM_2&amp;gt; Value2 &amp;lt;/PARAM_2&amp;gt; &amp;lt;PARAM_3&amp;gt; Value3 &amp;lt;/PARAM_3&amp;gt; &amp;lt;/SERVICE_REQ&amp;gt; &amp;lt;/SERVICERequest&amp;gt; &lt;/SERVICE&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </code></pre> <p>This is the format of responses from the service, and is the format expected for incoming requests.</p> <p>Is this common in SOAP interfaces? In practice, it causes the inner parameters to be inaccessible to the SOAP library I'm using. (soap4r) Any feedback from SOAP veterans is appreciated.</p> http://stackoverflow.com/questions/923015/http-authentication-with-web-references 0 HTTP Authentication with Web References Thor 2009-05-28T20:34:59Z 2009-10-13T05:00:03Z <p>I have a web reference created from the WSDL, but I'm not allowed to call the function unless I pass in the username / password; the original code for the XML toolkit was:</p> <pre><code>Set client = CreateObject("MSSOAP.SOAPClient30") URL = "http://" &amp; host &amp; "/_common/webservices/Trend?wsdl" client.mssoapinit (URL) client.ConnectorProperty("WinHTTPAuthScheme") = 1 client.ConnectorProperty("AuthUser") = user client.ConnectorProperty("AuthPassword") = passwd On Error GoTo err Dim result1() As String result1 = client.getTrendData(expression, startDate, endDate, limitFromStart, maxRecords </code></pre> <p>How do I add the AuthUser/AuthPassword to my new code?</p> <p>New code:</p> <pre><code> ALCServer.TrendClient tc = new WindowsFormsApplication1.ALCServer.TrendClient(); foreach(string s in tc.getTrendData(textBox2.Text, "5/25/2009", "5/28/2009", false, 500)) textBox1.Text+= s; </code></pre> http://stackoverflow.com/questions/1543625/can-zendsoapclient-set-custom-user-agent 0 Can Zend_Soap_Client set custom user-agent? Alexey 2009-10-09T13:05:32Z 2009-10-12T09:28:37Z <p>I have Zend_Soap_Server. It should be tested. One issue - unit testing and development modes should work with different databases. It can be done via .htaccess:</p> <pre><code>SetEnvIfNoCase User-Agent (.*) APPLICATION_ENV=development SetEnvIfNoCase User-Agent testing APPLICATION_ENV=testing </code></pre> <p>It would work fine for me, I use Zend_Soap_Client as is for development/production mode, and add extra parameter for testing. There are no special changes in source code for testing support. The issue - I can't set custom user-agent for (<a href="http://framework.zend.com/manual/en/zend.soap.client.html" rel="nofollow">Zend_Soap_Client</a> It seems as this parameter isn't supported or isn't documented. I tried to do the same thing via mod_rewrite and adding </p> <pre><code>new Zend_Soap_Client('...?wsdl&amp;testing'); </code></pre> <p>but it requires to change Zend_Soap_Server to support testing Query_String, otherwise soap-actions aren't reflected with 'testing' outside of wsdl. It's not good in my opinion.</p> <p>I agree it's a bit more related with acceptance testing, not unit (I have tests for classes such as <code>$server-&gt;setClass('classWS')</code>), but anyway, I need it regardless of terminology.</p> <p>So, what would work fine for me is something like:</p> <pre><code>new Zend_Soap_Client($wsdl, array('useragent' =&gt; 'testing')); </code></pre> <p>in tests.</p> http://stackoverflow.com/questions/1393013/mssoap30-object-error-0x80004002-interface-does-not-exist-vb 0 MSSOAP30 Object error: 0x80004002: Interface does not exist (VB) Dave 2009-09-08T09:42:29Z 2009-10-05T04:00:02Z <p>Hi</p> <p>I'm well and truly stuck with MS SOAP 3.0, which I'm currently running from VBA Excel in Office 2003. I have used MS SOAP Toolkit 3 to create a proxy class which I am using. If I don't use it, I don't get the error, but then I'd have to write out the entire proxy class by hand and it's massive.</p> <p>When my program is first run, I get "Class not registered". If I run it again I get "Interface not supported". The error messge is:</p> <blockquote> <p>run-time error: '-2147467262'</p> <p>SoapMapper: The SoapMapper for element callContextIn could not be created HRESULT=0x80004002: No such interface supported. -WSDLOperation:Initialisation of a SoapMapper for operation getSNFormat HRESULT=0x80004002: No such interfce supported.</p> </blockquote> <p>The error occurs when:</p> <blockquote> <p>Set sc_PartService = New SoapClient30</p> </blockquote> <p>Help would be greatly appreciated.</p> <p>Thanks</p> http://stackoverflow.com/questions/1471923/how-should-i-compensate-for-a-bad-wsdl 1 How should I compensate for a bad WSDL? Brabster 2009-09-24T14:07:13Z 2009-09-24T14:13:37Z <p>I've come across several examples of SOAP-based web services where automated tooling fails to build a client that works.</p> <p>Investigating these examples leads me to believe that the WSDL the service uses to describe itself doesn't quite match the service that's being provided. Maybe a wrong type somewhere, a different data structure - something.</p> <p>I'm unsure what the most appropriate response is - if we assume that the obvious one (get the provider to fix their stuff) isn't available.</p> <p>Some options I can think of:</p> <ul> <li>Make a fixed WSDL? </li> <li>Hack the generated code?</li> <li>Any other options?</li> <li>No good options?</li> </ul> <p>What good experiences have people had? What works in a real environment?</p> <p>Thanks</p> http://stackoverflow.com/questions/1468428/how-to-extract-data-from-a-soap-response-in-java 2 How to extract data from a SOAP response in Java? thedude19 2009-09-23T20:46:08Z 2009-09-23T20:57:41Z <p>Hello,</p> <p>I have a client set up to send a request to the National Weather Service SOAP server. I am receiving the response that I expect, but I am unsure as to the best way to extract the data from it that I need.</p> <p>For example, there is a lot of extra data in the XML (in the SOAPBody), but I only want to grab the data for the parameters that I set (such as temperature) to my POJO.</p> <p>What's the best way to extract this data?</p> http://stackoverflow.com/questions/1459196/delphi-to-java-soap-delphi-sms-send 1 Delphi to java, soap delphi, sms send tavallaie 2009-09-22T10:10:01Z 2009-09-22T10:27:46Z <p>I am working on a code which I need to send sms messages from a sms service provider they get me delphy program that can send a sms from their service but i dont know delphy and i should change this code to java Can anyboddy guide me that how can i change this code? I think this is a soap service</p> <pre><code> // ************************************************************************ // // The types declared in this file were generated from data read from the // WSDL File described below: // WSDL : http://mihansmscenter.com/webservice/?wsdl // Encoding : ISO-8859-1 // Version : 1.0 // (8/14/2007 6:51:27 PM - 1.33.2.5) // ************************************************************************ // unit IMihanSMSCenterService; interface uses InvokeRegistry, SOAPHTTPClient, Types, XSBuiltIns; type // ************************************************************************ // // The following types, referred to in the WSDL document are not being represented // in this file. They are either aliases[@] of other types represented or were referred // to but never[!] declared in the document. The types from the latter category // typically map to predefined/known XML or Borland types; however, they could also // indicate incorrect WSDL documents that failed to declare or import a schema type. // ************************************************************************ // // !:string - "http://www.w3.org/2001/XMLSchema" // !:int - "http://www.w3.org/2001/XMLSchema" stringArray = array of WideString; { "http://mihansmscenter.com/webservice/" } intArray = array of Integer; { "http://mihansmscenter.com/webservice/" } // ************************************************************************ // // Namespace : http://mihansmscenter.com/webservice/ // soapAction: http://mihansmscenter.com/webservice/#%operationName% // transport : http://schemas.xmlsoap.org/soap/http // style : rpc // binding : mihansmscenterWSDLBinding // service : mihansmscenterWSDL // port : mihansmscenterWSDLPort // URL : http://www.mihansmscenter.com/webservice/index.php // ************************************************************************ // mihansmscenterWSDLPortType = interface(IInvokable) ['{7B1648E6-5147-A087-2C5C-7FF87155D985}'] procedure send(const username: WideString; const password: WideString; const to_: WideString; const from: WideString; const message: WideString; const send_time: Integer; out status: Integer; out identifier: Integer; out status_message: WideString); stdcall; procedure multiSend(const username: WideString; const password: WideString; const to_: stringArray; const from: WideString; const message: WideString; const send_time: Integer; out status: Integer; out send_results: intArray; out identifiers: intArray; out status_message: WideString ); stdcall; procedure checkSendStatus(const username: WideString; const password: WideString; const identifier: Integer; out status: Integer; out sendStatus: Integer; out status_message: WideString); stdcall; procedure bulkSend(const username: WideString; const password: WideString; const count: Integer; const from: WideString; const message: WideString; const description: WideString; out status: Integer; out status_message: WideString); stdcall; procedure verifyReceive(const username: WideString; const password: WideString; const to_: WideString; const from: WideString; const message: WideString; const timestamp: Integer; out status: Integer; out status_message: WideString); stdcall; procedure accountInfo(const username: WideString; const password: WideString; out status: Integer; out status_message: WideString; out remaining_sms: Integer; out total_sms: Integer; out received_sms: Integer; out sent_sms: Integer; out recieve_url: WideString; out sms_numbers: stringArray ); stdcall; procedure changeReceiveURL(const username: WideString; const password: WideString; const receive_url: WideString; out status: Integer; out status_message: WideString); stdcall; procedure changePassword(const username: WideString; const password: WideString; const new_password: WideString; out status: Integer; out status_message: WideString); stdcall; end; function GetmihansmscenterWSDLPortType(UseWSDL: Boolean=System.False; Addr: string=''; HTTPRIO: THTTPRIO = nil): mihansmscenterWSDLPortType; implementation function GetmihansmscenterWSDLPortType(UseWSDL: Boolean; Addr: string; HTTPRIO: THTTPRIO): mihansmscenterWSDLPortType; const defWSDL = 'http://mihansmscenter.com/webservice/?wsdl'; defURL = 'http://www.mihansmscenter.com/webservice/index.php'; defSvc = 'mihansmscenterWSDL'; defPrt = 'mihansmscenterWSDLPort'; var RIO: THTTPRIO; begin Result := nil; if (Addr = '') then begin if UseWSDL then Addr := defWSDL else Addr := defURL; end; if HTTPRIO = nil then RIO := THTTPRIO.Create(nil) else RIO := HTTPRIO; try Result := (RIO as mihansmscenterWSDLPortType); if UseWSDL then begin RIO.WSDLLocation := Addr; RIO.Service := defSvc; RIO.Port := defPrt; end else RIO.URL := Addr; finally if (Result = nil) and (HTTPRIO = nil) then RIO.Free; end; end; initialization InvRegistry.RegisterInterface(TypeInfo(mihansmscenterWSDLPortType), 'http://mihansmscenter.com/webservice/', 'ISO-8859-1'); InvRegistry.RegisterDefaultSOAPAction(TypeInfo(mihansmscenterWSDLPortType), 'http://mihansmscenter.com/webservice/#%operationName%'); InvRegistry.RegisterExternalParamName(TypeInfo(mihansmscenterWSDLPortType), 'send', 'to_', 'to'); InvRegistry.RegisterExternalParamName(TypeInfo(mihansmscenterWSDLPortType), 'multiSend', 'to_', 'to'); InvRegistry.RegisterExternalParamName(TypeInfo(mihansmscenterWSDLPortType), 'verifyReceive', 'to_', 'to'); RemClassRegistry.RegisterXSInfo(TypeInfo(stringArray), 'http://mihansmscenter.com/webservice/', 'stringArray'); RemClassRegistry.RegisterXSInfo(TypeInfo(intArray), 'http://mihansmscenter.com/webservice/', 'intArray'); end. </code></pre> http://stackoverflow.com/questions/1406632/checking-a-url-is-valid-from-php-soap-client 5 Checking a URL is valid (from php soap client) Jeremy French 2009-09-10T17:31:19Z 2009-09-14T16:27:22Z <p>Hi there</p> <p>I am writing a web app which will allow the user to specify a URL for a SoapClient. I wanted to validate that php can connect to the client when the user submits a form. I thouhgt I could do this via try catch or set_error_handler (or some combination of the two). However it looks like this is not possible for fatal errors. Is there a way to get SoapClent to test a URL which won't throw an unrecoverable error?</p> <pre><code>Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://example.com/wibble' </code></pre> <p>I want it to flag an error as the URL doesn’t exist, but I would like to be able to catch it. </p> <p>Otherwise I suppose I could try to download and validate the URL myself, but I would have thought that it would be possible to do it from the SoapClient. </p> <p>Should this be a fatal error?</p> <p><strong>Edit</strong></p> <p>After reading rogeriopvl's answer I reaslise that I should have said that I had tried the 'exceptions' option to the soapclient constructor and (in desperation) the use-soap-error-handler function.</p> http://stackoverflow.com/questions/1386290/show-webservice-soapexception-response-in-the-client-in-asp-net 0 show webservice soapexception response in the client in ASP.NET Subhasis 2009-09-06T18:08:18Z 2009-09-07T16:02:19Z <p>Hi All</p> <p>I am trying to make a Test Webservice and throw a SoapException. But when I open the service through browser, it shows Internal server error - 500.</p> <p>If i try to consume it manually by sending a manually created SoapRequest (in stringbuilder), I get the same error "Servererror - 500" in Visual Studio itself in the line "WebResponse response = req.GetResponse()"</p> <p>Is there anyway I can actually see the "fault in response XML".</p> <p>Thanks Subhasis</p> http://stackoverflow.com/questions/1327151/soap-request-with-attribute 1 SOAP request with attribute Pierre Spring 2009-08-25T09:37:32Z 2009-08-28T18:49:07Z <p>hi all,</p> <p>I can not seem to find out how to set an attribute to a SOAP request without using the <strong>XSD_ANYXML</strong> encoding.</p> <p>The request parameter should look as follows</p> <pre><code>&lt;request xmlns:ns="/some/ns"&gt; ... &lt;ns:parameter attr="some attribute"&gt; value &lt;/ns:parameter&gt; ... &lt;/request&gt; </code></pre> <p>Of course the following code works, but it's rather ugly (ugly, because it uses string concatenation where it should <strong>use the SOAP_Client API</strong> and because it does not use the general namespace)</p> <pre><code>$param = new SoapVar( '&lt;ns_xxx:parameter xmlns:ns_xxx="/some/ns" attr="some attribute"&gt; value &lt;/ns_xxx:parameter&gt;', XSD_ANYXML ); </code></pre> <p>Is there a better way to create a SOAP request parameter with a namespace and an attribute?</p> <p>I am looking for s.th. like the following (this is just some pseudo code using the <a href="http://php.net/manual/en/soapvar.soapvar.php" rel="nofollow">SoapVar</a> API):</p> <pre><code>$param = new SoapVar( array( '_' =&gt; 'value', 'attr' =&gt; 'some attribute' ), SOME_ENCODING, null, null, null, '/some/ns' ); </code></pre> http://stackoverflow.com/questions/1112473/debugging-a-jax-ws-client-in-eclipse 1 Debugging a jax-ws client in eclipse Hello World 2009-07-10T23:49:43Z 2009-08-03T11:39:16Z <p>I am writing a java client for a web service. I used wsimport to generate the proxies. Copied them over to my workspace project (in eclipse). Wrote a simple program using couple of ws calls. Now when I want to step into a soap call, eclipse says that source code for the file was not found (com.sun.xml.internal.ws.client.sei.SEIStub.class). It's using this class from rt.jar which is pointing to the src.zip that came with the installation. I noticed that src.zip does not contain the missing java files, so I downloaded them separately and tried adding them to zip file. I also tried copying them over to my project to see if I can trick eclipse into accepting them as the source file. </p> <p>I don't write/debug Java on a regular basis so please help me out here. I really want to debug and see what jax-ws is doing differently from axis as the call works in the later implementation. </p> http://stackoverflow.com/questions/1103590/soaprpcdriver-formatting-problems-how-can-i-change-it 0 SOAP::RPC::Driver formatting problems. How can I change it? Jenny 2009-07-09T12:37:54Z 2009-07-21T13:50:29Z <p>I'm dealing with a SOAP webservice call from a server that is expecting to receive method calls with the paramaters in the format of:</p> <pre><code>&lt;urn:offeringId&gt; 354 &lt;/urn:offeringId&gt; </code></pre> <p>But SOAP::RPC::Driver is generating messages in the form of:</p> <pre><code>&lt;offeringId xsi:type = "xsd:int"&gt;354&lt;/offeringId&gt; </code></pre> <p>The server keeps erroring when it gets these messages (especially since it's expecting offeringId to be a custom type internal to itself, not an int).</p> <p>Is there anyway to configure the driver to format things the way the server is expecting it. Is the server even doing SOAP? I'm having trouble finding reference to that style of formating for SOAP (I know it DOES work though, because SOAPUI works just fine with that type of message).</p> <p>-Jenny</p> <p>Edit: I've got at least part of it solved. the RPC::Driver (obviously) uses the RPC standard, whereas apparently the server I'm trying to talk to is doing "document". Now, when I look at RPC::Driver's API, I'm seeing a method named "add_document_method". That SOUNDS to me like it might be what I want, but I can't figure out what paramaters to give it. The examples I've seen around the net don't make much sense to me, things like:</p> <pre><code>def GetNamePair(response) response.account.each do |x| class &lt;&lt; x attr :configuration, true end x.configuration = Hash[*x.a.map do |y| [y.__xmlattr[XSD::QName.new(nil, 'n')], String.new(y)] end.flatten] end end mNS = 'urn:zimbraAdmin' drv.add_document_method('GetAllAdminAccountsRequest', mNS, [XSD::QName.new(mNS, 'GetAllAdminAccountsRequest')], [XSD::QName.new(mNS, 'GetAllAdminAccountsResponse')] ) puts YAML.dump(GetNamePair(drv.GetAllAdminAccountsRequest([])) </code></pre> <p>All I really know is that I have a method that takes in certain parameters.... I really don't get why, if this method does what I think it does, it has to be more complicated. Isn't this just a matter of taking the exact same data and formating it differently? I'm so confused....</p> http://stackoverflow.com/questions/321788/c-binding-a-new-soapclient-to-a-specific-ip-address-before-sending-outgoing-req 1 C#: Binding a new SoapClient to a specific IP address before sending outgoing request Craig Flannagan 2008-11-26T19:06:24Z 2009-07-15T03:05:59Z <p>Hello everyone,</p> <p>Let's say a machine where the application sits on has SoapClient (to be specific, I'm using Microsoft.Web.Service3.Messaging.SoapClient). It communicates toward a remote location with no problem by sending outgoing requests and getting SoapEnvelope in return (well-established process).</p> <p>The above scenario is through the IP assigned to the machine where the application is sitting on.</p> <p>Now, I need to modify this process - we need to add 2 more IPs to the machine, and I need to "bind" outgoing requests to a specific IP, rather than the default IP. </p> <p>So, at the remote location, it appears as if it is receiving requests from 3 different IPs, but really all from same machine/application.</p> <p>How do I bind outgoing requests to a specific IP? This is how the remote location "locks down" to a particular account, via an IP, not a login (which was what I suggested, and they declined). They said we should be able to do this (binding to a specific IP), but I'm not sure how to do this with Microsoft's SoapClient object.</p> <p>Any suggestions? Thanks in advance!</p> http://stackoverflow.com/questions/1002202/php-soap-client-wsdl-vs-non-wsdl-which-is-faster 0 php soap client: wsdl vs. non-wsdl - which is faster? Dave C 2009-06-16T15:21:29Z 2009-06-16T15:21:29Z <p>I'm Using PHP 5 and the built-in SoapClient. <br/> This is really a question for the developers of PHP Soap support.</p> <p>The SoapClient gives you 2 choices: WSDL mode, which caches the WSDL file locally, and non-WSDL which requires you to build your own requests.</p> <p>Using the WSDL is obviously more convenient. But, I wonder how much processing this does each time you create a SoapClient instance. The WSDL is cached, but does it have to re-process the entire WSDL each time you create a SoapClient? If so, it seems it might be more efficient (CPU-wise) to go the non-WSDL route.</p> <p>It's no problem to create the non-WSDL SoapClient in my situation. Should I?</p> <p>-Dave</p> http://stackoverflow.com/questions/381898/php-object-of-class-soapclient-could-not-be-converted-to-string 0 (PHP) Object of class SoapClient could not be converted to string Brian Griffin 2008-12-19T19:10:32Z 2009-06-13T03:01:45Z <p>This code works fine:</p> <pre><code> $result = $client->__call("optionalInfo", array( new SoapParam("...", "client"), new SoapParam("...", "add_code")) ); </code></pre> <p>When I try abstracting it a bit to make the script re-usable, I get this error:</p> <p>Catchable fatal error: Object of class SoapClient could not be converted to string </p> <p>The broken code is:</p> <pre><code> $params = array( new SoapParam($client, "client"), new SoapParam($add_code, "add_code") ); $result = $client->__call($functionName, $params); </code></pre> <p>The last line is what is causing the problem.</p> http://stackoverflow.com/questions/941709/soapclient-save-request-to-file-instead-of-sending-it 0 SoapClient save request to file instead of sending it Apikot 2009-06-02T20:24:22Z 2009-06-02T20:49:54Z <p>Is there a way to save the soap request SoapClient sends when calling __soapCall to a file instead of sending it to the actual server?</p> <p>I'm trying to save the soap requests to a queue and then send them over a period of time (the requests will be very different).</p> <p>I'm using Zend_Soap.</p> http://stackoverflow.com/questions/863808/soap-java-1-4-2 0 SOAP Java 1.4.2 NoName 2009-05-14T14:55:59Z 2009-05-16T15:36:26Z <p>What libraries are available to write a SOAP client in Java version 1.4.2?</p> http://stackoverflow.com/questions/578306/simple-free-soap-client 2 Simple, free SOAP client? ObiWanKenobi 2009-02-23T16:35:53Z 2009-02-23T17:11:47Z <p>Is there a good, free (and/or open source) SOAP client (for Windows) that can be used to test web services?</p> http://stackoverflow.com/questions/393727/how-is-the-best-way-to-write-a-soap-1-2-client-with-delphi-win32 5 How is the best way to write a SOAP 1.2 Client with Delphi Win32 Cesar Romero 2008-12-26T12:41:10Z 2008-12-30T13:55:56Z <p>So far, no Delphi version supports SOAP 1.2 clients or server.</p> <p>I have tried for weeks to make it works, but every time a new problem, with VS/C# I could do the same, and make works in 3 days, but I need to do with Delphi 2009.</p> <p>"I write a new version using Rem Objects SDK,", but the result was not better that I had with Delphi SOAP library.</p> <p>But I'm wondering what choice else do I have, which library/component full support SOAP 1.2? </p> <p>I found a message from Bruneau, suggesting Pocket SOAP <a href="http://www.pocketsoap.com/pocketsoap/" rel="nofollow">http://www.pocketsoap.com/pocketsoap/</a> I dont know how this works, Ill investigate and see what I can do.</p> http://stackoverflow.com/questions/260665/how-do-you-handle-a-timeoutexception-when-calling-webservices-using-the-soapclien 2 How do you Handle a TimeoutException when calling WebServices using the SoapClient in Silverlight? Chris Pietschmann 2008-11-04T02:45:38Z 2008-12-26T12:51:27Z <p>How do you handle a TimeoutException that is generated when calling WebServices using the SoapClient?</p> <p>There doesn't seem to be any event to be handled in order to catch any Exceptions generated when calling web services.</p> <p>Is it possible to catch any Exceptions thrown, especially the TimeoutException??</p> <p>I also posted this question to the Silverlight.net forums: <a href="http://silverlight.net/forums/p/46029/124010.aspx" rel="nofollow">http://silverlight.net/forums/p/46029/124010.aspx</a></p>