The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

JS::JSORB - Javascript client for JSORB

SYNOPSIS

  var c = new JSORB.Client ({
      base_url : 'http://localhost:8080/',
  })
  
  c.call({
      method : '/math/simple/add',
      params : [ 2, 2 ]
  }, function (result) {
      alert(result)
  });

DESCRIPTION

This is basically the JS:: module for the JSORB Javascript client. If you don't know about JS.pm, you should really check it out.

BUGS

All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.

AUTHOR

Stevan Little <stevan.little@iinteractive.com>

COPYRIGHT AND LICENSE

Copyright 2008-2009 Infinity Interactive, Inc.

http://www.iinteractive.com

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