Presumably you want to take a look at these documents to be able to use SOAP, to access the interface this device presents. The proxy method expects the specific uri you need to access and the uri in SOAP::Lite signifies the namespace of the Cisco interface. You might want to read the current Soap ::Lite documentation aswell.

Update: SOAP can be daunting at first and SOAP::Lite is a complex module. Unfortunately debugging something like this is hard, so you'll have to read the documentation very carefully and use the error checking mechanisms as strictly as possible.

As a quick tip, please keep in mind that when you want to retrieve the result of a remote method call, in 99% of the cases you want to use the 'paramsall' method, not the 'result' method. Consider this example:
my $result = $soap->remote_method(@parameters); unless ($result->fault) { print $result->paramsall(); } else { print join ', ', $result->faultcode, $result->faultstring; }

The result method on $result would only return the _first_ parameter that the remote_method returned. Personally I think that was a silly architectural decision, but this might save you some time.

In reply to Re: Using CallManager AXL interface with perl and SOAP::Lite module by szbalint
in thread Using CallManager AXL interface with perl and SOAP::Lite module by teamnowhere

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.