users@jax-ws.java.net

Re: Can JAX-WS RI generate wrapper bean class ?

From: Doug Kohlert <Doug.Kohlert_at_Sun.COM>
Date: Mon, 10 Jul 2006 10:58:21 -0700

To generate the wrapper been you must either compile your class using
apt making sure that all of the jaxws classes are in the classpath or
run wsgen on the already compiled class.

jim ma wrote:

> Hi all ,
>
> If we use the simple class annotated only with "@Webservice" like the
> following snippet to generate wsdl, JAX-WS RI seems can not generate
> wrapper bean by default.
>
> @WebSerice
> public interface StockQuote {
> float getPrice(String ticker)
> }
>
> Does this feature not supported by jaxws specification or current
> version RI can not support ?
>
> Thanks
>
> Jim
>
>
>
>