i need to upgrade this (working) webapp using cxf-codegen-plugin v2.7.11 & Java 8 to java 11. codegen is using the wsdl2java goal.
Now i found that i must upgrade to cxf v 3.3.x+ but then i get into this version hell because what jabx & jaxws version do i need for this? I tried many but the best i get is that my app compiles ok but when starting the war in tomcat (9) it shows a scary warning first:
javax.xml.soap.FactoryFinder.find Using deprecated META-INF/services mechanism with non-standard property: javax.xml.soap.MetaFactory. Property javax.xml.soap.SAAJMetaFactory should be used instead.
and then this error:
Caused by: javax.xml.ws.WebServiceException: Wrong binding ID: /my_endpoint at com.sun.xml.ws.api.BindingID.parse(BindingID.java:251) ~[jaxws-rt-2.3.6.jar:2.3.6]
No tutorials or working examples to be found on this.
Any hints much wanted.