Re: Re: how to set default route in jax-rs

2009-03-16 Thread Ty
Thanks, I'll give it a try. From: Alexander J. Perez Tchernov xas...@gmail.com Sent: Sunday, March 15, 2009 11:03 PM To: discuss@restlet.tigris.org Subject: Re: Re: how to set default route in jax-rs An simple solution might be to introduce JAX-RS

RE: Re: how to set default route in jax-rs

2009-03-15 Thread Ty
Hi, Thanks again for the god advice. This seems to be the call you are referring to: // create JAX-RS runtime environment final JaxRsApplication application = new JaxRsApplication(comp.getContext().createChildContext()); // set the Default restlet

Re: Re: how to set default route in jax-rs

2009-03-15 Thread Alexander J. Perez Tchernov
An simple solution might be to introduce JAX-RS resource that catch any url addressing with help of reg-exp. something like @Path(value = /{resource:.*}) public class CatchAll { public CatchAll (@PathParam(resource) String resource ) {} } On Sun, Mar 15, 2009 at 12:34 AM, Ty

Re: how to set default route in jax-rs

2009-03-14 Thread Stephan Koops
hi Ty, you could set a default Restlet in the JaxRsRouter (or in the JaxRsApplication) best regards Stephan Ty schrieb: Hi, Does anyone know how to set a default router (catch-all route) using jax-rs. In standard restlet I'd do this: final Router myRouter = new