I’m using Apache CXF to generate classes from a WSDL file but they don’t implement Serializable which is needed to put an object into a JMS queue. Is it possible to do this or do I have to convert the generated classes into my own and send those?
Share
I found the solution myself so here it is if anybody needs it in the future:
1. add this plugin to pom.xml2. write a custom binding (binding.xml)3. run 'mvn generate-sources'