I created a number of POJOs and exposed them as a webservice with CXF/Spring. For example
BasicService.java (exposed as WebService with CXF)
User.java
Company.java
I also let CXF generate the WSDL for me. On the client side, rather than
consuming the WSDL and auto-generate the beans, well, I already have the beans,
can I somehow "link/map" the auto-generated WSDL to the existing beans from
which the WSDL was generated to start with?
Thanks,
