soap

Python SOAP document handling

I've been trying to use suds for Python to call a SOAP WSDL. I just need to call the service programmatically and write the output XML document. However suds automatically parses this data into it's own pythonic data format. I've been looking through the examples and the documentation, but I can't seem to find a way to return the XML doc...

Is SOAP obsolete?

What is the current best practice for implementing Web Services? Is it still with SOAP? Windows Communication Framework is seemingly better, but isn't it SOAP under the covers? ...

SOAPMessage GZIP implementation

I want to implement GZIP for SOAPMessage. Below is normal SOAP client call code - // Create a new SOAP message from the factory and set the SOAPAction header. MessageFactoryImpl factory = new MessageFactoryImpl(); SOAPMessage soapMsg = factory.createMessage(); // Set the SOAP envelope contents to our ebXML DOM. SO...

.NET consume php web service

I have php web service. and can consume it from php client. But problem occurs when i try call from c# win app. Do you have any ideas.. Problem is it returns null, also i cannot see it from object browser My wsdl file <?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1=...

"-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data" not called...

Hi All , Have a look to this code snippet:- -(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { [webData setLength: 0]; } -(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data { NSLog(@"Recieving Data..."); [webData appendData:data]...

xml file in soap

My last question about soap series :) Now, i have xml file which must be send to the soap web service. Do i have to attach it as file to request OR send as method parameter in request? What is the best approach? By the way size of file is variable.it can be reached 10mb sometimes. Thanks ...

Custom Headers in WCF

Hi, I've want to add specific custom headers on my wsdl for incoming soap message so i've added the required tags into the header node of the web.config like below: <headers> <Tag>Value</Tag> </headers> However, this works fine if the 'Value' in the custom tag is set to 'Value' when I change this value the service kicks it out g...

What is the best way to access SOAP WebServices from portable native code?

I need to access a SOAP webservice (written in .NET with MS SQL backend, FWIW) from several different platforms, so my common denominator is native C++. Is there a portable library for this or I should roll my own solution? ...

Is REST suitable for document-style web services?

RESTful and document/message-style seem to be two trends to implement web services nowadays in general. By this, I mean REST vs SOAP, and document-style vs RPC-style. My question is how compatible REST is with document-style web services. From my limited knowledge of REST, it is utilizing http GET/POST/PUT/DELETE verbs to perform CRUD-l...

Whats wrong with the following JIRA Jelly + Soap Script?

anyone knows what wrong with the following Jira, Jelly + Soap script? Assume the WSDL file is correct, since it works with soap directly. <JiraJelly xmlns:jira="jelly:com.atlassian.jira.jelly.enterprise.JiraTagLib" xmlns:core="jelly:core" xmlns:soap="jelly:soap"> <core:new var="endpointvar" className="java.lang.String"> <core:a...

How to create a a webservice proxy in an iPhone application

Hello all, I want to call a webservice from an iPhone application. How to create a proxy for a webservice, as visual studio does it for us. Also Is there any other way around to access the SOAP XML webservice. ...

Is there a Fiddler plugin for binary XML?

Fiddler has many useful extensions. However, I can't find one that understands WCF's binary-encoded SOAP envelopes. (Content-Type: application/soap+msbin1) Suggestions for comparable (non-Fiddler) tools are welcome too. ...

Array values disappear in PHP SoapClient call to Cisco phone system.

I am attempting to consume a SOAP service provided by our Cisco phone system (documentation), to get the current status of a given set of phones. I have an array of phone names, which I'm trying to pass to the service, however, the values of the array are being eaten somewhere Array of items like so: $items = array( 0 => "SEP0004F2...

10001 Internal Error when trying to capture an authorization from PayPal with Activemerchant

I've successfully made authorized a card, and it shows up in my sandbox transaction log. When I try to capture using that authorization (with activemerchant, which uses SOAP), this is the XML it sends to the server: <?xml version="1.0" encoding="UTF-8"?> <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w...

Parse and query SOAP in C#

I am trying to parse a heavily namespaced SOAP message (source can be found also here): <?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&gt; <soapenv:Header> <ns1:Transac...

soapUI version problem

My code was earlier working with soapUi2.5. but when I started working with soapUI2.5.1, I started getting this error. com.eviware.soapui.impl.wsdl.mock.DispatchException: Missing operation for soapAction [http://SEWSI.ServiceContracts/2008/09/ReceiveSubscription%5D and body element [{h ttp://SEWSI.ServiceContracts/2008/09}ReceiveSubscr...

Why do some of my SOAP::Data requests not get a response?

I am using to store data in table using SOAP::Lite and SOAP::Data. I am facing the issue where if I send 5 requests, I am only getting 2 or 3 or sometimes zero responses. What is the issue? How can I resolve this? ...

Flex - SOAP Variables in Network Monitor but not making it to event handler....

I am querying a 3rd party web service and not all the data seems to be making it to the event handler. When I view the request/response in the Network Monitor I see a collection of data objects each containing two string variables (name, url) and two arrays (counts, breakdown). When the result handler receives the data and I view it in d...

How does YouTube's flash player retrieve its media?

I'm trying to build a flash widget which will grab videos stored on my server. How does one do this to allow for maximum scalability? I want to emulate what YouTube does. Does it make a SOAP request? What kind of server is it talking to? An application server? A server that only serves videos? ...

How to call a web service with no wsdl in .net

I have to connect to a third party web service that provides no wsdl nor asmx. The url of the service is just http://server/service.soap I have read this article about raw services calls, but I'm not sure if this is what I'm looking for. Also, I've asked for wsdl files, but being told that there are none (and there won't be). I'm usi...