I'm using nusoap to connect to a soap webservice. The xml that the class sends to the service is constructed from an array, ie:
$params = array("param1" => "value1", "param2" => "value1");
$client->call('HelloWorld', $params, 'namespace', 'SOAPAction');
This works fine. A multidimensional array also constructs a nice nested xml messag...
What is the best way to download all of the WSDL files exposed by a WCF service?
For example, the root WSDL file references the following other WSDL files:
<xsd:import schemaLocation="http://localhost:80/?xsd=xsd0" namespace="http://tempuri.com"/>
<xsd:import schemaLocation="http://localhost:80/?xsd=xsd1" namespace="http://tempuri.c...
I have the SOAP request in an XML file. I want to post the request to the web service in .net
How to implement?
Thanks
Senthil
...
I am adding a method to a SOAP service. I would like this method to be able to return a map. More specifically it is map of lists (vectors/arrays). How would I capture this in its WSDL?
...
Hello all,
We are building an application which stores data in an S3 bucket. However, we are having problems with the PutObject method. Here is the xml packet we are sending out:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml...
How do you calculate the Content-Length is a soap message? Is it the number of chars in the whole soap message?
...
I need to generate a new WSDL file in the document/literal style based on an old RPC/encoded one. I've viewed the other WSDL questions here - and read http://www.ibm.com/developerworks/webservices/library/ws-whichwsdl/. This suggests that the document/literal WSDL should have an additional part - but my old RPC/encoded document has suc...
I have a Java SOAP data service which sits on top of a Sybase database which, for reasons out of my control, has unreliable performance. The database is part of a vendor package which has been modified by an internal team and most of the issues are caused by slow response times at certain times of the day.
The SOAP service provides dat...
I have written a small app that retrieves data from the National Digital Forecast Database NDFD, and am currently receiving the XML response correctly. I have noticed that although I can use the WSDL2Java tool in order to create the interface in order to request the weather data, when I actually use the interface to get the weather data...
Hi
I have stored the SOAP response in the SQL DB .Now i want to send the Response to the Callback service.The response have the Reply TO address.How to implement that..
Thanks
Sek
...
I'm trying to trouble shoot a web service client in my current project. I'm not sure of the platform of the Service Server (Most likely LAMP). I believe there is a fault on their side of the fence as i have eliminated the potential issues with my client. The client is a standard ASMX type web reference proxy auto generated from the se...
In through php_info() where the wsdl cache is held (/tmp), but I don't necessarily know if it is safe to delete all files starting with wsdl.
Yes, I should be able to just delete everything from /tmp, but I don't know what else this could effect if I delete any all wsdl files.
...
I have a server process built in Delphi/C++Builder with RemObjects SDK which claims to support SOAP requests.
What's the quickest and easiest way of testing out the SOAP support? I'd prefer not to have to learn a new language/install a new IDE/spend more than a day...
To clarify this, I'm already connecting to the server happily using ...
In working with another company I'm trying to write a SOAP client to talk to their service. The service itself has no wsdl-files but I've managed to successfully write my own proxy class inheriting from SoapHttpClientProtocol. Basic methods that only return an integer or a single value is not a problem but when I try to make a method tha...
I have a C# application that is a client to a web service. One of my requirements is to allow capturing the SOAP that I send, so that if there is a problem, I can either fix the bug, or demonstrate that the problem is in the service I am calling.
My WebReference proxy service class derives from System.Web.Services.Protocols.SoapHttpCli...
Could some one tell me how to capture SOAP messages passed between the client and the server webservice applications.
I tried using both tools.
pocket soap
http://www.pocketsoap.com/pocketsoap/
Fiddler
http://www.fiddlertool.com/fiddler/
I may miss some settings, it is not working for me.
help will be more appreciated.
...
Hi Guys,
Does anybody know if there is a way using java to pass all the XML content of SOAP Envelope to a String?
Thanks,
...
Is tilde a legitimate character in an XML SOAP message? I get a SAXParseException:Content not allowed in prolog. I included most of the SOAP message just in case I'm barking up the wrong tree.
POST /... HTTP/1.0
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: ...
I need to design a SOAP api (my first one!). What are the best practices regarding errors returned to the caller.
Assuming an api as follow
[WebMethod]
public List<someClass> GetList(String param1)
{
}
Should I
Throw an exception. Let the SOAP infrastructure generate a SOAP fault -- and the caller would have to try/catch. This is n...
I hope this question is not as cryptic as the other ones I do.
I have two components:
Web site that recieves Soap Envelopes and Soap Faults
WinServices that sends Soap Envelopes.
Ok, so the winservices sends SoapEnvelopes and if an error occurs it returns the Soap Envelope with a Soap Fault Inside.
Is there a way to serialize the Soa...