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.

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


--- In [email protected], "raja_s_patil" <kpr.rspa...@...> wrote:
>
> Hi,
> 
> In my project I want to save/retrieve following objects
> 
> class PurchaseOrderVO
> {
> PO_no:int;
> ..... other header info ...
> Items:arraycollection;
> }
> The Items arraycollection contains array of
> following class
> 
> class POItem
> {
> Item_cd:string;
> Item_rate:number;
> Qty:Number;
> Amount:Number;
> schedule:Arraycollection;
> }
> 
> the schedule array collection contains following class objects
> class itemSchedule
> {
> DeliveryDate:date;
> Qty:number;
> remarks:string;
> }
> 
> can somebody guide me about Flex and PHP code
> I should use to save these to three different tables
> 
> PO_Master; // po header table
> PO_Items; // po items FK in POmaster
> PO_SChedule; // schedules FK in POItems
> 
> Thanks and best regards
> 
> Raja
>


Reply via email to