soap

C# / Webservice app on server throwing strange exception...

We use ADP for employee information. I had to create a small app that called some web services that ADP has to pull employee information. The app is fairly procedural..not really object orientated in a sense. Basically I go through some web services to pull general information, work information, employee status, etc. I have most of...

Andoird ksoap2 https problem

has any one been able to connect to a soap server using ksoap2 android via https? i keep getting the error that "Hostname <###>was not verified" im doing AndroidHttpTransport androidHttpTransport = new AndroidHttpTransport (URL); androidHttpTransport.call(SOAP_ACTION, envelope); apparently looking back at other ksoap which isn't for...

VMWareLabManagerSoap interface

I'm trying to connect to the Lab Manager SOAP API and have followed the instructions in the API guide: http://www.vmware.com/pdf/labmanager_SOAP_API_Guide.pdf. However, I constantly get an error in Visual Studio that says: Error 1 The type or namespace name 'VMwareLabManagerSOAPinterface' does not exist in the namespace 'ConsoleApplica...

PHP / SOAP - trying to learn, but having a problem with implementation

Hiya, I'm trying to teach myself SOAP, just to extend my skillset a bit, but I've hit a wall and I was wondering if a kind developer out there can help? I've set up my server thus: http://www.domain1.com/server.php <?php // Pull in the NuSOAP code require_once('soap/nusoap.php'); // Create the server instance $server = new soap_serv...

how to view internal jaxws logs in tomcat

I have a web service that is deployed in tomcat, and it is rejecting a soap request over https. However, I can't see any logs as to why it is doing so. I have the following set in my service endpoint implementation file: System.setProperty("javax.net.debug", "all"); System.setProperty("java.security.debug", "all"); And I pass the fol...

Strategy for normalizing multiple SOAP responses

I'm basically trying to merge multiple SOAP responses because the web service only supports one room lookup at a time instead of multiple as far as I know - its the CheckAvailability method and using this WSDL If I supply my credentials, arrival/departure dates in my SOAP request I get the following data back, which is mainly comprom...

Accessing a SOAP WebService

I have not found any convinient way to create something like a jaxws wrapperclass for an existing Soap Webservice - like in full Java. Jaxws is unfortunately not avaliable in the sdk. Is there any was to do this without using any external libs? Are there any external libs at all yet? ...

How to add attributes to soapVars

Hi, I'd like to create soapVars with attributes like this: <tag attr="xxx">yyy</tag> Is this possible with the SoapVar constructor, but without using XSD_ANYXML and raw xml strings? Thanks! ...

How can I pass a complex structure with SOAP::Lite in Perl?

I am trying to call the web service from Perl with the SOAP:Lite module. The web service has a parameter of complex type that I fail to construct correctly. Here is the relevant portion of wsdl:schema <complexType name="TagData"> <sequence> <element name="order" type="xsd:int"/> <element name="value" type="xsd:string"/> </...

SOAP Action WSDL

Hi all, I'm trying to implement a client for National Rail Enquiries' SOAP Service (http://www.livedepartureboards.co.uk/ldbws/). I stick the WSDL (http://realtime.nationalrail.co.uk/ldbws/wsdl.aspx) into http://soapclient.com/soaptest.html, but I get back the error message "Unable to handle request without a valid action parameter. Pl...

400 Bad Request : Consuming WCF basicHttpBinding (Soap) using JScript/VBScript

var oXMLDoc, oXMLHttp, soapRequest, soapResponse; oXMLHttp = new ActiveXObject("Microsoft.XMLHTTP"); oXMLHttp.open("POST", "http://nerdbox/HelloService.svc", false); // Add HTTP headers oXMLHttp.setRequestHeader("Content-Type", "text/xml; charset=utf-8"); oXMLHttp.setRequestHeader("SOAPAction", "http://tempuri.org/IHelloService/SayHel...

How to get the source of request from Web Service?

I want to get <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:prin="http://localhost/example&quot;&gt; <soapenv:Header/> <soapenv:Body> THIS </soapenv:Body> </soapenv:Envelope> from webservice request I send from Java. I use javax.jws ...

PHP SOAP client help!

Hi guys, I have to create a PHP SOAP client that sends leads, but I have never worked with SOAP before, and my XML isn't that great, here is the code I have managed to write so far. . . <?php try { $client = new SoapClient(null, array( 'location' => "https://wwa.website.co.za/CallmasterTes/LeadService.asmx", ...

Add SoapHeader to org.springframework.ws.WebServiceMessage

How can I add an object into the soap header of a org.springframework.ws.WebServiceMessage This is the structure I'm looking to end up with: <soap:Header> <credentials xmlns="http://example.com/auth"&gt; <username>username</username> <password>password</password> </credentials> </soap:Header> ...

Flash AS1/AS2 : quick + dirty SOAP msg send with minimum overheads?

Is there a way to send a simple SOAP message to a web service on another domain, while not caring about the response (this is simply a small data push) in an old flash app? Many thanks in advance... ...

Adding soap security header with php

I have been tasked with rewriting a .NET application which communicates using a WSE Proxy to PHP. There is one thing I'm grappling with. I see the code UsernameToken userNameToken1 = new UsernameToken(sToken_UserName, sToken_Password, PasswordOption.SendPlainText); Which, I assume, adds a security header to the SOAP envelope. I am not ...

SOAP-ERROR: Encoding: object hasn’t ‘website_ids’ property

i am struggling to get the products listed/called from magneto via SOAP. I am using the following statement please help, tell me what i am doing wrong. I am sending down the username and apikey vi the “LogInSession.Session()” method, it just keeps the connection info. string sessionId = LogInSession.Session(); MagentoSOAPv2.MagentoSer...

WCF: (MTOM) is there any way to change the scheme used in xop:Content reference uris generated by WCF?

WCF uses http://tempuri/1/number for Content-ID uri references when handling streamed MTOM requests. Is there any way how to force WCF to use a different Content-ID references for the xop:Include? Bakcground of the problem: I am building a .NET client for MTOM enabled jax ws java web service that handles streamed large data uploads. ...

Python+suds : xsd_base64Binary type ?

Hi, I'm trying to attach some files to a Jira using the Soap API. I have python 2.6 and SOAPpy isn't working any more, so, I'm using suds. Everything is fine except for the attachements ... I don't know how to rewrite this piece of code : http://confluence.atlassian.com/display/JIRA/Creating+a+SOAP+Client?focusedCommentId=180943#commen...

Applying SoapIgnore attribute doesn't take any effect to serialization result

I'm trying to figure out .NET serialization stuff and experiencing a problem. I've made a simple program to test it and got stuck with using attributes. Here's the code: [Serializable] public class SampleClass { [SoapIgnore] public Guid InstanceId { get; set; } } class Program { static void Main() ...