File: README

package info (click to toggle)
libxmlrpc-lite-perl 0.717-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 120 kB
  • sloc: perl: 538; makefile: 6
file content (58 lines) | stat: -rw-r--r-- 1,627 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
NAME
    XMLRPC::Lite - client and server implementation of XML-RPC protocol

SYNOPSIS
    Client
          use XMLRPC::Lite;
          print XMLRPC::Lite
              -> proxy('http://betty.userland.com/RPC2')
              -> call('examples.getStateStruct', {state1 => 12, state2 => 28})
              -> result;

    CGI server
          use XMLRPC::Transport::HTTP;

          my $server = XMLRPC::Transport::HTTP::CGI
            -> dispatch_to('methodName')
            -> handle
          ;

    Daemon server
          use XMLRPC::Transport::HTTP;

          my $daemon = XMLRPC::Transport::HTTP::Daemon
            -> new (LocalPort => 80)
            -> dispatch_to('methodName')
          ;
          print "Contact to XMLRPC server at ", $daemon->url, "\n";
          $daemon->handle;

DESCRIPTION
    XMLRPC::Lite is a Perl modules which provides a simple nterface to the
    XML-RPC protocol both on client and server side. Based on SOAP::Lite
    module, it gives you access to all features and transports available in
    that module.

    See t/26-xmlrpc.t for client examples and examples/XMLRPC/* for server
    implementations.

DEPENDENCIES
     SOAP::Lite

SEE ALSO
     SOAP::Lite

CREDITS
    The XML-RPC standard is Copyright (c) 1998-2001, UserLand Software, Inc.
    See <http://www.xmlrpc.com> for more information about the XML-RPC
    specification.

COPYRIGHT
    Copyright (C) 2000-2001 Paul Kulchenko. All rights reserved.

    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.

AUTHOR
    Paul Kulchenko (paulclinger@yahoo.com)