I am trying to expose services using jax-ws, but the first surprise I got is that Weblogic does not support inner classes for request / response objects. After this situation here , I am faced with another task:
Create getXXX()instead of / in addition to the method isXXX().
I need to generate these methods when the service starts, I get the message:
<WS data binding error>could not find getter for property 'IsXXX' on com.foo.MyClass
Tried setting:
<jaxb:globalBindings generateIsSetMethod="false" enableJavaNamingConventions="false">
no effect .: (
Any help?
source
share