Re: JAXWS inheritance in return type

2007-07-04 Thread SteveEdgar
Found a solution, but I'm not sure if it is optimal. Take a look at: http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056482#4056482 Near the end of the first code sample, the author has placed a dummy method in the code, solely to publish (expose) a subclass in the WSDL. This app

JAXWS inheritance in return type

2007-07-04 Thread SteveEdgar
I am doing bottom up Web Service development on Tomcat 5.5.23. WSDL is being generated from an existing POJO implementation by running it through the apt tool. The POJO looks like this: @WebService... @WebMethod BaseClass retrieveInfo(ClassA parm1) The BaseClass has 4 subclasses. I need th