In contrast to the normal REST interface of Foswiki, a JSON-RPC interface offers well defined calling semantics for requests and responses. The interface will also take care that any received data is recoded to the server's character encoding. JSON-RPC is normally called as part of some JavaScript AJAX application.
JsonRpcContrib also comes with a jQuery plugin to simplify working with JSON-RPC. This is a simple wrapper around jQuery's own AJAX capabilities.
use Foswiki::Contrib::JsonRpcContrib (); sub initPlugin { ... Foswiki::Contrib::JsonRpcContrib::registerMethod( "MyNamespace", "someMethod", \$jsonRpcSomeMethod ); ... } # Plugin's implementation sub jsonRpcSomeMethod { my ($session, $request) = @_; ... # Return some result return $result; }
$session
and $request
. $session
is a reference to the Foswiki session; most implementers should simply ignore this. $request
is a reference to the JSON request object. The following methods are available on this object: param('param1')
- returns the value of a single named parameter
params()
- returns a reference to the entire parameter hash
method()
- returns the method
namespace()
- returns the namespace
TO_JSON
method described in the documentation for the CPAN JSON module.
Errors can be signalled using a simple die
. Such errors will be returned to the caller with an errorCode
of 1. If you need to pass back extended error information, you will have to encode it in the die
message.
https://damask2.mpie.de/bin/jsonrpc/MyNamespace
... while POSTing a JSON-encoded request according to the JSON-RPC 2.0 specification, like,
{ jsonrpc: "2.0", method: "someMethod", params: { topic: "Web.Topic", ... param1: "value1", param2: "value2", ... }, id: "caller's id" }
%JQREQUIRE{"jsonrpc"}%
. JSON-RPC can now be called like this:
$.jsonRpc( endpoint, /* %SCRIPTURL{"jsonrpc"}% */ { namespace: "MyNamespace", method: "someMethod", id: "some caller's id", params: { topic: "Web.Topic", ... param1: "value1", param2: "value2", }, beforeSend: function(xhr) { ... }, error: function(jsonResponse, textStatus, xhr) { ... }, success: function(jsonResponse, textStatus, xhr) { ... } } );
If the procedure fails for any reason the JSON response will have the format
{ jsonrpc: "2.0", error: { code: errorCode, message: "error description" }, id: "caller's id" }The following error codes are defined:
die
in the handler will return this
If the call is successful the JSON response will be of the format:
{ jsonrpc: "2.0", result: some-result-object, id: "caller's id" }
username
and password
URL parameters. It is strongly recommended that this is only done if the communications links is secure (https:), as these parameters are sent in plain text.
JSON-RPC 2.0 normally only allows you to pass parameters to a remote procedure using a well formed request object as described above. However in real-live web applications, data to be transmitted to a specific endpoint is most conveniently sent using URL parameters (as is the case for normal HTML forms).
Instead of requiring all form fields to be converted into a JSON-RPC request object on the client side, the JsonRpcContrib converts form data to a proper request object transparently. This way you can call a JSON-RPC function using a simple form submission from the client.The called namespace and method can thus be specified much like a subject/verb url to a REST interface. These calls are equivalent:
$.jsonRpc( "%SCRIPTURL{"jsonrpc"}%" namespace: "MyNamespace", method: "someMethod", ... );
$.jsonRpc( "%SCRIPTURL{"jsonrpc"}%/MyNamespace", method: "someMethod", ... );
$.jsonRpc( "%SCRIPTURL{"jsonrpc"}%/MyNamespace/someMethod" ... );
You can also use an HTML form:
<form action="%SCRIPTURL{"jsonrpc"}%" method="post"> <input type="hidden" name="namespace" value="MyNamespace" /> <input type="hidden" name="method" value="someMethod" /> ... </form>
<form action="%SCRIPTURL{"jsonrpc"}%/Mynamespace" method="post"> <input type="hidden" name="method" value="someMethod" /> ... </form>
<form action="%SCRIPTURL{"jsonrpc"}%/Mynamespace/someMethod" method="post"> ... </form>Forms of this type can easily be sent to the server using JQueryForm's
$.ajaxSubmit()
method.
If a namespace, method, or parameters are specified as part of a JSON-RPC request object as well as using URL parameters, the URL parameters take higher precedence and are merged into the request object.
You do not need to install anything in the browser to use this extension. The following instructions are for the administrator who installs the extension on the server.
Open configure, and open the "Extensions" section. Use "Find More Extensions" to get a list of available extensions. Select "Install".
If you have any problems, or if the extension isn't available inconfigure
, then you can still install manually from the command-line. See http://foswiki.org/Support/ManuallyInstallingExtensions for more help.
Change History: | |||||||
03 Feb 2016: (2.24) | Foswikitask:Item13405: Add NFC normalization of Unicode strings. | ||||||
14 Jul 2015: (2.23) | fixed encoding of compressed responses Foswikitask:Item13521 | ||||||
14 Jun 2015: (2.22) | Release with Foswiki 2.0. Foswikitask:Item13378: Implement UNICODE support, Foswikitask:Item13323: Use /usr/bin/env perl. Foswikitask:Item13412: Don't utf-8 encode response |
||||||
29 Jan 2015: | Foswikitask:Item13238: fix content-type of response | ||||||
17 Dec 2014: | Foswikitask:Item13164: added support for gzip compression of http response Foswikitask:Item13125: CGI changes for multi_param calls Foswikitask:Item13065: Log jsonrpc events to Foswiki event.log |
||||||
28 Aug 2014: | don't use DEBUG constant to toggle local debug messages as it conflicts with Assert.pm | ||||||
11 Dec 2013: | removed dependency on JSON::XS | ||||||
30 May 2013: | added support for serialising objects, and rewrote some of the documentation (Foswiki:Main/CrawfordCurrie) | ||||||
20 Mar 2013: | added feature to define handlers in LocalSite.cfg (Config.spec) so that pure contribs can implement backends now | ||||||
1 Oct 2012: | added the async flag to the $.jsonRpc frontend to $.ajax |
||||||
2 Aug 2012: | fixed json2 not loaded in IE7 (Foswiki:Main/JanKrueger) | ||||||
16 Apr 2012: | fixed jsonrpc for apache's suexec |
||||||
10 Jan 2012: | fixed perl dependencies; added redirectto url parameter similar to the standard foswiki rest handler |
||||||
10 May 2011: | fixed jsonrpc script to work on old foswikis; fixed multi-value params; fixed compatibility with various JSON cpan libraries | ||||||
29 Apr 2011: | initial release | ||||||
Dependencies: |
|
Author | Michael Daum |
Version | 2.24 |
Release | 2.24 |
Repository | https://github.com/foswiki/distro |
Copyright | © 2011-2016 Michael Daum http://michaeldaumconsulting.com and Foswiki Contributors |
License | GPL (Gnu General Public License) |
Home | http://foswiki.org/Extensions/JsonRpcContrib |
Support | Foswiki:Support/JsonRpcContrib |
I | Attachment | Action | Size | Date | Who | Comment |
---|---|---|---|---|---|---|
EXT | Makefile | manage | 136 bytes | 22 Jan 2018 - 19:05 | MartinDiehl | |
js | jquery.jsonrpc.js | manage | 736 bytes | 22 Jan 2018 - 19:05 | MartinDiehl | |
gz | jquery.jsonrpc.js.gz | manage | 400 bytes | 22 Jan 2018 - 19:05 | MartinDiehl | |
js | jquery.jsonrpc.uncompressed.js | manage | 1 K | 22 Jan 2018 - 19:05 | MartinDiehl | |
js | json2.js | manage | 2 K | 22 Jan 2018 - 19:05 | MartinDiehl | |
gz | json2.js.gz | manage | 1 K | 22 Jan 2018 - 19:05 | MartinDiehl | |
js | json2.uncompressed.js | manage | 17 K | 22 Jan 2018 - 19:05 | MartinDiehl |