On Monday, December 26, 2011 9:49:42 PM Guy Pardon wrote: > Hi, > > The JAXWS annotations include the @RequestWrapper annotation. I think I > understand what it does, but I am not clear on how to use it. > > For instance: can I specify the className of some custom class I > implemented? Or is this purely generated stuff by CXF/JAXWS?
It can be a completely custom class you have implemented as long as it has the getter/setter methods that the CXF runtime would require to pull the parameters out of it. A good start is to use the java2ws tool with the -wrapperClasses flag to generate a starting point for you. That would get the setter/getter/annotations correct. Then customize those classes. -- Daniel Kulp [email protected] - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com
