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
|
JSON version 1.00
=================
DESCRIPTION
This module converts between JSON (JavaScript Object Notation) and Perl
data structure into each other.
For JSON, See to http://www.crockford.com/JSON/.
JSON-RPC http://json-rpc.org/
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
This module requires these other modules and libraries:
Test::More
If you want to use JSONRPC::Transport::HTTP, you need
HTTP::Request,
HTTP::Response
If you want to use JSONRPC::Transport::HTTP::Daemon,
HTTP::Daemon is required.
If you want to use JSONRPC::Transport::HTTP::Client, you need
LWP::UserAgent.
COPYRIGHT AND LICENCE
Copyright (C) 2005 by Makamaka Hannyaharamitu
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
|