Open andreas-wolf opened 7 years ago
How can I annotate a JAX-WS Interface? I've seen the test case https://github.com/highsource/jaxb2-annotate-plugin/tree/master/tests/jaxws
Actually I want an annotation on the interface. In the wsdl that is
resulting in code like
@Webservice.... @MY_ANNOTATION_HERE public interface RequestResponsePortType {
I use a bindings file and I have no idea what to put in the binding. I've tried
<jaxb:bindings node="wsdl:portType[@name='RequestResponsePortType']"> <annox:annotate>my.namespace.to.MY_ANNOTATION_HERE</annox:annotate> </jaxb:bindings>
which did not work.
What do I do wrong?
Duplicate of https://github.com/highsource/jaxb-tools/issues/471 extensionBindingPrefixes is not taken into account in jaxws:bindings so annox is not read by plugin
extensionBindingPrefixes
jaxws:bindings
annox
How can I annotate a JAX-WS Interface? I've seen the test case https://github.com/highsource/jaxb2-annotate-plugin/tree/master/tests/jaxws
Actually I want an annotation on the interface. In the wsdl that is
resulting in code like
I use a bindings file and I have no idea what to put in the binding. I've tried
which did not work.
What do I do wrong?