Re: Router in servelet not routing to correct resource

2009-10-21 Thread Matt Stromske
Thanks.  That did it.  I think I'm losing it because I thought I tried that and it didn't work.  Thanks again, Matt Matt Kennedy wrote: I'm not 100% sure based on that description, but try setting your second router line to: router.attach("/test1") On Oct 21, 2009, at 1:19 PM, Ma

Re: Router in servelet not routing to correct resource

2009-10-21 Thread Matt Kennedy
I'm not 100% sure based on that description, but try setting your second router line to: router.attach("/test1") On Oct 21, 2009, at 1:19 PM, Matt Stromske wrote: > Hello, > > I can't figure out why my router isn't routing to the correct > resource. It always seems to route to the default

Router in servelet not routing to correct resource

2009-10-21 Thread Matt Stromske
Hello, I can't figure out why my router isn't routing to the correct resource. It always seems to route to the default route. I have 2 routes: router.attachDefault(DefaultResource.class); router.attach("/gpsh/test1",TestResource.class); My servlet container mapping: /gpsh/* When