From 97dddf3cf23f7d2829d23efb9d44b746ac7d52cc Mon Sep 17 00:00:00 2001 From: knut <> Date: Thu, 6 Jul 2006 19:45:32 +0000 Subject: Added a TSoapService prototype with a simple demo app --- demos/soap/protected/webservices/SimpleService.php | 89 ++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 demos/soap/protected/webservices/SimpleService.php (limited to 'demos/soap/protected/webservices') diff --git a/demos/soap/protected/webservices/SimpleService.php b/demos/soap/protected/webservices/SimpleService.php new file mode 100644 index 00000000..e59546bb --- /dev/null +++ b/demos/soap/protected/webservices/SimpleService.php @@ -0,0 +1,89 @@ +equation = "$leftSide $operation $rightSide"; + $result->result = $this->evaluateExpression($leftSide, $operation, $rightSide); + if (count($this->errors)) { + $result->success = false; + $result->errors = $this->errors; + } + else { + $result->success = true; + } + + return $result; + } + + /** + * Simply add two operands + * @param int $a + * @param int $b + * @return int The result + * @soapmethod + */ + public function add($a, $b) { + return $a + $b; + } + + /** + * This method evaluates the expression. It should be capable of handling any $op + * passed to it. + * @return string the result of the evaluation + */ + private function evaluateExpression($left, $op, $right) + { + // Now, because we don't want to eval random code on the server that this is running + // on, we're just going to highlight the string + $evaluation = highlight_string("$left $op $right;", true); + return $evaluation; + } +} + +class ComputationResult +{ + /** + * @var string The initial equation + */ + public $equation; + + /** + * @var string The computed result + */ + public $result; + + /** + * @var boolean Whether the computation succeeded + */ + public $success; + + /** + * @var array any errors that occured in the processing. + */ + public $errors; +} +?> \ No newline at end of file -- cgit v1.2.3