Sha256: 262f3d0d50e858598a45e845c356d797fd8bb3ccad935505952c99b68cfaac8a

Contents?: true

Size: 1.12 KB

Versions: 13

Compression:

Stored size: 1.12 KB

Contents

<?php
	require_once("./JSON.php");
	
	// FIXME: doesn't look like we really need Pear at all
	// which decreases the testing burden. 
	// Commenting out.the require and the new File() call.

	// NOTE: File.php is installed via Pear using:
	//	%> sudo pear install File
	// Your server will also need the Pear library directory included in PHP's
	// include_path configuration directive
	// require_once('File.php');

	// ensure that we don't try to send "html" down to the client
	header("Content-Type: text/plain");

	$json = new Services_JSON;
	//$fp = new File();

	$results = array();
	$results['error'] = null;

	$jsonRequest = file_get_contents('php://input');
	//$jsonRequest = '{"params":["Blah"],"method":"myecho","id":86}';

	$req = $json->decode($jsonRequest);

	include("./testClass.php");
	$testObject = new testClass();

	$method = $req->method;
	if ($method != "triggerRpcError") {
		$ret = call_user_func_array(array($testObject,$method),$req->params);
		$results['result'] = $ret;
	} else {
		$results['error'] = "Triggered RPC Error test";
	}
	$results['id'] = $req->id;

	$encoded = $json->encode($results);

	print $encoded;
?>

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
dojo_rails-0.0.2 vendor/assets/javascripts/dojo/tests/resources/test_JsonRPCMediator.php
dojo_rails-0.0.1 vendor/assets/javascripts/dojo/tests/resources/test_JsonRPCMediator.php
dojo_src-1.5.0 dojo/dojo/tests/resources/test_JsonRPCMediator.php
dojo_src-1.4.3 dojo/dojo/tests/resources/test_JsonRPCMediator.php
dojo_src-1.4.102 dojo/dojo/tests/resources/test_JsonRPCMediator.php
dojo-pkg-1.132.0 data/dojo-release-1.3.2-src/dojo/tests/resources/test_JsonRPCMediator.php
dojo-pkg-1.111.0 data/dojo-release-1.1.1-src/dojo/tests/resources/test_JsonRPCMediator.php
dojo-pkg-1.120.0 data/dojo-release-1.2.0-src/dojo/tests/resources/test_JsonRPCMediator.php
dojo-pkg-1.121.0 data/dojo-release-1.2.1-src/dojo/tests/resources/test_JsonRPCMediator.php
dojo-pkg-1.122.0 data/dojo-release-1.2.2-src/dojo/tests/resources/test_JsonRPCMediator.php
dojo-pkg-1.123.0 data/dojo-release-1.2.3-src/dojo/tests/resources/test_JsonRPCMediator.php
dojo-pkg-1.130.0 data/dojo-release-1.3.0-src/dojo/tests/resources/test_JsonRPCMediator.php
dojo-pkg-1.131.0 data/dojo-release-1.3.1-src/dojo/tests/resources/test_JsonRPCMediator.php