soap

SOAP request in Java works locally but not on server

I have a webapp that sends a SOAP request to a 3rd party server. When the request is made on my local computer it works without a problem, but when I deploy my application to my server I get an error with the following causes: com.sun.xml.messaging.saaj.SOAPExceptionImpl: java.security.PrivilegedActionException: com.sun.xml.messaging.s...

Is true SOAP interoperability a myth?

I mean, true true interop: from Java to .NET, from PHP to Java, etc. I'm asking because our powers that be want us to implement public-facing API with SOAP web services, and I'm trying to make a strong point in favor of RESTful XML/JSON API. Their reasoning is very much brainwashing-induced: SOAP is a standards-based protocol (let a...

SOAPpy, C# and object passing

Hi! I'm trying to write a SOAPpy client to my C# WebService. It is arriving as null :( How can I get any debug from the C# SOAP parser that WebService uses? This is what Python sends: <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC="http://...

JAX-WS return empty lists

I'm new in web services. I have faced some problem. At the server side i'm using spring-ws. At the client side i'm using jax-ws. With wsimport tool i have generated java classes according to my wsdl. Everything works fine, but for some reason jax-ws does not parse arrays and list correctly, all lists are empty I'm absolutely sure, that...

What are the disadvantages of using SOAP services?

What are the disadvantages of using SOAP services? ...

Dynamic WSDL Implementation in C#

I am relatively new to web services in .Net, so I apologize if this is a newbie sort of question. I have found numerous resources on how to implement web services in a .Net project, but all of them seem to involve static definition of the exposed methods. While this may be suitable for some applications, it does not fit the bill for wha...

How do i view the "raw xml" output from nusoap?

I have a generic function that I use to pass SOAP commands. I need to view the RAW XML data that is being sent to the server for diagnosing an error. How do i do that? ...

Problem with WebServices using EJB. The error is: "..does not contain operation meta data.."

Hi, I got an error as I mentioned above. My application has EJB WebServices, developing with MyEclipse and running on jboss4.2.2.GA. I use Eclipse's Web Services Explorer to invoke a WSDL operation. When I enter the parameters for the wsdl and click Go to invoke, I am getting this error in the SOAP Response Envelope; <faultstring>Endp...

Does jmeter timeout SOAP requests

While sending WebService(SOAP) requests, I occasionally receive the response below, and always for requests that take more then 60 seconds to complete. Thread Name: Test Group A 1-1 Sample Start: 2010-08-24 11:56:23 MDT Load time: 60186 Latency: 0 Size in bytes: 0 Sample Count: 1 Error Count: 1 Response code: 000 ...

Consuming XBOX Live Web Services with Java SOAP client

If it is SOAP, in theory it should be very possible, but have anyone tried this in practice. Basically I need to write some Java code to get the gamertag for an authenticated windows live id. Microsoft support pages start by saying that Microsoft environment and .Net is required: https://xds.xbox.com/docs/1033/xbox360sdk/ws_requirements...

Delphi SoapServer application

Is it possible to convert Delphi SoapServer application to use TCP/IP? Regards Sandeep ...

WCF Method that receive GET AND SOAP Requests

i created a WCf service with a method that can receive GET requests using WebGET attribute, i want the same method to receive Soap calls too (that when the programmer does a Service reference to the WCF, he will be able to call the method). my interface is: [ServiceContract] public interface IService1 { [OperationContract] [Web...

Consuming a SOAP Web Service

I'm writing a small sample iphone application just to consume a SOAP Web service. Can anyone point me out how to get started? or any tutorial could help? I've already know before how to connect via the web using NSURLConnection and get the response either XML or JSON. This is my first step to get hands dirty when connecting to a SOAP we...

SoapClient: how to pass multiple elements with same name?

Hello! I have following code: $telnums = array(10, 20, 30); $obj = new StdClass(); $obj->telnums = new StdClass(); foreach ($telnums as $telnum) { $obj->telnums = $telnum; } call_user_func(array($this->client, 'createDomain'), new SoapVar($obj, SOAP_ENC_OBJECT)); There $this->client is an instance of SoapClient class. And it ge...

NuSOAP PHP web service and .NET WebService reference - problem

Hello I have created a PHP SOAP WebService with NuSOAP. I add a WebReference from C# application. I enter the URL of the WSDL, I can see methods in the wizard but no proxy code is generated. When I do update web reference, I get error message box: The custom tool 'MSDiscoCodeGenerator' failed. Unable to import binding 'XXXSoapBinding' ...

Using Groovy to send Soap envelope

Is there any way to send a Soap envelope using Groovy ...

jQuery AJAX call to WCF service with custom principal.

I have successfully created a WCF service using the webHttpBinding with no authentication or security. I can call my function over and over and it returns the value as expected. Now I created a custom IAuthorizationPolicy, UserNamePasswordValidator and IPrincipal. I went back to wsHttpBinding (default) and did a normal service refer...

Iphone SOAP request step by step tutorial

I've been looking here for some answers to this question and have found some resources but not really found the "spot on" tutorial. So i would be grateful for any posts of tutorials on howto get SOAP working in an iphone app. I have seen that it can be done using NSURLconnection. But as I am pretty new to Objective C programming i wo...

how to send a multipart post (to send images) as a soap packet ?

Hi Everyone, I want to upload images to some server using multipart post request. I am using PHP/cURL to send soap request envelopes Any help would be very appreciated. Amjad ...

Writing a SOAP service on Linux - tools, help needed

I need to write a SOAP service for Linux (CentOS). I need to do this using Lazarus/FreePascal. The service needs to be a binary (daemon) that runs in the background. Questions: 1. Is this possible (as a standalone executable)? 2. If not, what are the alternatives? 3. How do I start? 4. What additional tools/libraries do I need? ...