2017 © Pedro Peláez
 

library mtoolkit-network

The network module of MToolkit framework

image

mtoolkit/mtoolkit-network

The network module of MToolkit framework

  • Saturday, August 6, 2016
  • by mtoolkit
  • Repository
  • 1 Watchers
  • 0 Stars
  • 21 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

MToolkit - Network

The network module of MToolkit framework., (*1)

RPC-JSON

JSON-RPC is a remote procedure call protocol encoded in JSON, (*2)

Server

Create a RPC-JSON server is simple. This example implements an web service to sum 2 number:, (*3)

class RPCJsonWebService extends MRPCJsonWebService
{
    public function __construct(){}

    public function sum($data)
    {
        $response = new MRPCJsonResponse();
        $response->setId( $this->getRequest()->getId() );
        $response->setResult( array( 'sum' => $data['a'] + $data['b'] ) );
        $this->setResponse( $response );
    }
}

Client

This is the client of the above example:, (*4)

$request = new MRPCJsonRequest();
$request->setId(1)
    ->setMethod('sum')
    ->setParams( array('a'=>1, 'b'=>2) );

$client = new MRPCJsonClient($url);
$client->call($request);

$response = $client->getResponse();

The Versions

06/08 2016

dev-master

9999999-dev http://mtoolkit.github.io/mtoolkit/

The network module of MToolkit framework

  Sources   Download

LGPL-3.0+

The Requires

 

The Development Requires

framework php library simple free fast toolkit .net qt web framework

06/08 2016

0.0.3

0.0.3.0 http://mtoolkit.github.io/mtoolkit/

The network module of MToolkit framework

  Sources   Download

LGPL-3.0+

The Requires

 

The Development Requires

framework php library simple free fast toolkit .net qt web framework

07/05 2016

0.0.2.x-dev

0.0.2.9999999-dev http://mtoolkit.github.io/mtoolkit/

The network module of MToolkit framework

  Sources   Download

LGPL-3.0+

The Requires

 

The Development Requires

framework php library simple free fast toolkit .net qt web framework

07/05 2016

0.0.2

0.0.2.0 http://mtoolkit.github.io/mtoolkit/

The network module of MToolkit framework

  Sources   Download

LGPL-3.0+

The Requires

 

The Development Requires

framework php library simple free fast toolkit .net qt web framework