I have a Tomcat Server in front of a Servlet that gets/stores information in a MySQL Database. My Android application needs to get/ put information on to this server. I control both ends of the communication, so I've basically been exploring the "best" way to send information back and forth. So far, I've tried Jackson for JSON and the native Java Serialization packages. My object is relatively complex and completely serializable. I have no desire to write a "custom" guy at all, as I doubt I'd actually be able to improve on most of the packages.
Times are from when the response lands on the Android device until the Object is fully cast: Jackson for JSON 1.0: 17.176 seconds. Native Java Serialization: 36.132 seconds. WOW. Java Serialization is a D-O-G. So with that being said, are there any other strategies/packages I should try to get information to/from my server? Thanks! Evan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---