I am currently working on a web client service for Android. I use the Java client library, which provides an abstraction for interacting with the service. The client library runs on regular machines. However, when I use classes in my Android project, some calls do not return the result on Android, the background service stops working with the first of these commands. Wireshark shows the tcp exchange, the server receives requests. There are no exceptions or anything else. Something in the serialization / deserialization of the seams does not work. I use the newest version of the Jackson libraries (1.5.3) and the byte-restyler in the version for Android. Are there any known issues with Jackson and Android? What code and libraries are compatible with Android?
source
share