soap

Ruby Soap XML-RPC call very slow !

Hi everybody, I am using the Soap RPC lib to connect 1 client to 1 server (in different PC on the same network) in the server: require "soap/rpc/standaloneServer" ... class SyncServer < SOAP::RPC::StandaloneServer def initialize(*args) super add_method(self, 'remote_method') end end in the client: driver = SOAP::RPC:...

How i can change <s:Envelope to <SOAP-ENV:Envelope if i use wcf

Hi, i have an, i hope it is an simple, problem with wcf and the soap xml response of my service. How i can change i use .net 4.0, c#, basicHttpBinding and messagecontracts thanks in advance br waldi ...

Spring, CXF: Loose coupling between web service client and server

I have two webapps: a web-service client and a server (both CXF-based, using the Simple Front-End approach). This is the server definition: <simple:server id="server" bindingId="http://schemas.xmlsoap.org/soap/" address="/thingy" transportId="http://schemas.xmlsoap.org/soap/" serviceName="cs:thingyService" serviceClass="com...

Java classes to generate SOAP requests from wsdl

Hi there, I am looking for a way to easily generate SOAP requests from a wsdl file. for example, something like this: WSDLObject myWsdl = new WSDLObject("http://www.whatever.com/myService?wsdl"); SOAPRequest myRequest = myWsdl.generateSOAPRequest(); Is there anything like that? I am trying to do it dynamically via another applicatio...

How to modify a WCF message header's MustUnderstand using ClientInspector

I am calling a non-WCF service from a WCF client. The WCF client includes the "MustUnderstand" header attribute set to "1". Here's a typical SOAP request: <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"&gt; <s:Header> <o:Secu...

Error importing in Delphi 2010 WSDL generated from ColdFusion

Hello -- I'm a novice with SOAP and WebServices. Trying -for testing purposes- to import in RAD Studio 2010 (Delphi Update 4) any very simple WSDL produced from ColdFusion 9 WebService, I received immediately error message "syndicate.cfc SoapBindind is not a valid component name" Details [50074F4C]{rtl140.bpl } Classes.TComponent.Se...

Using jQuery in Apple Instruments, UI Test Automation

Hi, Is there a way to use jquery when scripting in Apples UI Test Automation. When, in Intruments, I try: #import "jquery-1.4.2.js" I get a warning regarding undefined object window, which is expected since there are no window objects defined, like it would have been in a browser. But, when I try the same on the Rhino JavaScript eng...

Create SOAP Request from JWSDL

Hey there, I have been working with JWSDL to allow me to programatically work with WSDL files. I now want to create SOAP requests that can be sent to the server. How do I generate these requests from the JWSDL classes? any ideas? thanks! ...

WSDL - soap:operation/@soapAction - needs to be unique?

In WSDL1.1, does each binding/operation/soap:operation/@soapAction have to be unique inside it's containing binding? If not, how does the SOAP/WSDL server know which "matching" operation to invoke? ...

Who Needs (SOAP) Reliable Messaging?

I spotted a very good argument against protocol-based (viz. SOAP) reliable messaging. Is this a flame-war topic, or is there a fair degree of consensus about this? I think the author's "Netherlands" case-study ought to have included an in-order example as well. p.s. I wish google had a "contrast" tool, that finds sites with opposing p...

SOAP wev service on android

Hi. I am am trying to connect to a SOAP web service using ksoap2 library. I have read a bunch of docs about it, but i am stuck as my request is not an ordinary one. I need to specify some headers prior to sending the request. when is use a soap client to test the webservice i also need to put this in the soap enveope header section: ...

Passing pdf data through REST

How to pass the whole pdf content as response in Restful web services using java platform. I tried with converting the responses to String and byte array. First case, got registered expression error. In Second case, getting unexpected results. ...

Custom faultcode using Axis2

Hi I've created a webservice and used Axis2 to generate all "skeleton" java classes. Then I of course implemented the service operations myself. In the implementation, I can throw a MyException which is then caught by the generated classes and converted to an AxisFault object, which in turn is converted to a soap fault (deep down in th...

Reading Web service, I have a WSDL

I am normally used to using JSON/REST. I have been given access to a web service with WSDL file that I need to use to read data. I have no idea where to start What is the quickest easiest way to get JAVA code up and running that can query this web "service"? ...

What public APIs are provided by Governments to the public?

I stumbled across NOAA's SOAP Service and it got me thinking. What other eGovernment services are provided to Business and the general public by Governments? I know the United States has a lot APIs, but what about other governments like the European Union. I am interested in not just SOAP but any Remote Procedure Call (RPC) service ...

Java library to form and parse soap messages

I've tried Axis 2. It dies when trying to parse my WSDL from Seibel. I don't want anything that requires a container (Metro). All I want to do is parse and form SOAP messages. I don't want them sending the messages on my behalf. I'm already using HttpClient for that and am happy with it. ...

How do I see the actual XML generated by PHP SOAP Client Class?

Consider this example SOAP Client script: $SOAP = new SoapClient($WDSL); // Create a SOAP Client from a WSDL // Build an array of data to send in the request. $Data = array('Something'=>'Some String','SomeNumber'=>22); $Response = $SOAP->DoRemoteFunction($Data); // Send the request. On the last line, PHP takes the arguments from th...

No endpoint mapping found

Hi I created my first web service. It work fine but now I need to solve some special situation. First situation is mention here http://stackoverflow.com/questions/3441183/spring-web-services-exception-skipping-exceptionresolver but there isnt solution which can help me. Second situation is the client send me correct SOAP message but mak...

Object allocations instrument on iphone

Hey All, I have problem with the way I treat the memory management in iphone..please please help me..I am running out of ideas..I tried to play with the below method but it started leaks when I am trying to allocate the strings for the objects (for example allocation for sid,first_name etc)..I can't figure out how to do..and this is the...

AJAX SOAP request - Safari changing POST to OPTIONS

I'm trying to send a SOAP action from a js running on my local machine to another device on my network. I notice that Firefox is successful, but Safari changes the header to say OPTIONS instead of POST. Any ideas? ...