SOAP as a transport is best not debugged at all :-)

The .NET web-service should be publishing a WSDL description of what the service expects. Clients of the service need merely translate the WSDL into "proxy" methods of the service.

Even though my script runs with apparently no errors, the other end is saying nothing is coming through.
How exactly is the "other end" saying this? That you're script runs with "no errors" is probably meaningless, as you'd need to explicitly handle any SOAP fault objects that are sent back to the client.

In the worst case, you can turn on debugging in SOAP::Lite to see what is being sent to and received from the .NET service.

On the perl client side, I absolutely recommend SOAP::WSDL as it does almost all of the hard work for you; you'll get much more meaningful errors before you see the few exceptions to this.

SOAP::WSDL is a sub-class of SOAP::Lite, the module used by the vast majority of perl SOAP clients/services.

-David


In reply to Re: SOAP and .NET by erroneousBollock
in thread SOAP and .NET by Trudge

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.