projects
/
freeside.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
expect-style ssh interaction, for interation w/cisco and other networking eqipment...
[freeside.git]
/
bin
/
xmlrpc-customer_bill_now
1
#!/usr/bin/perl
2
3
use strict;
4
use Frontier::Client;
5
use Data::Dumper;
6
7
my $uri = new URI 'http://localhost:8008/';
8
9
my $server = new Frontier::Client ( 'url' => $uri );
10
11
my $result = $server->call(
12
'FS.API.bill_now',
13
'secret' => 'sharingiscaring',
14
'custnum' => 3,
15
);
16
17
#die $result->{'error'} if $result->{'error'};
18
19
print Dumper($result);
20
21
1;