Simple Object Access Protocol (SOAP) is a protocol specification for exchanging structured information in the implementation of Web Services.
0
votes
0answers
17 views
PHP: How do I make a SoapClient request with credentials and get the data?
I'm new to SOAP and SoapClient.
I'm making a SOAP request to a WSDL server. It requires credentials for userName and Password. I'm told I need to first do this and then make the request to get the ...
0
votes
0answers
8 views
SOAP request with cURL, invalid response
I am sending a SOAP request using cURL on Mac OS X to a server.
The request and response format required for the server are described in the doc snippet below:
Based on this description I created ...
0
votes
0answers
11 views
Difference between REST and SOAP APIs in WSO2 API Manager
When I publish a REST API using context “/configuration” and version “v3.0”, and Production URL “myhost.com/configuration/v3.0”, and make a call to ...
0
votes
0answers
8 views
suds.webfault with script but not commandline
I'm using Python 2.7 on Ubuntu 13.04. I need to hit a SOAP API and have run into a problem when trying to hit one of the services. Here is the wsdl url: ...
0
votes
0answers
10 views
Find all unread emails using Exchange Web Service 2010 then mark as read?
I'm using Exchang Web Services 2010 to try and read all unread emails from a mailbox, then mark them as read.
I'm basing off this example:
...
0
votes
0answers
15 views
Bad soap formatting in VS2012?
Basically, here is what my soap (generated by adding a Service Reference via wsdl in VS2012) looks like:
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope
...
0
votes
0answers
10 views
WCF remove h:Security section from soap header
I'm calling a soap 1.2 web service and it requires the credentials are sent within the Security element of the SOAP Header. I'm using a custom binding as follows.
<customBinding>
...
0
votes
1answer
9 views
SOAP Webservice call from Java gives “Object reference not set to an instance of an object”
I have a requirement where I call a SOAP based web service from Java using Axis2 from eclipse. The web service code is in C#, with a BasicHttpBinding.
But when I call the method from the client stub ...
0
votes
0answers
10 views
passing file attachments in SOAP using suds
We are working on a project where the python client makes RPC call on a Java method String uploadFile(String name, String Id)
Now, this client code has to send an attachment!
def sendFile(self, Id, ...
0
votes
0answers
5 views
CURLOPT_WRITEFUNCTION to get xml content
I have used
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);
and
size_t write_data(void *ptr, size_t size, size_t count, void *stream)
{
printf("%*.*s", size * count, size * count, ...
0
votes
0answers
35 views
How to generate an empty method? [duplicate]
I have xsd file with elements, I generate java-classes from them. I have getters and setters for elements in these classes. Is it possible to add some text in the xsd-file, to just have an empty void ...
0
votes
0answers
21 views
Soap method returns file as result
I have following web service definition as result (http://www.tebyan.net/WebServices/Library/Library.asmx?op=GetBookByMetaData):
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: ...
1
vote
1answer
18 views
Connect to sample SOAP 1.1 with PHP
Hello i need to connect to SOAP web services with password, username and SourceId in php.
the SOAP request is:
POST /webservices/AgentOnlineReservation.asmx HTTP/1.1
Host: 54.228.189.53
...
0
votes
1answer
19 views
WSO2 ESB adding prefix to header
I try to use the WSO2 ESB with the SAP Solution Manager Webservice as an endpoint.
For sending a message to the Webservice I need to modify the SOAP Header.
While searching with google I found out ...
0
votes
0answers
11 views
Java SAAJ Basic Authentication
I have a basic SOAP service endpoint, actually SAP ECC, presenting a service. I have tested the service using SOAPUI 4.5, and it works ok using HTTP Auth, preemptive by the looks of things. I see an ...