I'm new to implementing soap services. Until now I have implemented only REST services in Java with jax-rs which were deployed in Talend ESB.
I need to create a mock service from a wsdl file. I am using cxf, jax-ws and I need to deploy the bundles in a talend container. I generated web services from wsdl file resulting in service interfaces and DTOs.
At the moment I do not have the implementation of the service and I need to create a mock service. My porblem is that I do not know how to create a mock service that will be replaced in the near future with the real implementation with as minimal effort as possible, this meaning that when I will receive the implemetation I do not want to make any major modificaions for the system to run.
Thanks, Dorin