Best practices for an internal webservice
Posted
by sankara
on Stack Overflow
See other posts from Stack Overflow
or by sankara
Published on 2010-05-14T05:37:05Z
Indexed on
2010/05/14
5:44 UTC
Read the original article
Hit count: 211
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 and . But is it even required? Is there a better approach? What are your suggestions?
© Stack Overflow or respective owner