I have this external module of my system and I decided to integrate it with web services. So I wrote the server using annotations (so far so good), and then I used Eclipse (the new client web service wizard) to generate the template code for the client. The result is an ugly bunch of code, far from being customizable, painful for testing and modification. I am looking for a simple API, I do not need attachments, complex data types, complex asynchronous behavior. So:
- Are there any other tools for a better job?
- Are there different methods for writing webservices clients (e.g. annotations)?
- Should I use a different way to integrate my external components (like REST)? Any suggestions on where to start, in this case?
Waiting for your advice.
source share