soap

Public free web services for testing soap client

Are there any publicly available SOAP 1.2/WSDL 2.0 compliant free web services for testing a Python based soap client library (e.g. Zolera SOAP Infrastructure)? So far, it appears to me that Google Web API may be the only option. Otherwise, how can one test a SOAP 1.2 compliant client library? ...

How do I upload a document to SharePoint with Java?

I'm creating some big files (DB exports) with Java and I need to put them somewhere on our SharePoint server. Right now, I'm doing this with IE but I'd like to automate this step, too. I searched the web and I found some hints to use SOAP but I don't really see to the ground of all this, yet. Can someone provide me with some sample code...

WCF and Custom Soap Authentication

I am developing a server application using WCF to expose WebService endpoints for clients. I want to implement authentication through a simple custom provider that will use the username and password passed through the SOAP headers. I know how to set the user name and password to be sent on the client, I just want to know how to pull the ...

Moving from NuSOAP to PHP5 SOAP

Hi, I have been working on a script with PHP4 that relies on NuSOAP. Now, I'm trying to move this to PHP5, and use the buildin support for SOAP there. $wsdlPath = ""; // I have obviously set these variables to something meaningful, just hidden for the sake of security $apiPath = ""; $username = ""; $password = ""; // PHP5 style $cl...

Secure Java SOAP web service - Active Directory authentication Trust

I want to build a secure web-service betweeen a Java producer and a Java consumer. I want to authenticate using Active Directory using the domain accounts that the producer and consumer are running under. Could you give me an example of this? (ie: AD trusted automated alternative to manual keystores.) ...

php SOAP call over SSL - How do I jam a cert, key, and CA cert together in the request?

So, I'm trying to consume a webservice using something like this: $client = new SoapClient("some.wsdl", array('local_cert' => "cert_key.pem")); I've done this successfully in the past with other web services that required a cert & key concatenated into the local_cert file. Now, I'm trying to consume a service that also relies on a ...

Can I disable SOP (Same Origin Policy) on any browser for development?

I want to develop JS on my windows machine. Do you know a browser where I can turn off SOP so I can develop? Firefox would be optimal. Or if you know a proxy I could use for a SOAP/WSDL site it would be great too.. I am trying to work with the SOAPClient (http://www.codeplex.com/JavaScriptSoapClient) ...

Is there a better way of customizing SOAP headers in C#

In the past I have needed to create custom SOAP headers in a C# project that was using an imported WSDL web reference. I found a way to do it but I was never happy with it and I have sense wondered if there was a better way. What I did was create a header that derives from SoapHeader: [System.Xml.Serialization.XmlTypeAttribute(Namespace...

How to write a Web Service for Google App Engine?

Hello all, I am simply wondering how to write a Web Service (XML - SOAP) for Google App Engine? I am really new with Python and I have been looking for example for a while, but no chance. Does anybody could point me out any article or simply could give me an example of a Web Service in Python with Google App Engine? Thanks! ...

Detecting session loss?

Is there a call I can make to determine whether my session is still alive in a gsoap client? The only way I see to check if a session is still alive is to check to see if all the cookie values match after each soap call. It seems like gsoap would be aware of the session being alive since the tcp_keep_alive flag is set. Is there function...

SOAP Attachment from .NET 3.5 to PHP web service

We've got a PHP web service which we need to send a file from a .NET 3.5 web app. The PHP team has stated that we need to provide the file in the form of a SOAP attachment, but we can't find a way from which we can do that in .NET. All reference examples that we've been able to come across refer to using the DIME, but that's not suppor...

What does this Java error message entail? And how can i fix it?

I get this message when trying to communicate with software that communicates with SOAP? Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled. I am using a third party API to communicate with an Ardome MAM system. ...

How do I serialize an anonymous object for sending over a SOAP web service?

I am trying to send an anonymous object over a web service. Is there anyway I can do this without manually creating a class and casting it to that class? Currently its throwing an exception saying Anonymous object could not be serialized. // Some code has been removed here to simplify the example. [WebMethod(EnableSession = true)] publi...

PHP Soap client using local_cert -- Cannot connect

I'm looking for any advice that can be offered on this one... I am trying to create a soap request in php using my server certificate and key aggregated in the local_cert parameter. I've verified that my cert & key are correct and I've created the local cert file using the key and cert appended respectively. The response I get when I ...

Retrieving SOAP password

I am developing web services in C# using WCF and I want to create a custom way of handling security. I have found this way to retrieve the username out of the soap message that was sent to web service: String username = System.ServiceModel.ServiceSecurityContext.Current.PrimaryIdentity.Name; I was wondering if there was a similar way ...

How to get an xml file in soapUI that will consist of request and response

Hi guys, I just want to confirm that how we can get an xml file in soapUI 2.5 that will consists of request and response Currently i m getting an xml file tht is containing only wsdl and request So can anyone help me in generating the xml file for that Please reply it soon as its very urgent Thanks in advance in all Bye Regards, Mustaf...

Handle requests to several classes within the same PHP SOAP server

Hi, Is that possible to have a single PHP SOAP server which will handle requests to several classes (services)? If yes, could you please show an example implementation? If not, could you please describe why? Thanks in advance, Artem. ...

Enterprise Messaging API with Web Services for High Performance?

Does combining an Enterprise Messaging solution with Web Services result in a real performance gain over simple HTTP requests over sockets? (if implementation details will help, interested in JMS with a SOAP webservice) ...

Encrypted web services connections and pk12 certificates

I need to make some code to talk to a SOAP web service. Unfortunately I'm unable to get a connection to the service as it requires a SSL connection encrypted with a special certificate. I've been given a pk12 certificate which when installed into my keychain allows me to access the SOAP service manually via Safari, but I'm unable to ge...

Server did not recognize the value of HTTP Header SOAP

Here you can find the WSDL for my Jobs.asmx webService. http://recpushdata.cyndigo.com/jobs.asmx The Thing is I have created a HTML page at http://bugmusic.cyndigo.com/CallWebService.html and its returning an Error Server did not recognize the value of HTTP Header SOAP. I am not able to find the bug. ...