soap

Php soap problem

simple soap program in php where i can send user name and password to soap server and it return Boolean value ...

Visual Studio Add Service Reference

Does anyone have anything against using this vs. creating your own proxy classes? Also, does anyone have a good overview of using Web Service Reference? I searched the net but couldn't find any good articles. ...

Are there any tools for debugging SOAP requests that run on Linux?

I'm looking for a tool that can intercept the SOAP requests generated by an application. Is there such a tool or should I just use a packet sniffer? ...

How to sign an Amazon web service request in .NET with SOAP and without WSE

The Amazon Product Advertising API (formerly Amazon Associates Web Service or Amazon AWS) has implemented a new rule which is by August 15th 2009 all web service requests to them must be signed. They have provided sample code on their site showing how to do this in C# using both REST and SOAP. The implementation that I’m using is SOAP. Y...

Get a DataSet returned from SOAP as XML?

We have a .NET 2 SOAP web service meant for consumption by another app that is internal to our organisation. The web service returns a .NET dataset like so: public System.Data.DataSet GetStatementFor(string contractList, System.DateTime startDate, System.DateTime endDate) Now in one of the use cases it is necessary to get to the Dat...

SOAP::Lite takes filedescriptor but doesn't release it

Hi all, I'm calling a .net webservice from Linux using Perl (5.8.7). I'm using the SOAP::Lite library. The basic proof of concept worked fine and now I'm trying it in the real world where I have to call the webservice many times. Now it looks like the web service call opens a file but does not release the file descriptor. The default m...

Simulate/Generate a SocketTimeoutException in a servlet

Hi all, I'm working a web project that use: - Java - Jetty - Fitnesse tool - etc.. I have a difficulty to simulate/generate a SocketTimeoutException, more info below: The use-case-simplified: I wrote a API that make calls to a host(WebServer). In the source-code if I receive a RemoteException and is a SocketTimeoutException, I nee...

What is XRPC, how do I use it

I am trying to connect to Thomson Reuters Researcher ID service using XRPC. My questions are as follows: 1) What is XRPC? 2) What do I need to do to send the appropriate data ...

SOAP Extension Stream Empty After Serialization

I have had this problem for the last day. I have created a SOAP Extension following the MSDN articles and a load of blog posts but I just can't get it to work. Ok Some code: public class EncryptionExtension : SoapExtension { Stream _stream; public override object GetInitializer(Type serviceType) { return typeof(Encr...

Validating SOAP messages

I can't get any SOAP messages to validate as valid XML. For example, the SOAP message below I took off of Wikipedia and it failed the Validome validator (http://www.validome.org/xml/validate/). Is the validator wrong or is there a mistake in the SOAP file? If the validator is wrong can you suggest another? It should take schemas into a...

Restful vs Soapbased

Friends, If I need to make a choice between using Restful versus Soap based web services, what factors should be considered in making this choice. Assuming that my applications can support both Restful and Soap based web services - what pros and cons need to be considered ? Thanks, avajurug ...

can i use http with soap?

Allow me to be more specific... If I want to send files, but am required to wrap them in SOAP, wouldn't I use http? I am seeing a surprisng lack of info on this online. ...

.NET soap client call

Hi everybody, we have windows app. which expected to connect different soap web services. Service urls are added dynamically to database.I tried "Add Web Reference" feather but problem is it accepts only one url. Can any one suggest different approach?or link to source Thanks ...

Soaplib functions with default arguments

I have to write soaplib method, that has many arguments. The idea is that the user should able able to choose, which arguments he wants to provide. Is that even possible? I know it is possible in python generally, but there is an error, when i try to set it up like normal python method with default arguments. ...

Wcf and soapHeaders

In the past I've used a soapheader in order to send in a userId to a webservice, but in WCF I cannot see how to do this. Any ideas? ...

Trying to capture a SOAP request in Classic ASP

I am a classic ASP developer. I know, I should learn .NET, but only have a couple more years left at this. I would consider myself advanced. I have a third party application that will export data to a web service if I develop it. I am curious to see I can build it in ASP rather than having to learn .NET. My problem is I haven't figured...

Amazon S3 client based on SOAP

I need a Win client for Amazon S3 that utilizes SOAP protocol for all transactions. As far as I see most solutions are REST based rather than SOAP. Any ideas? EDIT: Just want to clarify: please do not suggest using REST instead. I am perfectly aware of what can or cannot be done with either protocol. So if I ask for this specific solu...

How to message a ESB using jelly + soap

Ive been looking for examples how to send messages using jelly + soap but they are very scarce. Anyone can provide a template of how to do this? ...

How to visualize sent XML stream with a CXF generated client

Hi ! I would like to be able to see the XML Stream generated by my CXF generated from WSDL client. Is there a way to do this ? For example, I'm building my request with Java objects, and I would like to see the XML stream built by CXF before it sends it to the server. Thank you for your answer ! ...

JSON or SOAP (XML) ?

I'm developing a new application for the company. The application have to exchange data from and to iPhone. Company server side uses .NET framework. For example: the class "Customer" (Name, Address etc..) for a specific CustomerNumber should be first downloaded from server to iphone, stored locally and then uploaded back to apply cha...