Rank: Newbie Coder Groups: Member
Joined: 2/8/2007 Posts: 4 Points: 0
|
Hi, hope someone can help me out here.
I'm using the source client code given for the example using complex strong typing.
I am able to do the remote call after fixing a bug in the "ORBHttpHandler.php" whereby I added
"define("WebOrbServicesPath", realpath(WebOrb . $config->getServicePath() ) . DIRECTORY_SEPARATOR);"
However, the class mapping seems to be having problem. the returned packet.. the amf response does not have the "_orbclassname" unlike the example given.
Am I missing something? hope someone can point me to the right direction
|
Rank: Newbie Coder Groups: Member
Joined: 2/8/2007 Posts: 4 Points: 0
|
I managed to get this working.
Under the "ComplexTypesTest.php" line 62
public function echoEmployee(Employee $emp) { return $emp; }
basically adding a type to the parameters.
|