Okay I faked up a server that returns the same hash as yours and then manually re-did the WSDL - fixing the transport, SOAP version namespace and soapAction and this appears now to work:

<?xml version="1.0" encoding="UTF-8"?> <definitions name="webService" targetNamespace="http://127.0.0.1/soapTest" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://127.0.0.1/soapTest" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://127.0.0.1/webService.xsd1"> <types> <xsd:schema targetNamespace="http://xml.apache.org/xml-soap" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://127.0.0.1/webService.xsd1"> <xsd:complexType name="item"> <xsd:all> <xsd:element maxOccurs="1" minOccurs="1" name= +"key" type="xsd:anyType"/> <xsd:element maxOccurs="1" minOccurs="1" name= +"value" type="xsd:anyType"/> </xsd:all> </xsd:complexType> <xsd:complexType name="Map"> <xsd:sequence> <xsd:element maxOccurs="1" minOccurs="0" name="item +" type="apachesoap:item"/> </xsd:sequence> </xsd:complexType> </xsd:schema> </types> <message name="get_OUT"> <part name="id" type="xsd:int"/> </message> <message name="get_IN"> <part name="user" type="apachesoap:Map"/> </message> <portType name="webServicePortType"> <operation name="get"> <input message="tns:get_OUT"/> <output message="tns:get_IN"/> </operation> </portType> <binding name="webServiceBinding" type="tns:webServicePortType"> <soap:binding style="rpc" transport="http://schemas.xmlsoap.or +g/soap/http"/> <operation name="get"> <soap:operation soapAction="http://127.0.0.1/testSoap#get" +/> <input> <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/enc +oding/" namespace="http://127.0.0.1/testSoap" parts="id" use="encoded"/> </input> <output> <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/enc +oding/" namespace="http://127.0.0.1/testSoap" parts="user" use="encoded"/> </output> </operation> </binding> <service name="webService"> <port binding="tns:webServiceBinding" name="webServicePort"> <soap:address location="http://127.0.0.1/cgi-bin/webservic +e.cgi"/> </port> </service> </definitions>

/J\


In reply to Re^5: SOAP::Lite with client using service by gellyfish
in thread SOAP::Lite with client using service by jammin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.