Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative to web services in Java

I have this external module of my system and I thought to integrate it with web services. So I wrote the server using annotations (so far so good) and then I used Eclipse (new Web Service Client wizard) to generate the boilerplate code for the client. The result is an ugly bunch of code far from configurable, painful to test and to change. I'm looking for a straightforward API, I don't need attachments, sophysticated data types, complex asynchronous behaviour. So:

  1. are there any other tools to do a better job?
  2. are there different tecniques to write webservices clients (such as annotations)?
  3. shall I use a different way altogether to integrate my external components (such as REST)? Any suggestions on where to start, be this the case?

Looking forward to your advices.

like image 496
Manrico Corazzi Avatar asked Dec 10 '22 17:12

Manrico Corazzi


2 Answers

I agree with Patrick, Spring 3 has a RESTServiceTemplate and a WebServiceTemplate that makes it very easy to code and configure interacting with remote web services - it'll even make un/marshalling xml into beans easy. At my company we've had great success with both of them.

To get you started:

http://static.springsource.org/spring-ws/sites/1.5/reference/html/client.html

http://blog.springsource.com/2009/03/27/rest-in-spring-3-resttemplate/

HTH

like image 194
simonlord Avatar answered Dec 22 '22 06:12

simonlord


  1. Axis
  2. XFire/CXF

Both downloads have sample ant build files to generate client jar files.

like image 32
saugata Avatar answered Dec 22 '22 06:12

saugata