Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Experience says that using WSDL-SOAP based webservice for internal consumption is an overkill. There are too many service-based POJO classes that when let into the system complicates it way too much. One option would be use adapter pattern, map the request/response objects to internal domain classes. But is it even required? Is there a better approach? What are your suggestions?

share|improve this question

2 Answers

up vote 2 down vote accepted

Yes, WSDL/SOAP (or WS-* in general) is an overkill because it simply adds another layer to solve problems that have already been solved by Web architecture. In fact, they have been solved much better.

In the Java world, you are likely to find the simplicity you are looking in JAX-RS (RESTful Java Web service). The Jersey project is the reference implementation of JAX-RS and among other neat features comes with a very easy to use serialization/deserialization approach.

Jersey: http://jersey.java.net/ Example Applications: http://wikis.sun.com/display/Jersey/Main (scroll down)

HTH, Jan

share|improve this answer

Have a look at the CAJO project:

http://en.wikipedia.org/wiki/Cajo_project

Should allow JVM's to talk together if that is what you need.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.