I was wondering if anyone uses php to call enterprise javabeans?
I wrote a java class that is accessed by some php code. This java class
calls an EJB and gets a custom object returned to the java class called
report. When I returned the custom object to php to reference, everything I
try to ouput in the object gets outputed as "Object".
Tried this way
$Client = new Java("Custom.Client");
$Report=$Client->getTheReport(String str);
echo($Report->Jobs[0]->getjobnum());
And this way
$Client = new Java("Custom.Client");
$Client->getTheReport(String str);
echo($Client->thereport->Jobs[0]->getjobnum());
Any help or links to anyone that tried this would be useful.
Ryan Conover
[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.pitt.edu/~rscst25/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php