We have implemented a project based on Spring MVC REST, which also has Spring Security. Now we have a client who is only SOAP compliant (To implement SOAP we want to use Apache CXF), so we have two options.
Concern for option-1 is that if writing an adapter service just to support new SOAP protocol is worth it? Regarding Option-2 I am yet to come across an example which shows Spring MVC REST service exposed as SOAP/WSDL approach.
Thank you, Himalay
I followed the second approach, as with the first approach there is lot of duplication, I would follow the first approach if you have a matured REST framework used by many clients, and avoid introducing any bugs.