I'm mucking around with a little app for Google Android. It requires a back-end web service running under Apache, so I figured I might as well do that in Java as well.
Is JAXB the right way to proceed? In other words, define the transactions I need in an XML schema and use JAXB to generate a Java binding, then fill that in? Or is there another approach that might be better? I should also mention I will be using MySQL for persistence.
Low overhead is important, so I am not so concerned with SOAP compliance or strict schema adherence.
Any thoughts very welcome.
Is JAXB the right way to proceed? In other words, define the transactions I need in an XML schema and use JAXB to generate a Java binding, then fill that in? Or is there another approach that might be better? I should also mention I will be using MySQL for persistence.
Low overhead is important, so I am not so concerned with SOAP compliance or strict schema adherence.
Any thoughts very welcome.