soap

Soap Request/Response without WSDL

I have to query once an hour to a remote web server to recieve data. However the remote web site does not use web services and state in thier 300+ page document that: Although SOAP is a recognized Web Services API, the RTO web server does not offer a web services interface. That is, there is no Web Services Description Language (WSDL) ...

Converting Object to XML Cocoa

I am looking for a tutorial, description, or something that could point me in the right direction for converting an object to an XML soap request in Cocoa. Specifically I am using this to hit a .NET webservice. I do at this point have my code working but it feels like cheating and bad chi. My XMl request is basically lots of: Reques...

convert SOAP struct to php class

how can i convert SOAP struct like <wsdl:types> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.org/service1/"&gt; <xsd:complexType name="requestDescriptor"> <xsd:all> <xsd:element name="x" type="xsd:string"></xsd:element> <xsd:element name="xx" type="xsd:string"></xsd:ele...

Consuming a SOAP service in Ruby using Savon gem.

Hi, I am trying to consume a SOAP service using the Savon gem but having difficulty. I have accessed the SOAP service using soapUI and it works fine. My code: require 'rubygems' require 'savon' # Client instance with a WSDL endpoint client = Savon::Client.new "http://realtime.nationalrail.co.uk/ldbws/wsdl.aspx" p client.wsdl.namespa...

Magento catalogProductInfo - access denied for unknown reason

I am getting access denied when asking Magento with following request: <?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&gt; <soapenv:Body> <ns1...

Does the REST architectural style require physically separate clients and servers?

Is it a requirement that RESTful interactions occur between physically separate clients and servers? i.e. does the interaction need to involve the network stack in some way? Is there any benefit to employing an HTTP-like "calling convention" between the various components of an application? It seems to me that the benefits of REST, su...

Can a .NET 2.0 Web Service handle a call from a client when the SoapAction is missing?

We have a .NET 2.0 web service (.ASMX file). This web service is being called by a Java client and they are not passing in a SoapAction header. This causes our web service to fail with the error: : "Server did not recognize the value of HTTP Header SOAPAction: ." There is no chance that I can convince the development team in charge of...

How to get the Soap XML from a web service and store it in a string?

I have web service written that generates some data...can I call the web service in a way that i can store the xml soap representation of data...instead of actually calling the method that returns the actual data..i want to store the xml representation in a string ... ...

i want to parse data using SOAP and libxml2 so how it possible?

i have soap based Xml using that soap message i want to perform libxml parsing also perform lazy loading so how can i perform it please any one have idea about it then please help me. ...

How to authenticate .NET2 Webservice with a SQUID proxy

I've got a little utility that is a SOAP WebService client. The SOAP-proxy is generated from WSDL. It was working fine. Now the customer wants to use a SQUID proxy, but that refuses to authenticate my SOAP client. I have already tried: MyWebservice ws = new MyWebservice(); // set URL etc. // login for the actual service, this part...

Custom SOAP Fault has wrong namespace http://schemas.datacontract.org/2004/07/...

Hi there I've defined a custom schema for a soap fault which looks like this: ... ... I've genereated code in VS 2008: [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("...

how to use web service API?

Our application is written in Java. Now we are integrating with a different company which offers web service API. This API allows Microsoft.NET or SOAP enabled application to integrate. Please consider me in this naive. So how do I verify if my application is SOAP enabled or how do I make it? Actually our current plan to integrate is thr...

What is best way to post data to an url if someone does not call an web service?

Alright...I have kind of a big quesstion...ok here goes...Usually if i understand it well...web services work in a way that i write a method to get some data from the database and then some other user/client adds a reference and calls my service and gets the data...now in my case i have to get the data and actually post it to the user/cl...

Help me fix this bug in Suds

There is a bug in the Python SOAP module Suds which is preventing me from making progress on a project. It seems as though the internal definitions for complex data types don't include inherited properties. The data type is defined in the WSDL and extends the standard xsd:string data type. Take a look at the bug's open ticket. Update: ...

Get an IP adress of a client of a SOAP service

Hi! I'm writing a SOAP service using python and soaplib. I need to get IP adresses of all clients of the service to store them to the log file. How can I do that? ...

Web service beginner, using Android

Hello, I read the first tutorials today on SOAP webs ervices and I'd like to create my own service, e.g. a java class Person that should be my web service. I don't know what application do I need to store this web service for accesing it as a test, and neither how to access it from ANDROID. Please help me with this. All the best ...

How to convert Raw XML to SOAP XML in C#?

I have some xml generated from the XML Serializer ..How can I convert it to SOAP XML ?...I am trying to do it ASP.NET C#...please help me out ...

Streaming pdf document over SOAP using php

hi i am connecting to a provider and getting a PDF file. Now this file needs to be sent to the users browser as it is. But the problem is there are two hops between the user and the provider. The communication between Hop 1 and Hop2 happens over SOAP. Is it possible to send the PDF from Hop 2 to Hop 1 as a stream not as an attachment. ...

Calling External Web Service via a Servlet

The current architecture has a web application (in a WAR distribution), being used to provide information to the web client via a Servlet. This Servlet garners this information from an external service via Glassfish Metro (SOAP), and then formats it accordingly for the client (JavaScript). A proxy component (JAR) has been developed to m...

Install PEAR SOAP fails

All, I'm getting the following error attempting to use PEAR to install SOAP # pear install soap Failed to download pear/soap within preferred state "stable", latest release is version 0.12.0, stability "beta", use "channel://pear.php.net/soap-0.12.0" to install install failed I'm looking for advice on what to do next. I'm ...