dev@grizzly.java.net

Re: need help to continue on http-deployer : problem with servlet mapping in GWS

From: Jeanfrancois Arcand <Jeanfrancois.Arcand_at_Sun.COM>
Date: Tue, 14 Apr 2009 10:24:16 -0400

Salut,

Survivant 00 wrote:
> I have 2 servlets.
>
> #1 it,s a helloworld servlet.. and I it to be called when the mapping is *.x
> #2 - I want a second servlet that is called on *.jsp
>
> #1
> deploy:sa context=/
>
> sa servletPath=/
>
> alias=/*.x
>
> sa rootFolder=C:/Source/grizzly/modules/http-servlet-deployer/war2/
>
> #2
> sa context=/
>
> sa servletPath=/
>
> sa alias=/*.jsp
>
> sa rootFolder=C:/Source/grizzly/modules/http-servlet-deployer/war2/
>
>
> when I enter anything in the URL.. the first one is always called.

Hum..I'm not 100% sure it is a bug but can you file an issue and attach
a test case I can play with? I think we should support that use case.

A+

-- Jeanfrancois


>
> ex :
>
> http://localhost:8080/index/ccc
>
> [http8080-WorkerThread(3)] Mon Apr 13 11:15:04 EDT 2009 [FIN]
> com.sun.grizzly.tcp.StaticResourcesAdapter service:File not found
> .\index\ccc
>
> [http8080-WorkerThread(3)] Mon Apr 13 11:15:04 EDT 2009 [FIN]
> com.sun.grizzly.tcp.StaticResourcesAdapter service:File not found
> C:\Source\grizzly\modules\http-servlet-deployer\war2\index\ccc
>
> the OUTPUT result :
>
> Hello, world!
>
>
>
> here the code
>
> if (logger.isLoggable(Level.FINEST)) {
> logger.log(Level.FINEST, "sa context=" + sa.getContextPath());
> logger.log(Level.FINEST, "sa servletPath=" + sa.getServletPath());
>
> logger.log(Level.FINEST, "sa alias=" + alias);
> logger.log(Level.FINEST, "sa rootFolder=" + sa.getRootFolder());
> }
>
> ws.addGrizzlyAdapter(sa, new String[]{alias});