I am using netbeans 6.9. I have made a JAX-WS service that returns a complex type, I have also made a JAX-WS client to consume it. The JAX-WS system automaticly creates a class for the client, inferred from the WSDl spec. I want to make my own class for this using JAXB annotations, so that I can add some extra functions to it.

How do I go about replacing the autogenerated file with my own one? Could I also use the same class in the service to control how it is transmitted?

Thanks!

link|improve this question
feedback

1 Answer

Why replace the generated class? From your description, it sounds like a good case for using the Decorator design pattern.

I have done this on a JAX-RPC project, and it worked very well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.