Hi, I have to create a SOAP client for a third-party webservice. I tried to use SOAP::Lite but my request is not accepted. The support told me how the request has to look like:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envel +ope/" xmlns:ecom="https://ecomm.sella.it/"> <soapenv:Header/> <soapenv:Body> <ecom:Encrypt> <ecom:shopLogin>username</ecom:shopLogin> <ecom:uicCode>242</ecom:uicCode> <ecom:amount>0.01</ecom:amount> <ecom:shopTransactionId>562</ecom:shopTransactionId> </ecom:Encrypt> </soapenv:Body> </soapenv:Envelope>
However the code produced by SOAP::Lite normally looks like this:
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" x +mlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="h +ttp://www.w3.org/2001/XMLSchema" soap:encodingStyle="http://schemas.x +mlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soa +p/envelope/"> <soap:Body> <Encrypt> <shopLogin xsi:type="xsd:string">username</shopLogin> <uicCode xsi:type="xsd:int">242</uicCode> <amount xsi:type="xsd:float">0.01</amount> <shopTransactionId xsi:type="xsd:int">562</shopTransacti +onId> </Encrypt> </soap:Body> </soap:Envelope>
So even the envelope tag is different. How can I make SOAP::Lite create a request with the required envelope?

In reply to SOAP::Lite and custom envelopes by jan

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.