So anyway, now that I know that the .NET server is configured as literal, this seems to solve my problem:
#!perl use Data::Dumper; use SOAP::Lite; my $soap = SOAP::Lite -> uri('http://www.theClient.info/Service') -> on_action( sub { join '/', 'http://www.theClien.info/Service', +$_[1] } ) -> proxy('http://www.theClien.com/Service.asmx') -> autotype(0); my $method = SOAP::Data->name('companyData')->attr( {xmlns=>"http://ww +w.theClien.info/Service"} ); my $eventCode = SOAP::Data->name('eventCode' => 'EVENT01'); my $userName = SOAP::Data->name('userName' => 'USER'); my $password = SOAP::Data->name('password' => 'PASS'); my $som = $soap->call($method => ( SOAP::Data->name('eventCode' => $eventCode), SOAP::Data->name('userName' => $userName), SOAP::Data->name('password' => $password) ));

In reply to Re: SOAP::Lite syntax by graq
in thread SOAP::Lite syntax by graq

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.