I'm building a Java Rest Webservice to send lots of data, specifically objects serialized in XML using SimpleXML. I'm using:
- Server side: Tomcat + Jersey
- Client side: Android + Restlet for Android
The performance obtained is worse than I expected. XML Serialization/Deserialization seems that isn't the problem. I think that it is in the server side but I don't know if it's Tomcat or Jersey.
Are there better options available?
Thanks