GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
BZ::Client::XMLRPC(3) User Contributed Perl Documentation BZ::Client::XMLRPC(3)

  BZ::Client::XMLRPC - Performs XML-RPC calls on behalf of the client.

  my $xmlrpc = BZ::Client::XMLRPC->new("url" => $url);
  my $result = $xmlrpc->request("methodName" => $methodName, "params" => $params);

An instance of BZ::Client::XMLRPC is able to perform XML-RPC calls against the given URL. A request is performed by passing the method name and the method parameters to the method "request". The request result is returned.

This section lists the possible class methods.

  my $xmlrpc = BZ::Client::XMLRPC->new("url" => $url);

Creates a new instance with the given URL.

This section lists the possible instance methods.

  my $url = $xmlrpc->url();
  $xmlrpc->url($url);

Returns or sets the XML-RPC servers URL.

  my $result = $xmlrpc->request("methodName" => $methodName, "params" => $params);

Calls the XML-RPC servers method $methodCall, passing the parameters given by $params, an array of parameters. Parameters may be hash refs, array refs, or atomic values. Array refs and hash refs may recursively contain array or hash refs as values. An instance of BZ::Client::Exception is thrown in case of errors.

  L<BZ::Client>, L<BZ::Client::Exception>
2011-09-19 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.