Hi

I think in this case the servlet transport is bypassed and no handler is
available for "/services".
"http://mypc:9000/?_wadl"; should do it in this case.

cheers, Sergey

On Wed, Nov 10, 2010 at 10:00 AM, Jérôme Herry <[email protected]> wrote:

> Hi, I'm using CXF running a jetty server like this:
>
>       JAXRSServerFactoryBean sf = new JAXRSServerFactoryBean();
>       List rps = new Vector();
>       rps.add(new SingletonResourceProvider(new VersionService()));
>       rps.add(new SingletonResourceProvider(new LoginService()));
>       ...
>       sf.setResourceProviders(rps);
>
>       List schemas = new ArrayList();
>       schemas.add("classpath:/versioning/versions.xsd");
>       ...
>       sf.setSchemaLocations(schemas);
>
>       sf.setAddress("http://mypc:9000";);
>       sf.getInInterceptors().add(AuthenticationInterceptor.getInstance());
>       sf.getOutInterceptors().add(OutInterceptor.getInstance());
>
>       sf.setStaticSubresourceResolution(true);
>       sf.create();
>
> When I go to http://mypc:9000/services I have a 404 error. I would like to
> have the WADL with all my REST services. How can I do it?
>

Reply via email to