Re: restlet as a jax-rs implementation

2009-04-21 Thread Stephan Koops
Hi Philippe, you wrote, that your path is mapped to a subpath of the path, you expect. Could you show the path you configure (form @Path), the path you expect to use, and the path, where you reach the resource, but where you don't expect it? best regards Stephan

Re: restlet as a jax-rs implementation

2009-04-21 Thread Philippe Marschall
Stephan Koops wrote: > Hi Philippe, > > is "prefix" also the @Path on your root resource class? No. > Than you have to use only "/*" as url-pattern. I can't do that. I can't control how my code is assembled into a web application. And even if I could if it worked only one way that would give i

RE: restlet as a jax-rs implementation

2009-04-16 Thread Jerome Louvel
e [mailto:stephan.ko...@web.de] Envoyé : mercredi 15 avril 2009 09:30 À : discuss@restlet.tigris.org Objet : Re: restlet as a jax-rs implementation Hi Philippe, is "prefix" also the @Path on your root resource class? Than you have to use only "/*" as url-pattern. To your first q

Re: restlet as a jax-rs implementation

2009-04-15 Thread Stephan Koops
Hi Philippe, is "prefix" also the @Path on your root resource class? Than you have to use only "/*" as url-pattern. To your first question I can't answer, because of my missing time other ones worked on the JAX-RS extension. best regards Stephan > Hi > > > I have an existing jax-rs applicati

restlet as a jax-rs implementation

2009-04-15 Thread Philippe Marschall
Hi I have an existing jax-rs application and would like to use restlet as an implementation. My web.xml currently looks like this: RestletServlet com.noelios.restlet.ext.servlet.ServerServlet org.restlet.attribute.application com.acme.MyApplication Restle