Skip navigation
Toggle Sidebar

Project Downloads


Source Code

Json.Net is contribution of http://james.newtonking.com/pages/json-net.aspx, take a look for more information

Version Download
<0.99> Mediator Source Code
  Json.Net Source File

Binaries

Json.Net is contribution of http://james.newtonking.com/pages/json-net.aspx, take a look for more information

Version Download
<0.99> Mediator Binaries
  Json.Net Binaries

API Docs

Short example who to use this code:

<html><head></head><body>
<?php
    try {
        $obj = new COM("RockeTierGS_Connect.csRockeTierGS_Connect");
        echo "created ";
    } catch (Exception $e) {
        echo "notcreated ";
        echo 'Caught exception: ',  $e->getMessage(), "\n";
    }
    if ($obj)
    {
        class Person
        {
                public $m_nId;
                public $m_sFirstName;
                public $m_sLastName;
        }
        echo "new entry ";
        $a = new Person();
        $a->m_nId = 12345;
        $a->m_sFirstName = "John";
        $a->m_sLastName= "Doe";
        echo $obj->Write("jini://*/*/phpSpace","com.example.helloworld.Person",json_encode($a));
    }
?></body></html>
Adaptavist Theme Builder Powered by Atlassian Confluence