active questions tagged soap - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:34:05Zhttp://stackoverflow.com/feeds/tag/soaphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805345/how-do-you-catch-a-thrown-soap-exception-from-a-web-service3How do you catch a thrown soap exception from a web service?Louise2009-11-26T19:36:33Z2009-11-26T21:30:09Z
<p>I throw a few soap exceptions in my web service successfully. I would like to catch the exceptions and access the string and ClientFaultCode that are called with the exception. Here is an example of one of my exceptions in the web service:</p>
<pre><code>throw new SoapException("You lose the game.", SoapException.ClientFaultCode);
</code></pre>
<p>In my client, I try to run the method from the web service that may throw an exception, and I catch it. The problem is that my catch blocks don't do anything. See this example:</p>
<pre><code>try
{
service.StartGame();
}
catch
{
// missing code goes here
}
</code></pre>
<p>How can I access the string and ClientFaultCode that are called with the thrown exception?</p>
http://stackoverflow.com/questions/753623/detecting-missing-responses-to-long-running-http-soap-requests0Detecting missing responses to long running HTTP (SOAP) requestsMark Zeren2009-04-15T20:41:28Z2009-11-26T11:00:07Z
<p>I need a way to detect a missing response to a long running HTTP POST request. This problem arises when the network infrastructure (firewalls, proxies, unplugged cables, etc.) drops the response packets. The server may detect this failure, but the client cannot send additional bytes after the POST to probe the state of the TCP connection. The failure may be limited to a single TCP connection. For example I may be able to subsequently open a new TCP connection to the server.</p>
<p>I'm looking for a solution that still uses HTTP POST and does not change the duration of the server side processing.</p>
<p>Some solutions that I can think of are:</p>
<ol>
<li><p>Provide a side channel interface to retrieve request & response history. If the history lists the response as having been send (presumably resulting in a TCP error) but I have not yet received it within a reasonable time I can generate a local error.</p></li>
<li><p>Use an X header to request that the server deliver "spurious" 100 Continue provisional responses on a regular interval. If I fail to see an expected 100 Continue or a non-provisional response I can generate a local error.</p></li>
</ol>
<p>Is there a state of the art solution for this problem? </p>
http://stackoverflow.com/questions/1799005/soap-object-over-http-post-in-c-net2SOAP object over HTTP post in C# .NETAaronTjong2009-11-25T18:27:30Z2009-11-26T07:57:12Z
<p>I am trying to compose a SOAP message(including header) in C# .NET to send to a URL using HTTP post. The URL I want to send it to is not a web-service, it just receives SOAP messages to eventually extract information from it. Any ideas on how to do this?</p>
http://stackoverflow.com/questions/1603938/micrsoft-crm-3-0-web-service-via-php-soap-class2Micrsoft CRM 3.0 web service via PHP Soap classBen2009-10-21T22:07:59Z2009-11-25T21:38:51Z
<p>I would like to create new contacts and leads using php. I can't quite figure out how to call the methods of the mscrm 3 web service. </p>
<p>The php soap class seems quite simple to use. I am able to connect and authenticate to the crm web service and get a list of available functions however I am unsure how to go about calling them. </p>
<p>I have seen examples for mscrm 4.0 which seem to involve masses of XML including soap headers and envelopes. </p>
<p>I am under the impression that using a soap class bypasses this and will write all the extra xml for me so all I need to do is call a function with an array of parameters? </p>
<p>Am I completely wrong here ?</p>
<p>Has anyone done this with mscrm 3 that can provide some sample code, or perhaps give me a few pointers as how to correctly call the Create() method ? </p>
http://stackoverflow.com/questions/330427/can-i-disable-sop-same-origin-policy-on-any-browser-for-development1Can I disable SOP (Same Origin Policy) on any browser for development?Thomaschaaf2008-12-01T10:11:28Z2009-11-25T16:43:30Z
<p>I want to develop JS on my windows machine. Do you know a browser where I can turn off SOP so I can develop? Firefox would be optimal.</p>
<p>Or if you know a proxy I could use for a SOAP/WSDL site it would be great too..</p>
<p>I am trying to work with the SOAPClient (<a href="http://www.codeplex.com/JavaScriptSoapClient" rel="nofollow">http://www.codeplex.com/JavaScriptSoapClient</a>)</p>
http://stackoverflow.com/questions/41446/generating-javascript-stubs-from-wsdl2Generating JavaScript stubs from WSDLVincent Robert2008-09-03T10:54:28Z2009-11-25T16:07:08Z
<p>Hello, I'm looking for a tool to generate a JavaScript stub from a WSDL.</p>
<p>Although I usually prefer to use REST services with JSON or XML, there are some tools I am currently integrating that works only using SOAP.</p>
<p>I already created a first version of the client in JavaScript but I'm parsing the SOAP envelope by hand and I doubt that my code can survive a service upgrade for example, seeing how complex the SOAP envelope specification is.</p>
<p>So is there any tool to automatically generate fully SOAP compliant stubs for JavaScript from the WSDL so I can be more confident on the future of my client code.</p>
<p>More: The web service I try to use is RPC encoded, not document literal.</p>
http://stackoverflow.com/questions/1797145/which-one-is-best-for-iphone-rest-api-or-soap0Which one is best for Iphone REST API or SOAP?Vivek Navadia2009-11-25T14:10:03Z2009-11-25T14:45:08Z
<p>I am working on iPhone Applications. Recently i have used SOAP api to integrate with iPhone application. my main aspect of this particular query is whether SOAP is best or REST is best considering performance issue as a iPhone application.</p>
<p>I have tried with SOAP, there will be frequent crashes happened to me. so is it better to use REST to overcome from such issues. </p>
<p>Currently my main concern is to achieve best performance in application and i am looking for such solution from you all.</p>
http://stackoverflow.com/questions/306852/in-c-how-would-i-capture-the-soap-used-in-a-web-service-call2In C#, how would I capture the SOAP used in a web service call?David Chappelle2008-11-20T21:05:39Z2009-11-25T11:24:17Z
<p>I have a C# application that is a client to a web service. One of my requirements is to allow capturing the SOAP that I send, so that if there is a problem, I can either fix the bug, or demonstrate that the problem is in the service I am calling.</p>
<p>My WebReference proxy service class derives from <code>System.Web.Services.Protocols.SoapHttpClientProtocol</code> as usual. If I had a magic wand, I would make this base class implement an event <code>OnPost</code> that I could handle to write the SOAP into my logs and continue.</p>
<p>Short of running a packet sniffer like WireShark, is there an easy way to get this level of logging?</p>
http://stackoverflow.com/questions/1328878/php-5-soap-client-returns-null-when-wsdl-provided-function-is-called1PHP 5 SOAP client returns NULL when WSDL-provided function is callediKs2009-08-25T15:04:21Z2009-11-25T02:21:14Z
<p>Hi all,</p>
<p>I am trying to use a webservice to look for specific users from my PHP application. I have used that exact same webservice in ASP.NET with success.</p>
<p>Basically, I do everything like the PHP doc tells me to, and I use the same methods/variables I used in ASP.NET (for the webservice itself), but I can't seem to get a result.</p>
<p>The function is listed in __getFunctions() and should return <code>anyType</code>, which if I understand correctly is the equivalent of <code>mixed</code> in PHP:</p>
<pre><code>array(1) { [0]=> string(63) "anyType basicSearch(string $sharedSecret, string $searchParams)" }
</code></pre>
<p>When I do call basicSearch() though, it seems returns NULL.</p>
<p>basicSearch() is supposed to return an XML document with the information. In ASP.NET I used to simply cast the response to, I believe, and XmlDocument. Should I do that in PHP too? With which representation of an XML document (SimpleXML, DOM, etc.)?</p>
<p>Could it show as NULL just because PHP can't understand the format?</p>
<p>Am I doing something wrong in PHP? Or should I look into the webservice itself and try to debug on that side?</p>
<pre><code><?php
$client = new SoapClient($wsdl_url);
echo $client->__getFunctions();
echo "<br />\n";
echo $client->basicSearch($key, $req);
?>
</code></pre>
<p>Thanks.</p>
<p>PS: I am using the PHP 5 library. Maybe using some other library like nu-soap would help? There seems to be more doc online about it.</p>
<p><hr /></p>
<p><strong>Update:</strong></p>
<p>Using an array to pass the parameter does not work, SOAP expects separate arguments. Calling __getLastRequest() returns a string concatenating $key and $req with no other XML. Calling __getLastResponse() returns an empty string. No exception is thrown whatsoever. It seems PHP does not know what to do with the arguments I give it, even though it has parsed the WSDL file since I get the function I use listed when I call __getFunctions().</p>
<p>Any help would be appreciated.</p>
<p>Update': Still no solution working. I am baffled...</p>
http://stackoverflow.com/questions/680393/soapfault-exception-versionmismatch-php-zend0SoapFault exception: [VersionMismatch] PHP ZendSteve2009-03-25T06:08:28Z2009-11-24T23:00:07Z
<p>Hi ALL~</p>
<p>I'm getting this error while I was implementing and testing PHP webservice using Zend Soap.</p>
<p>I'm testing the same codes under 2 different protocols(http & https) in 2 different web servers.
http site works just fine, but I get "SoapFault exception: [VersionMismatch]..." error in https.</p>
<p>The two web servers almost have the same specs.</p>
<p>Is there anyone who can help me with this?</p>
http://stackoverflow.com/questions/1748921/calling-functions-with-parameters-using-soap-with-perl2Calling functions with parameters using SOAP with PerlMat2009-11-17T13:36:32Z2009-11-24T22:41:07Z
<p>I am attempting to access a web service using SOAP through Perl and am having issues calling the service's functions that require parameters. The XSD that dictates the SOAP call says,</p>
<pre><code><xs:complexType name="getVersion">
<xs:sequence/>
</xs:complexType>
<xs:complexType name="getVersionResponse">
<xs:sequence>
<xs:element minOccurs="0" name="return" type="xs:string"/>
</xs:sequence>
</xs:complexType>
...
<xs:complexType name="enumerateEntities">
<xs:sequence>
<xs:element name="entityId" type="xs:int"/>
<xs:element minOccurs="0" name="entityType" type="tns:entityType"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="enumerateEntitiesResponse">
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="xs:int"/>
</xs:sequence>
</xs:complexType>
</code></pre>
<p>According to the docs for the service, the signatures for the two functions are:</p>
<pre><code>String getVersion ()
int[] enumerateEntities (int entityId, EntityType entityType)
</code></pre>
<p>I am able to call the first function, which requires no input parameters, using:</p>
<pre><code>#!/usr/bin/perl
use SOAP::Lite;
my $uri = 'http://wsdl.mydomain.com/';
my $service = SOAP::Lite
-> uri($uri)
-> on_action(sub { sprintf '"Call by on_action: %s"',shift})
-> proxy('http://192.168.1.100:8688/MyService/services/MyService.MyServicePort/');
$method = SOAP::Data->name("MyService")->attr({xmlns => $uri});
$getVersion = SOAP::Data->name("getVersion")->attr({xmlns=>$uri});#line 11
my $theResult = $service->getVersion;
unless ($theResult->fault){ print "Version: "; print $theResult->result;}
else {print $theResult->faultstring;}
</code></pre>
<p>...but my attempt (below) at calling a function with parameters by changing line 11 on have been futile.</p>
<pre><code>...
@entityId = SOAP::Data->type('int')->name('entityId')->value(0);
@entityType = SOAP::Data->type('EntityType')->name('entityType')->value(NODE);
$enumerateEntities = SOAP::Data->name("enumerateEntities",@entityId,@entityType)->attr({xmlns=>$uri});
my $result2 = $service->enumerateEntities;
print $result2->result;
</code></pre>
<p>What am I doing wrong that is preventing me from calling functions of the service with parameters? </p>
<p><hr></p>
<p><strong>Edit:</strong>
Here's the updated sample code with using SOAP::WSDL</p>
<pre><code>#!/usr/bin/perl
use SOAP::WSDL;
use Data::Dumper;
my $service = SOAP::WSDL->new(
wsdl => 'http://192.168.1.100:8688/MyService/services/MyService.MyServicePort?wsdl',
outputhash => 1
);
</code></pre>
http://stackoverflow.com/questions/1792737/in-process-soap-service-server-for-java1In-process SOAP service server for Javatster2009-11-24T20:31:17Z2009-11-24T22:29:26Z
<p>OK, I am developing a program which will be deployed to lots of machines (Windows, Linux, AIX, z/Linux, openVMS, etc.). I want that application to contain a SOAP web service, but I don't want to bundle tomcat or run a separate service for the services (I want them in the same process as the rest of the application).</p>
<p>Basically what I'm looking for is something where I can define a class (say <code>WebServices</code>). I'm OK with writing WSDL or any other kind of service description as well. The I want something like this:</p>
<pre><code>SOAPServer server = makeMeASoapServer();
//do config on the server
server.add(new WebService(...));
server.listen(port);
</code></pre>
<p>Obviously the names and parameters will be different.</p>
<p>I've been looking at Axis, and it seems like it provides this, but I don't know what classes I need to use. Am I crazy in wanting this kind of behavior? I can't believe more people aren't looking for this, I do this all the time with embedded web services within .NET clients.</p>
http://stackoverflow.com/questions/115316/how-can-i-consume-a-wsdl-soap-web-service-in-python15How can I consume a WSDL (SOAP) web service in Python?DavidM2008-09-22T14:58:53Z2009-11-24T21:32:02Z
<p>I want to use a WSDL SOAP based web service in Python. I have looked at the <a href="http://diveintopython.org/soap_web_services/" rel="nofollow">Dive Into Python</a> code but the SOAPpy module does not work under Python 2.5.</p>
<p>I have tried using <a href="https://fedorahosted.org/suds" rel="nofollow">suds</a> which works partly, but breaks with certain types (suds.TypeNotFound: Type not found: 'item').</p>
<p>I have also looked at <a href="http://trac.optio.webfactional.com/wiki" rel="nofollow">Client</a> but this does not appear to support WSDL.</p>
<p>And I have looked at <a href="http://pywebsvcs.sourceforge.net/zsi.html" rel="nofollow">ZSI</a> but it looks very complex. Does anyone have any sample code for it?</p>
<p>The WSDL is https://ws.pingdom.com/soap/PingdomAPI.wsdl and works fine with the PHP 5 SOAP client.</p>
http://stackoverflow.com/questions/1788967/is-implementing-soap-clients-in-perl-using-meta-programming-sensible2Is implementing SOAP clients in Perl using meta-programming sensible?rassie2009-11-24T09:34:52Z2009-11-24T19:40:43Z
<p>I'm currently dealing with a code base which contains several dozens of classes generated with SOAP::WSDL. However, having worked with Moose I now think that generating those classes at runtime at meta level (i.e. not to files on disk but directly to objects) might be a better idea (completely excluding performance reasons at this point).</p>
<ol>
<li><p>Is this approach sensible? The idea is to avoid changes to generated code and also to avoid re-generating it once in a while.</p></li>
<li><p>If so, are there any ready-to-use Perl modules that create classes from a WSDL?</p></li>
</ol>
http://stackoverflow.com/questions/1791021/php-soap-request-includes-multiple-identical-tags0PHP SOAP Request includes multiple identical tagsPaulDarius2009-11-24T16:00:29Z2009-11-24T16:03:36Z
<p>OK, so I have this external SOAP based webservice, and PHP SoapClient. Everything is fine with basic requests, but I need to create a parameter set that looks like this:</p>
<pre><code><DatasetList>
<DatasetID>K0001</DatasetID>
<DatasetID>K0002</DatasetID>
</DatasetList>
</code></pre>
<p>For a single nested DatasetID tag I'd do:</p>
<pre><code>$req = array( "DatasetList" => array( "DatasetId" => "K0001" ));
$client->getWebserviceCall($req);
</code></pre>
<p>but I need multiple DatasetID tags... I've tried assigning DatasetID as an array, but I just get:</p>
<pre><code><DatasetList>
<DatasetID>Array</DatasetID>
</DatasetList>
</code></pre>
<p>Anyone help?</p>
http://stackoverflow.com/questions/1790355/php-soapclient-request1PHP SoapClient requestAaron2009-11-24T14:16:27Z2009-11-24T15:40:14Z
<p>I'm trying to send a SOAP request to a newsletter service using this WSDL:</p>
<p>dev-service.go.mayoris.com/wcf/SubscriptionService.wsdl?wsdl</p>
<p>Here's my PHP:</p>
<pre><code>$client = new SoapClient($wsdl_url, array(
'login' => 'myusername',
'password' => 'mypassword',
'trace' => true
));
$client->AddSubscriber(
new SoapParam('MyFirstName', 'FirstName'),
new SoapParam('MyLastName', 'LastName'),
new SoapParam('myemail@someaddress.com', 'Email')
);
</code></pre>
<p>I'm getting the exception:</p>
<p>End element 'Body' from namespace 'schemas.xmlsoap.org/soap/envelope/' expected. Found element 'LastName' from namespace ''. Line 2, position 156.</p>
<p>Here's what the service is expecting for AddSubscriber:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<AuthHeader xmlns="admin.ekeryx.com">
<Username>string</Username>
<Password>string</Password>
<AccountID>string</AccountID>
</AuthHeader>
</soap:Header>
<soap:Body>
<AddSubscriber xmlns="admin.ekeryx.com">
<subscriber>
<ID>string</ID>
<FirstName>string</FirstName>
<LastName>string</LastName>
<Email>string</Email>
</subscriber>
<overwritable>boolean</overwritable>
</AddSubscriber>
</soap:Body>
</soap:Envelope>
</code></pre>
<p>Here's what's being sent:</p>
<pre><code><SOAP-ENV:Envelope xmlns:SOAP-ENV="schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="tempuri.org/">
<SOAP-ENV:Body>
<ns1:AddSubscriber/>
<LastName>MyLastName</LastName>
<Email>myemail@someaddress.com</Email>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
</code></pre>
<p>I'm not very familar with SOAP, and I've been looking for documentation all over the place, but I can't seem to find a very good reference for what I'm doing. </p>
<p>Any guidance would be very much appreciated! Thank you.</p>
http://stackoverflow.com/questions/1786474/soap-and-omitting-null-elements0SOAP and omitting null elementsTom2009-11-23T22:23:46Z2009-11-23T22:30:33Z
<p>I wrote a web service in C# that just takes in an object and then returns another different object.</p>
<p>I have the following attributes applied to the web service</p>
<pre><code>[SoapDocumentService(Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Bare)]
[WebService(Namespace = "http://www.iec.ch/61968")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
</code></pre>
<p>When I return the object and examine the SOAP message I am seeing tags such as</p>
<pre><code><Response>
<Verb>reply</Verb>
<User />
</Response>
</code></pre>
<p>Where User is just some object type in my code. What do I need to set in my code for User to be completely omitted from the SOAP message if it is null in my code?</p>
http://stackoverflow.com/questions/1751040/anyone-has-an-example-of-a-well-defined-rest-web-service2Anyone has an example of a "Well Defined" REST Web Service?PostalMethods2009-11-17T19:04:52Z2009-11-23T21:23:05Z
<p>I read tons of posts, questions and answers on the REST vs SOAP debate. I read a few REST supporters that claim that "well designed" REST Web Services are self explanatory and hardly need any documentation.</p>
<p>Can anyone point me to such a Web Service? Preferably a somewhat complicated one. </p>
http://stackoverflow.com/questions/1374948/can-i-easily-recomplie-php-with-all-my-current-settings-and-enable-soap-with-the0can I easily recomplie PHP with all my current settings and enable SOAP with the new configuration?Phill Pafford2009-09-03T17:54:40Z2009-11-23T17:12:13Z
<p>I have PHP 5.1.6 running with a ton of mods and extensions enabled, is there a way to reconfigure the current settings as well as add SOAP to the mix?</p>
http://stackoverflow.com/questions/1607618/soap-ui-can-i-add-assertion-to-validate-with-local-xml-schema-file0SOAP UI: Can I add assertion to validate with local XML Schema file?Markos Fragkakis2009-10-22T14:26:56Z2009-11-23T15:22:30Z
<p>Hi all,</p>
<p>I have created a Web Service (with Java, Axis). Depending on the content of the request, the response may have a different XSD. So, the WSDL only specifies that the response is of a generic XSD, and the responses comply to XSDs that import and extend the generic XSD.</p>
<p>Unfortunately, the Schema assertion fail because the XSD specified in the WSDL can only the generic one. Is there a way to manually specify which XSD I want the assertion to use? For instance, depending on the request I prepare, I know the specific XSD of the response. So, it would be perfect if I could say to SoapUI to assert the response by that XSD, which I can store either locally or at a url.</p>
<p>So, is there a way to make a schema assertion using a locally (or remotely) stored XML schema?</p>
<p>Thanks,</p>
<p>Markos</p>
http://stackoverflow.com/questions/1781407/is-there-a-lightweight-standalone-soap-server-or-how-would-you-implement-one0Is there a lightweight standalone SOAP server? Or how would you implement one?hmpf2009-11-23T06:20:38Z2009-11-23T08:14:18Z
<p>The challenge here is that I need to implement a highly concurrent and dynamic system that is based on SOAP communication - in Java. It can be viewed as a multi-agent system where an agent is a software process (like a daemon) that responds to SOAP requests. At runtime my system may comprise more than a thousand of such agents - each of which bound to its own dedicated port, offering the exact same service/interface. Thus, implementing it as a Tomcat servlet or similar is a way to heavy.</p>
<p>For my first try I built a simple HTTP-Server and tried to implement SOAP message handling on top. But I didn't want to re-invent the wheel, especially since that Simple Object Access Protocol is actually not <em>that</em> simple. Unfortunately, most solutions for Java are based on Jax-WS and require a tomcat or other server environment to run (as far as I understood).</p>
<p>Then I had a look at the axis library (awesome). It even comes with a SimpleAxisServer module which does exactly what I want. It runs as a very light-weight standalone SOAP server, and deploying a SOAP service is done very easily. But... here comes the problem:
The SimpleAxisServer is meant for development and debugging purposes only and it is highly discouraged to use it otherwise. Of course, me ignoring those hints started prototyping the system using that module, and ran right into trouble after a few days...</p>
<p>My actual question now is:
Isn't there a ready-made solution for this problem?
Which libraries/classes should I have a look at?</p>
<p>I sincerely appreciate your help</p>
http://stackoverflow.com/questions/1034750/soap-servers-and-clients-with-zend-framework-getting-errors1SOAP servers and clients with Zend framework (Getting errors)Roman2009-06-23T19:43:49Z2009-11-23T00:35:07Z
<p>I am testing a server and client i made on my webspace.</p>
<p>when i try to call a simple "testServer" function defined in a ServerMap class, I get
"Looks like we got no XML document"</p>
<p>..?</p>
<p>I called getFunctions on the client and testServer is a valid function. I tried catching all exceptions and then calling __getLastResponseHeaders() and __getLastResponse.</p>
<p>header:</p>
<pre><code>string(348) "HTTP/1.1 200 OK
Date: Tue, 23 Jun 2009 19:36:29 GMT
Server: Apache/2.2.11 (Win32) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8i PHP/5.2.9
X-Powered-By: PHP/5.2.9
Cache-Control: max-age=1
Expires: Tue, 23 Jun 2009 19:36:30 GMT
Vary: Accept-Encoding
Content-Length: 1574
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/html
"
</code></pre>
<p>response:</p>
<pre><code>string(1574) "DEBUG HEADER : This is a cached page !
"
</code></pre>
<p>If i look at the source html of the response, its actually:</p>
<pre><code>string(1574) "DEBUG HEADER : This is a cached page !<?xml version="1.0"?>
<A lot of xml that looks pretty much like my WSDL file that my Zend_Soap_AutoDiscover generates>
</code></pre>
<p>So whats going on? I searched online and i didnt really find any solid solutions.
I don't have blank space before my ..</p>
http://stackoverflow.com/questions/766305/calling-web-services-with-php-soapclient-how-to0Calling Web Services with PHP SoapClient - How to?Peter2009-04-19T22:54:15Z2009-11-22T00:00:01Z
<p>Hi, I am going crazy starting off with Web Services. I am trying to call the following WSDL using PHP and keep getting nowhere:</p>
<p><a href="http://webservices.sabre.com/wsdl/sabreXML1.0.00/usg/SessionCreateRQ.wsdl" rel="nofollow">http://webservices.sabre.com/wsdl/sabreXML1.0.00/usg/SessionCreateRQ.wsdl</a></p>
<p>I found the following piece of code on the net, from someone with similar problems, but I could not get it to work either:
<br><br><code>
$soap = new SoapClient('<a href="http://webservices.sabre.com/wsdl/sabreXML1.0.00/usg/SessionCreateRQ.wsdl" rel="nofollow">http://webservices.sabre.com/wsdl/sabreXML1.0.00/usg/SessionCreateRQ.wsdl</a>',
array(
'trace' => true,
'soap_version' => SOAP_1_2,
"exceptions" => 0)); </p>
<p>$eb = new EbXmlMessage(); <br>
$sec = new Security(); <br>
$scrq = new SessionCreateRQ(); </p>
<p>try { <br>
$omg = $soap->SessionCreateRQ($scrq, $sec,$eb); <br>
} <br>
catch (Exception $e)<br>
{ <br>
print_r($e); <br>
} <br>
//debug <br>
print "Request: \n". <br>
htmlspecialchars($soap->__getLastRequestHeaders()) ."\n"; <br>
print "Request: \n". <br>
htmlspecialchars($soap->__getLastRequest()) ."\n"; <br>
print "Response: \n". <br>
$soap->__getLastResponseHeaders()."\n"; <br>
print "Response: \n". <br>
$soap->__getLastResponse()."\n"; <br>
<br>
print_r($omg); <br>
//the first envelope headers <br>
class EbXmlMessage <br>
{ <br>
public $From = array('PartyId' => 'mysite.com'); <br>
public $To = array('PartyId' => 'myprovider.com');<br>
public $CPAId = 'ZZZZ'; <br>
public $ConversationId = 'myconv@id.com'; <br>
public $Service = 'Session';// or SessionCreate?<br>
public $Action = 'SessionCreateRQ'; <br>
public $MessageData = array(
'MessageId' => 'messageid',
'Timestamp' => '2009-04-18T15:15:00Z');<br />
<br><br>
} <br>
//the security token <br>
class Security { <br>
public $Username = "xxxxx"; <br>
public $Password = "yyyyy"; <br>
public $Organization = "ZZZZ"; <br>
public $Domain = "DEFAULT"; <br>
} <br>
//this is suppoused to be the payload, or the xml i need to send at the end <br>
class SessionCreateRQ <br>
{ <br>
public $POS = array( <br>
'Source' => array( <br>
'_'=>"", <br>
'PseudoCityCode'=>'ZZZZ' <br>
)); <br>
} <br>
<br>
</code>
<br>
I keep getting the following error:</p>
<p>Response:
HTTP/1.1 500 Internal Server Error
SOAPAction: ""
Content-Type: text/xml;charset=utf-8
Date: Sun, 19 Apr 2009 22:21:34 GMT
Connection: close
Server: SWS</p>
<p>Response: </p>
<p>soap-env:Client.InvalidEbXmlMessageUnable to internalize messagejavax.xml.soap.SOAPException: Unable to internalize message
at com.sun.xml.messaging.saaj.soap.MessageImpl.(MessageImpl.java:135)
at com.sun.xml.messaging.saaj.soap.MessageFactoryImpl.createMessage(MessageFactoryImpl.java:32)
at com.sabre.universalservices.gateway.control.SoapProcessor.getRequest(SoapProcessor.java:263)
at com.sabre.universalservices.gateway.control.WSGateway.handleRequest(WSGateway.java:380)
at com.sabre.universalservices.gateway.control.WSGateway.doPost(WSGateway.java:306)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:563)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:852)
at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:584)
at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1508)
at java.lang.Thread.run(Thread.java:595)
Caused by: javax.xml.soap.SOAPException: Invalid Content-Type:application/soap+xml
at com.sun.xml.messaging.saaj.soap.MessageImpl.verify(MessageImpl.java:159)
at com.sun.xml.messaging.saaj.soap.MessageImpl.(MessageImpl.java:91)
... 19 more</p>
<p>SoapFault Object
(
[message:protected] => Unable to internalize message
[string:private] =>
.....</p>
<p>This service should be validating me on the system and returning a security object to be used in later calls - a string(?) which I can then store in a session variable for the following calls.</p>
<p>Any help GREATLY appreciated!!!</p>
http://stackoverflow.com/questions/1125181/webservice-caching-reverse-proxy0Webservice caching reverse proxy?hstoerr2009-07-14T12:52:52Z2009-11-21T17:47:58Z
<p>I'd like to put some kind of caching reverse proxy in front of a SOAP webservice
over HTTP to improve both performance and availability.
Is there some software that
performs this? (Preferably free and easy to install/use).</p>
<p>The idea is here: the responses of the webservice vary with the request, but
for each request the responses rarely change. So the proxy could
store the responses for each request for some time, and give the cached
response when the same request is sent again. There is only a limited number
of different requests.
The proxy does not need to parse and understand the request or response.
But it does need to understand HTTP POSTs and, say, construct a hash
of the request in order to find the correct response. Caching by the URL,
as done normally in HTTP Proxies, does not help here.</p>
<p>(Of course one can cache the webservice's results in the application
that calls the webservice, but I am looking for a solution that is
standalone, independent from the application.)</p>
http://stackoverflow.com/questions/1773179/what-are-those-garbage-16-bytes-at-the-beginning-of-an-unencrypted-encrypteddat0What are those "garbage" 16 bytes at the beginning of an unencrypted EncryptedData tag from an encrypted ws-security SOAP message? (WCF)TehJabbit2009-11-20T20:55:15Z2009-11-21T17:39:49Z
<p>I'm inspecting a WCF request message in order to implement part of the WS-Security standard to have iPhone <-> WCF intercommunication (I'm using certificate security over basicHttpBinding).<br/>
After reading the standard <a href="http://www.w3.org/TR/xmlenc-core/" rel="nofollow" title="xmlenc-core">xmlenc-core</a> I could decrypt both the SignedInfo and the Body tags, but I see 16 bytes at the beginning of both unencrypted tags from which I have no idea.<br/>
I create a sample application according to the standard in order to send request from the iPhone to a self hosted WCF but it continues responding "An error occurred when verifying security for the message".
The only thing I don't know how to implement are those 16 bytes, does anybody knows what to use on those 16 bytes?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1756998/servicecontractgenerator-vs-servicedescriptionimporter0ServiceContractGenerator vs ServiceDescriptionImporterDavid Brown2009-11-18T15:57:10Z2009-11-20T18:39:43Z
<p>I'm trying to build a light-weight SOAP client without using Add Service Reference. Ideally, this client should work for as many services as possible. Currently, it uses <code>ServiceDescriptionImporter</code> to generate the service assembly. Unfortunately, this doesn't appear to work for WCF services. Someone recommended that I use <code>ServiceContractGenerator</code> instead, because <code>ServiceDescriptionImporter</code> is designed specifically for ASMX web services.</p>
<p>If I use <code>ServiceContractGenerator</code>, will I be locked into only supporting WCF services?</p>
http://stackoverflow.com/questions/1765273/wcf-asmx-communicationexception0WCF - ASMX - CommunicationExceptionTiago2009-11-19T17:59:06Z2009-11-20T13:09:52Z
<p>So I've got a WCF client consuming an ASMX web-service. Everything works fine, except exception handling.</p>
<p>Where I should get a (non-contractual) FaultException, i get the CommunicationException.</p>
<p>What may be wrong?</p>
<p><hr></p>
<p>Here goes the relevant data:</p>
<p>SOAP response (seems to be according to specification):</p>
<pre><code><?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><soap:Fault><soap:Code><soap:Value>soap:Sender</soap:Value></soap:Code><soap:Reason><soap:Text xml:lang="en">User not found or password is incorrect (User not found)</soap:Text></soap:Reason><soap:Node>Login</soap:Node><detail><ErrorInfo xmlns="http://tempuri.org/"><Area>Security</Area><ErrorCode>1</ErrorCode><Message>User not found or password is incorrect (User not found)</Message></ErrorInfo></detail></soap:Fault></soap:Body></soap:Envelope>
</code></pre>
<p>ex.Message (CommunicationException) :</p>
<pre><code>Server returned an invalid SOAP Fault. Please see InnerException for more details.
</code></pre>
<p>ex.InnerException.Message (XmlException) :</p>
<pre><code>End element 'Fault' from namespace 'http://www.w3.org/2003/05/soap-envelope' expected. Found element 'detail' from namespace ''. Line 1, position 444.
</code></pre>
http://stackoverflow.com/questions/1768185/cant-call-a-webservice-method-using-soappy0Can't call a webservice method using SOAPpy artdanil2009-11-20T03:35:42Z2009-11-20T11:49:11Z
<p>I am trying to call a webservice using SOAPpy:</p>
<pre><code>from SOAPpy import SOAPProxy
url = 'http://www.webservicex.net/WeatherForecast.asmx'
server = SOAPProxy(url);
print server.GetWeatherByPlaceName('Dallas');
print server.GetWeatherByZipCode ('33126');
</code></pre>
<p>The server call fails:</p>
<pre><code>Traceback (most recent call last):
File "soap_test.py", line 6, in <module>
print server.GetWeatherByPlaceName('Dallas');
File "C:\usr\bin\Python26\lib\site-packages\SOAPpy\Client.py", line 451, in __call__
return self.__r_call(*args, **kw)
File "C:\usr\bin\Python26\lib\site-packages\SOAPpy\Client.py", line 473, in __r_call
self.__hd, self.__ma)
File "C:\usr\bin\Python26\lib\site-packages\SOAPpy\Client.py", line 387, in __call
raise p
SOAPpy.Types.faultType: <Fault soap:Client: System.Web.Services.Protocols.SoapException: Server did not recognize the value of HTTP Header SOAPAction: GetWeatherByPlaceName.
at System.Web.Services.Protocols.Soap11ServerProtocolHelper.RouteRequest()
at System.Web.Services.Protocols.SoapServerProtocol.RouteRequest(SoapServerMessage message)
at System.Web.Services.Protocols.SoapServerProtocol.Initialize()
at System.Web.Services.Protocols.ServerProtocol.SetContext(Type type, HttpContext context, HttpRequest request, HttpResponse response)
at System.Web.Services.Protocols.ServerProtocolFactory.Create(Type type, HttpContext context, HttpRequest request, HttpResponse response, Boolean& abortProcessing): >
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1765891/very-basic-question-about-submitting-data-to-api-using-soap-php0Very basic question about submitting data to API using SOAP & PHPpg2009-11-19T19:25:50Z2009-11-20T08:28:23Z
<p>Before I ask my question I want to thank everyone on stack overflow. I'm really amazed at how helpful everyone is and how much I've learned just in the past year or so from asking questions when I'm confused.</p>
<p>I'm trying to use the recordSale function on this API for someone my work does business with, it's a way to record sales (hence the name):</p>
<p>url: <a href="https://secure.directtrack.com/api/soap.php#" rel="nofollow">https://secure.directtrack.com/api/soap.php#</a>
wsdl: <a href="https://secure.directtrack.com/api/soap.php?wsdl" rel="nofollow">https://secure.directtrack.com/api/soap.php?wsdl</a></p>
<p>Name: recordSale
Binding: DirectTrackWebServicesBinding
Endpoint: <a href="http://secure.directtrack.com/api/soap.php" rel="nofollow">http://secure.directtrack.com/api/soap.php</a>
SoapAction: <a href="http://secure.directtrack.com/api/soap.php/recordSale" rel="nofollow">http://secure.directtrack.com/api/soap.php/recordSale</a>
Style: rpc
Input:
use: encoded
namespace: <a href="http://soapinterop.org//" rel="nofollow">http://soapinterop.org//</a>
encodingStyle: <a href="http://schemas.xmlsoap.org/soap/encoding/" rel="nofollow">http://schemas.xmlsoap.org/soap/encoding/</a>
message: recordSaleRequest
parts:
client: xsd:string
password: xsd:string
order_id: xsd:string
sale_amount: xsd:double
campaign_id: xsd:int</p>
<p>Output:
use: encoded
namespace: <a href="http://soapinterop.org//" rel="nofollow">http://soapinterop.org//</a>
encodingStyle: <a href="http://schemas.xmlsoap.org/soap/encoding/" rel="nofollow">http://schemas.xmlsoap.org/soap/encoding/</a>
message: recordSaleResponse
parts:
return: xsd:int</p>
<p>Namespace: <a href="http://soapinterop.org//" rel="nofollow">http://soapinterop.org//</a>
Transport: <a href="http://schemas.xmlsoap.org/soap/http" rel="nofollow">http://schemas.xmlsoap.org/soap/http</a></p>
<p>So I am trying to set up the php for this and I wrote:</p>
<pre><code>$client2 = new SoapClient("http://secure.directtrack.com/api/soap.php?wsdl", array('trace'=> true));
$results2 = $client2->recordSale(array(
"client" => 'my work's client #',
"password" => "password",
"order_id" => "2",
"sale_amount" => "1000",
"campaign_id" => "16",
"affiliate_code" => "CD35",
"date" => "2009-11-17",
"sale_status" => "",
"optional_info" => "fsq2",
"misc" => "9",
"record_lead" => "1"));
echo "<pre>";
print_r($results2);
echo "</pre>";
</code></pre>
<p>And the return value that gets printed is the number "1". The thing is that this "1" doesn't change if I change the password or leave out required fields. Am I going about this in entirely the wrong way?</p>
http://stackoverflow.com/questions/1257627/is-there-a-fiddler-plugin-for-binary-xml1Is there a Fiddler plugin for binary XML?Richard Berg2009-08-10T22:38:04Z2009-11-20T04:36:34Z
<p>Fiddler has <a href="http://www.fiddler2.com/Fiddler2/extensions.asp" rel="nofollow">many useful extensions</a>. However, I can't find one that understands WCF's binary-encoded SOAP envelopes. (Content-Type: application/soap+msbin1)</p>
<p>Suggestions for comparable (non-Fiddler) tools are welcome too.</p>