teamnowhere has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to write a PERL script to use Cisco CallManager AXL interface and get/process IP phones information.
I know I have to use SOAP::Lite package, but I really do not understand how it works, especally with CallManager interface.
Actually, I do not know how to connect to the server: what must I set in the URI field ? In the proxy one ? This part of the code is really not clear for me.
From what I have read on the web and seen on the server, I would have wrote:
But something tells me its not really good ;)my $CCM = SOAP::Lite ->uri(xxx.xxx.xxx.xxx:443) ->proxy("xxx.xxx.xxx.xxx/API/AXL/V1/axlsoap.xsd")
An older thread of smeenz show me how to get data after that (even if it is not the information I have to get from server):
If there is a specific documentation I was unable to find it :(my $res = $soap->getPhone( SOAP::Data->name(phoneName => 'SEP000000000000') )
Can anyone help me ?
Julien
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using CallManager AXL interface with perl and SOAP::Lite module
by szbalint (Friar) on Jul 26, 2007 at 13:24 UTC | |
by Anonymous Monk on Jan 19, 2009 at 17:10 UTC |