RE: Re: servlet mapping question

2010-01-14 Thread webpost
thank you! i already tried this and it didn't work. but now i changed the following: TemplateRoute mainroute = router.attach("/", new Directory(getContext(), "war:///")); mainrouteroute.setMatchingMod​e(Template.MODE_EQUALS); and this works :) -

RE: Re: servlet mapping question

2010-01-14 Thread webpost
ok no problem: - localhost/MyApp/ -> returns index.html of the web content directory - localhost/MyApp/*relRef* -> MyResourceA (does something with the relative reference *relRef* and return a html representation) - localhost/MyApp/restlet/* -> MyResourceB (returns a json representation) bes

RE: Re: servlet mapping question

2010-01-13 Thread webpost
I can't get this to work like I want: TemplateRoute route = router.attach( "/", MyResourceA.class ); route.setMatchingMode(Template.MODE_STARTS_WITH); router.attachDefault(new Directory(getContext(), "war:///")); this always loads MyResourceA, because the main url ("localhost/MyApp/") also start

RE: Re: servlet mapping question

2010-01-13 Thread webpost
thank you very much! I used your solution and it works good. But there is still a small problem: application class: router.attach( "/restlet/myresource",MyResourceA.class ); router.attach( "/*", MyResourceB.class ); router.attachDefault(new Directory(getContext(), "war:///")); I want to call My

Re: Re: re servlet mapping question

2008-02-29 Thread TA
Mitch and Thierry thank you both very much, I understand now and got it working.

RE: Re: re servlet mapping question

2008-02-29 Thread Mitch Stewart
den and you will see a generic 404 error displayed by IE itself). Mitch > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of TA > Sent: Friday, February 29, 2008 10:28 AM > To: discuss@restlet.tigris.org > Subject: Re: re servlet mapping question

Re: re servlet mapping question

2008-02-29 Thread Thierry Boileau
Hello Ted, some words to complete Stephan's answer. Let's say that the name of the WAR file is myWar. 1- Let's say that the RestletServlet is configured like this : /testServlet/* and the application as follow: router.attach("/testResource",HelloWorldResource.class); then, the resource'URI

Re: re servlet mapping question

2008-02-29 Thread TA
Apologies for starting a new post on an existing thread but everytime I try and follow up I get a top posting error. Here is the thread on the issue Rhett, Thanks for the reply. I tried mapping to something specific and it still does not work, 404 error. I set up a route like so router.atta

Re: re servlet mapping question

2008-02-28 Thread Rhett Sutphin
Hi Ted, On Feb 28, 2008, at 5:11 PM, TA wrote: I'm not sure I follow your suggestion - if I remove the url mapping from the defaultAttach call, all URLs will map to the servlet/restlet and I don't want that because I have other servlets running the web container. What Stephan was pointing