Current Path :
/
usr
/
share
/
doc
/
cpanel-php74-horde-rpc-2.1.9
/
examples
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//usr/share/doc/cpanel-php74-horde-rpc-2.1.9/examples/xmlrpc.pl
#!/usr/bin/perl -w die("Please configure the URL, username, and password, and then remove this line.\n"); use XMLRPC::Lite; use Data::Dumper; my $proxy = 'http://username:password@example.com/horde/rpc.php'; my $xlite = XMLRPC::Lite -> proxy($proxy) -> call('calendar.listCalendars'); my $status = $xlite->result; print Data::Dumper->Dump($status);