soap

consume soap service with ruby and savon

I'm trying to use ruby and Savon to consume a web service. The test service is http://www.webservicex.net/WS/WSDetails.aspx?WSID=9&CATID=2 require 'rubygems' require 'savon' client = Savon::Client.new "http://www.webservicex.net/stockquote.asmx?WSDL" client.get_quote do |soap| soap.body = {:symbol => "AAPL"} end Which retur...

Dynamically call SOAP service from own scripting language

My application has its own scripting language of which I cannot get rid of (lots of customer-specific scripts written). Now my customers are asking if it would be possible to call a SOAP service from within that scripting language. Of course, the SOAP service that needs to be called will be different for every customer. This leaves me...

Message=Server did not recognize the value of HTTP Header SOAPAction: error

HI Guys, I have created a web service. And I m able to hit the web service using SOAPUI but when i try to call through my code I get this error. Any ideas? ok the web service code looks like this: [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [WebServiceBindingAttribute(Name = "SoapBinding", Namespace = "xyz")] [System....

How can I extract/parse from this SOAP envelope using Ruby?

I am using a gem which uses soap/wsdlDriver. When I post I get back a SOAP response and am unable to easily parse it. This is the response I get back: #<SOAP::Mapping::Object:0x159e95faf098 {}id="27b907f8-da51-f611-ab02-4c5f88a8ec8 8" {}error=#<SOAP::Mapping::Object:0x159e95fae33c {}number="0" {}name="No Error" {}description="No Erro...

How to add Types to libraries generated by wsdl2perl.pl in SOAP::WSDL

The generated library files from wsdl2perl.pl are not creating all the complex types I need to run requests through my wsdl. If I want to add a new type, say Price.pm to my type library, am I able to just add that module to the other library files? And if I do, what other files must I modify to incorporate it to my program (the element...

multiple namespaces deserialize problem

Hello, My problem is kind of hard to explain so I hope the title attracts the right people. I am building an XDocument which I then want to deserialize into a web service object to send to the service. My problem is I don't know how to deserialize the XDocument to match the SOAP Message because of the multiple namespaces. What I am cur...

VB6 base64 Binary

Hi, I have a problem on this webservice: http://credenciados.pronto.com.br/carga.asmx?op=IncluirMultimidia2 on arrayArquivo parameter, i use this function to generate data: Private Function getBase64fromFile(Filename) As String Dim base64 As New cls64base Dim FileInputData() As Byte Open Filename For Binary As #1 FileI...

Prevent jbossws/services from listing deployed services

Is there a way to prevent jbossws/services from listing services currently deployed? I thought of securing it the way jmx-console is secured, i.e. password protected, but would that mean that web service consumers would have to authenticate too? Or is it just going to password-protect the web interface? Thanks! ...

Java: Simple SOAP Client

Hi, I'm looking for a SOAP client for Java. Apache Axis looks very bloated to me. I don't understand why things have to be so complicated in Java. For example, in PHP, all I have to do is: <?php $global_service_wsdl='https://api.betfair.com/global/v3/BFGlobalService.wsdl'; $betfair=new SoapClient($global_service_wsdl); $params=array(...

SOAP message response format/layout - web service implemented with Axis 1.4 on Tomcat 5.5 (Linux)

I am having the same issue presented here. http://stackoverflow.com/questions/1294975/specify-order-of-elements-in-a-soap-response-using-java Out of fear of my post in that thread not being answered, i have posted a new question as it is slightly different also. I am utilising Tomcat 5.5 and Axis 1.4. Created Java classes from WSDL cod...

Build C# SOAP web service stub based on WSDL XML SOAP response

I am doing integration testing of my system with a 3rd party web service. They have provided the WSDL and the XML soap response packets but the web service hasn't been built yet. I am using WCF to call the web service. Any suggestions on how to write the end-point to send back the response contained in the XML file? I know I can gene...

Public key encryption in objective-C/iPhone

I have a .net desktop application which calls SOAP services. The SOAP request sends some data encrypted with .net 'RSACryptoServiceProvider' library. I have the public key for encryption. I am trying to port this application into iPhone, which requires me to do the public key encryption in objective-c/iPhone. Can anyone please point m...

Using SOAP to generate XML attributes in PHP

I need to generate the following XML with SOAP: <MetaDataConstraint class="topics"> <Value>FRX</Value> </MetaDataConstraint> I am not sure how to generate the attributes. Based on: http://stackoverflow.com/questions/2045850/using-soap-to-generate-xml-attributes-in-php, I tried to do the following, but unfortunatelly it does not ...

SOAP error (WSDL) in php webservice

my wsdl code- <portType name='CatalogPortType'> <operation name='getCatalogEntry'> <input message='tns:getCatalogRequest'/> <output message='tns:getCatalogResponse'/> </operation> </portType> <binding name='CatalogBinding' type='tns:CatalogPortType'> <soap:binding style='rpc' transport='http://schemas.xmlsoap.org/soap/http...

HTTP/SOAP services on Linux - recommendation please

I'm looking to set up a scalable server farm that serves up HTTP/SOAP requests and read/writes data from and to a (set of) database(s). Looking for the right Linux tools to handle that. Can someone please recommend a path for me? just a point in the right direction is all I require. In the past I used LAMP for PHP. What should I use jus...

SOAP doesn't work

I trying to work with SOAP, but it doesn't work. I tried localhost and another server. For example: soap.xml: POST /InStock HTTP/1.1 Host: www.example.org Content-Type: application/soap+xml; charset=utf-8 Content-Length: nnn <?xml version="1.0"?> <soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="ht...

Describing Perl interfaces with WSDL

I've been looking at ways to add a Perl-based SOAP server to our systems. Every time I look @ the SOAP tools in Perl I'm disappointed at how much more developer overhead seems to be required than folks in the VS.net world. (And I've been looking for a long time) From reviewing other questions here, it looks like XML::Compile::SOAP see...

Why getting error: Object#id will be deprecated; use Object#object_id

On my local development rails environment, I am able to check the output from a SOAP call just fine. I can use response.id to get the value from this packet displayed using the .inspect method: #<SOAP::Mapping::Object:0x15702d0c0604 {}id="dd26ce5f-0cfd-9bbb-3485-4c64c9d6378 4" {}error=#<SOAP::Mapping::Object:0x15702d0bf6f0 {}number="0"...

Reading a SOAP header to a SOAPpy response?

How can I read s SOAP header from a SOAPpy response? ...

How to get all additional attributes of Magento Product without explicitly specifying them

My goal is to get and display all additional attributes for the Magento product using SOAP API. For example Gender, Shirt Size and Color for T-Shirt product. But the program shouldn't know the attribute names. In the SOAP Call: catalogProductInfo there is additional attributes parameter and it looks like I have to explicitly specify add...