thanks valdhor

>
> Just treat them as you normally would. WebORB's serialization/deserialization 
> should take care of everything for you.
> 
> I have used nested objects (Or objects containing other objects) when sending 
> from PHP to Flex. I have not done it the other way but would expect it to 
> work the same.
> 

Well i tried PHP to Flex successfully works nicely.
but Flex to PHP receives Object as VOPurchase order but
following code causes some problem

$arr = array();
foreach($voPO as $key => $val)
{
    $arr[$key] = $val;
}

return $arr;

I suspect that object sent and received from flex is not exactly 
same as object voPO created natively in PHP. B'coz same code works
fine if i create it just above the $arr statement and returns
array to flex nicely. But when I try to do with parameter 
received from flex "channel disconnect" error is reported.

>
> If you are having problems try seeing exactly what you are sending/receiving 
> with Charles (http://www.charlesproxy.com).
> 

Thanks for the link. But its a commercial project any free
or open source utility (win/lin) such as charles ? 

Thanks and best regards

Raja


Reply via email to