[android-developers] Re: How to handle complex objects from webservice.

2009-08-05 Thread Roman
You might want to check out how to do object serialization in Java. http://java.sun.com/developer/technicalArticles/Programming/serialization/ In general want you do is to convert your object in a binary format and convert it back on the received end. -- Roman Baumgaertner Sr. SW Engineer-OSDC

[android-developers] Re: How to handle complex objects from webservice.

2009-08-05 Thread Yusuf T. Mobile
Other alternatives are XML, JSON and protobuf. Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc. On Aug 5, 11:05 am,

[android-developers] Re: How to handle complex objects from webservice.

2009-07-30 Thread Lex
How exactly are you receiving the data from the webservice (HTTP POST method, TCP connection, UDP connection..)? If you are receiving your complex object in parts, write a method that will process the input and put the parts together to recreate your object. Lex On Jul 30, 2:52 pm, Ram