soap

Creating a "customized" soap client in flex

Hi, I am working on a web-service that says it utilizes "SOAP" but upon closer inspection, it's very very different from the standard soap request/response structures i have seen everywhere else. I was able to talk to the service with javascript (using xmlhttprequest) and parsing the result manually. Ive tried doing it with flex, but c...

Alternatives to sending an image in base64 via document literal SOAP

I'm currently modifying a document literal SOAP service for a business app which transfers data about customers backwards and forwards. A new requirement to transfer scanned document images has just been identified. The problem I have is that the proprietary language I use does not support SOAP attachments. The images being transferred...

Is there a SOAP::Lite equivalent library in ruby?

I want to build a SOAP client using ruby. I tried using the soap4r library to generate ruby classes out of the WSDL file, but the issue with this was that all the methods it generated were of optional kind, instead of NAME/VALUE pairs. Given that some methods have a very large number of arguments, many of which are optional, I would pref...

What is excatly the technology stack defining Web APIs?

What are the abstract levels of technology that are used to build a Web APIs such as GData? ...

SOAP with Attachment (SwA) in C#

Hi all, I need to use .NET in order to consume a JAVA written SOAP service which expects simple MIME attachments on some of its method. Does anybody know how to accomplish it? I could not find any information about using WCF or even WSE clients with such attachments. Thanks! ...

How can I change SOAP element names to reserved words in Delphi?

I use this line to register a class with the Delphi registry for Soap elements: RemClassRegistry.RegisterXSClass(ToHeader, ADD_URI); In the Soap request message, I see this: <NS1:ToHeader> ... </NS1:ToHeader> Is it possible to change the class registration so that it renders the element with a different name, like: <NS1:To> ... ...

silverlight2 Message class missing CreateBufferedCopy method

I am trying to read a soap response twice and I got the error message already read ... There are some examples how to avoid this BUT ... they are using the CreateBufferedCopy method and I cannot find it on the silverlight2 Message object: Microsoft has also this sentence in the silverlight doc : http://msdn.microsoft.com/en-us/library...

methods with the same soapaction

Hi, I'm doing contract-first development of a SOAP server. The wsdl declares the same soapAction for several methods. Now svcutil produces code that declares the same value for the OperationContractAttribute.Action property of several methods. This causes a runtime error which says that every operation must have a unique action value. ...

Raw SOAP data with WebServices in C#

Hi, Where can I find the RAW/object data of a SOAP request in C# when using WebServices. Can't find it anywhere. Shouldent it be available in the HttpContext.Current.Request object ? ...

.NET WCF Can't Decode "Chunked" response.

I am calling an axis web service from WCF. The request works just fine but I get back null values. Using Fiddler I was able to determine that the response is coming base as Transfer-Encoding: chunked. This means that there are control characters in in the response BEFORE the xml. WCF does NOT throw an error. It just moves on and the...

Is there a way in CXF to disable the SoapCompressed header for debugging purposes?

I'm watching CXF service traffic using DonsProxy, and the CXF client sends an HTTP header "SoapCompressed": HttpHeadSubscriber starting... Sender is CLIENT at 127.0.0.1:2680 Packet ID:0-1 POST /yada/yada HTTP/1.1 Content-Type: text/xml; charset=UTF-8 SoapCompressed: true Accept-Encoding: gzip,gzip;q=1.0, identity; q=0.5, *;q=0 SOAPActio...

How do I add a SOAP Header using Java JAX-WS

A typical SOAP client request using JAX-WS might be FooService service = new FooService(); FooPort port = service.getFooPort(); FooPayload payload = new FooPayload(); payload.setHatSize(3); payload.setAlias("The Hat"); ... port.processRequest(payload); This generates an HTTP request content something like <?xml ... ?> <S:Envelope xml...

Handling Soap timeouts in PHP

I'm working on a project where I am verifying information from a user with a SOAP web service. I currently am taking care of errors assuming that I'm receiving responses from the web service, but also need to handle the edge cases of a service timeout or unavailability. In the case of a timeout or service unavailability, I need to prete...

ruby ssl soap error on create

When I try to create a soap object, I get a fault when I first initialize the class. I can't set driver.options["protocol.http.ssl_config.verify_mode"] = OpenSSL::SSL::VERIFY_NONE because its already faulted. Any ideas? require 'soap/wsdlDriver' => [] wsdl = "https://somesiteinhttps.com" driver = SOAP::WSDLDriverFact...

calling SQL Server Endpoint web service

I understand that SQL Server endpoint returns data using SOAP. Does anyone know if they can return JSON data? Thanks! ...

Which Amazon web services can be used with Delphi 'out of the box'?

The feature matrix for Delphi says: 'Added in 2007! SOAP features updated to support Amazon, eBay, MapPoint, and more'. I was able to build a working client, without special workarounds for the Amazon Simple Queue Service. With Amazon SimpleDB, I ran out of luck (but not because of Delphi, see here). Which Amazon web services have you ...

Is the Amazon SimpleDB WSDL for SOAP without WS-Security correct?

The SimpleDB documentation includes this example request for a ListDomains method. Note that there are Signature, Timestamp, AWSAccessKeyId and Version subelements: <SOAP-ENV:Body> <ListDomainsRequest xmlns=" http://sdb.amazonaws.com/doc/2007-11-07"&gt; <Signature>SZf1CHmQnrZbsrC13hCZS061ywsEXAMPLE&lt;</Signature> <Tim...

php5 soap client in wsdl mode how to access different svc endpoint than the one specified in the wsdl

I´m a newbie to soap with php5... I need to use a wsdl provided by a third party company, where, for testing purposes I´m supposed to use a different access address location for the service I´m needing, than the one specified in the wsdl document. Is there any way I can create my soap client in wsdl mode, and override the specified add...

How to build stand-alone SOAP web services using Delphi?

How can I build a stand-alone SOAP-based Web Services using Delphi? Must work with Delphi 2009, but it'd be nice if it worked with older ones too. The built-in WebBroker Web Services creates CGI or ISAPI. It would be nice to create a stand-alone executable that I can control from bottom to top, especially during development. ...

Using PHP's SoapClient to send UTF-16 Character to WCF Service

Hello all, My PHP application is taking user input and sending it to a WCF Web Service. Sometimes my users copy and paste from Word and get UTF-16 Characters into their message such as the "En Dash" \u2013 I get the following error when this occurs. PHP Fatal error: SOAP-ERROR: Encoding: string '\xe2...' is not a valid utf-8 st...