soap

How to delete an DeliveryURL with the EBay SOAP Interface?

My application uses the EBay-API (SOAP). I understood I can use the "SetNotificationPreferences" to create up to ten DeliveryURLs like this: <?xml version="1.0" encoding="utf-8"?> <SetNotificationPreferencesRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <RequesterCredentials> <eBayAuthToken>ABC...123</eBayAuthToken> </Requeste...

Help Soap Response using ssl basic authentication and client certificates

Hello all I'm trying to issue a simple request to a protected wsdl and web service using ssl, client certificates and basic authentication. Here's the code require 'savon' client = Savon::Client.new "https://example.com/service?wsdl" client.request.http.ssl_client_auth( :cert => OpenSSL::X509::Certificate.new(File.read("cert.pem")), ...

Report Builder 2.0 query: ElementPath with a space in a field name

I'm trying to use Report Builder 2.0 to query a Sharepoint List using an XML data source. I explicitly list the fields I want returned because otherwise I don't get all of them, due to some of them being null sometimes. However, one of the fields I need has a space in its name. If I do a query where I don't explicitly specify fields, ...

Need to see SOAP messages for client talking to external web service - how to? (Eclipse/Netbeans/IDEA ok)

I have a situation where I have to write a client in Java against a very picky external web service (over https) and I can talk to the web service through the Web Services Explorer in Eclipse JEE. Unfortunately I cannot get the client to ask properly so I'd really like to see the SOAP messages going back and forth. Being new to web ser...

How to Determine the WSDL that will be Emitted for a Given Java Web Service?

Please tell me how to write wsdl file of service developed in java. For example: package fromjava.server; import javax.jws.WebService; import javax.jws.WebMethod; @WebService public class AddNumbersImpl { @WebMethod(action="addnumbers") public int addNumbers(int number1, int number2) { return (number1+number2); } } this i...

Using Zimbra SOAP API in Python

I'm trying to use the Zimbra SOAP API from Python to programmatically modify & cleanup my contacts but I'm having trouble getting started. What I have so far is: from SOAPpy import SOAPProxy url = 'https://zimbra/service/soap' auth = {"account": "xxxxx", "password": "xxxxx"} zimbra = SOAPProxy(url, 'urn:zimbra') zimbraAuth = SOAPProxy...

Using Soap Web Services in iPhone with wsdl2objc?

Hello, I do realize this is a duplicate question, however the only other question is quite old, so I would like to know if anyone has had any recent experience with the latest version of the wsdl2objc wsdl2objc link I am doing an application that will communicate with SOAP Web services exposed by a third party application (it only expo...

How to set a property of an object as required on one operation and not required on other operation on WSDL?

For example I have these complexTypes: <!-- will be use as a request parameter --> <complextType name="enrollStudentRequest"> <sequence> <element name="student" type="Student" /> </sequence> </complexType> <!-- will be use as an operation response --> <complextType name="retrieveStudentsResponse"> <sequence> <element name="...

WCF and Soap 1.1

I am trying to create a service that a 3rd party should hopefully consume. The consumer is compatible with SOAP 1.1, which is why I am using basicHttpBinding for the server. When the actual request is made, something seems to go wrong with the content types expected by the server. Using basicHttpBinding I dont get why the server still ex...

jBPM Web Service

Hi, I ve got a question regarding jBPM. In one of our projects I developed an enterprise service (.Net) that other systems (jBPM, Delphi, etc.) should receive data from. For this I am providing a SOAP interface. Now there's a case that when the a jBPM system contacts the service, some manual work has to be done before the data the syst...

SOAP Server error in PHP - adding functions from a class

I am writing a SOAP server and have hit a strange problem. Here's the relevant lines from the server.php class MyHandler { public function __construct() { ... } public function __wakeup() { ... } public function getPrice() { ... } } $server = new SoapServer("my.wsdl", array("soap_version" => SOAP_1_2)); $server->setClas...

Best way to implement a Generic Web Service API

What is the best way to implement a open/cross platform web service API to an existing .NET App? Not being a strictly .NET friendly API. It already has ASP.NET exposed web services, but need to be built into an generic API allowing inserts, updates and deletes and returning results based on user criteria in standard SOAP, JSON or other ...

Lotus Sametime web service API

Is there a SOAP or REST API for Sametime to enable an application to push presence information on behalf of all Sametime users, and to subscribe or poll, the users' presence information? Where can I find information about it? ...

Searching for embedded XML-RPC server (with SSL/TLS)

I'm searching for xmlrpc libraries that can be embedded in a C++ application. XmlRpc++ on SourceForge is a very neat solution but doesn't provide HTTPS support. Other RPC-like solutions such as gSOAP are not free for commercial use (or do I get that wrong, they mention a MPL-like license, too). What about Apache's Axis/C++, can it be e...

3dsecure processing using paypal soap api

Hello, I'm trying to get paypal to accept my 3d secure authorisation after taking a user through the Cardinal Centinel process (3dsecure verification is now required in the UK by Paypal for all Maestro payments). Having got the authorisation codes back from Cardinal Centinel when I then pass then on to paypal using a SOAP DoDirectPayme...

PHP - how to create this SOAP XML request?

Hi! I'm trying to figure out how to structure data properly in PHP in order to make a SOAP XML request like this: <typ:saveRequest locationName="example.com"> <typ:datatype owner="ME" class="OPEN"> <typ:order>1</typ:order> <typ:datavalue>[email protected]</typ:datavalue> </typ:datatype> </typ:saveRequest> Th...

How to make SOAP WSDL request in Objective-C ?

Hi all, I have a WSDL script which has the following format <definitions name="ProcessData" targetNamespace="urn:ProcessData"> <message name="CreateAccount"> <part name="firstName" type="xsd:string"/> <part name="lastName" type="xsd:string"/> <part name="password" type="xsd:string"/> <part name="emailAddress" type="xsd:string"/> <part...

Webservice Jira gives: Error: No such operation 'getIssuesFromJqlSearch' from Jira 4.01

When I use the Webservice of Jira, I need to use the method getIssuesFromJqlSearch to describe a certain (JQL) Query. But it returns me "No such operation 'getIssuesFromJqlSearch'". Is this method in Jira 4.01 not implemented yet? BTW: I need a method to get all Issues from one specific project, without creating filters first. This was...

tclsoap and ssl

Can anyone provide a working example of using tclSOAP with SSL? The links referred to in the official docs aren't working http://tclsoap.sourceforge.net I'm unsure how to configure the transport protocol. ...

how to create a c# app to listen for xmls and reply in xml

Hi, I know that you can create web services in .net and have them run on iis. I'd like to make something that doesn't rely on iis as the webserver I'm using runs apache. The eventual app should listen for incoming xml documents and repy in the form of an xml document, the client application will be running Javascript and sending xmls v...