Are there any symlinks above the current directory?
It looks like the paths have been cut out too soon, which can happen when the child path is canonicalized and doesn't match the parent path.

Congrats on getting Mephisto working! :)

Cheers,
Robert


Charles Oliver Nutter wrote:
Charles Oliver Nutter wrote:
I'm seeing some rather unusual servlet URIs set up in web.xml, and GlassFish isn't liking them one bit. they look corrupted as well...

Fixing them with /tmp/war/* and /tmp/war/public/* seems to fix the problem. Perhaps this is a lingering bug in the new String implementation?

And good news...I have Mephisto deploying and apparently working on GlassFish. Neato!

<servlet-mapping>
   <servlet-name>files</servlet-name>
   <url-pattern>tmp/war/*</url-pattern>
</servlet-mapping>

<servlet-mapping>
   <servlet-name>files</servlet-name>
   <url-pattern>/install.html</url-pattern>
</servlet-mapping>

<servlet-mapping>
   <servlet-name>files</servlet-name>
   <url-pattern>tmp/war/publ/*</url-pattern>
</servlet-mapping>

<servlet-mapping>
   <servlet-name>files</servlet-name>
   <url-pattern>/robots.txt</url-pattern>
</servlet-mapping>

<servlet-mapping>
   <servlet-name>files</servlet-name>
   <url-pattern>tmp/war/publ/*</url-pattern>
</servlet-mapping>

- Charlie
_______________________________________________
Jruby-extras-devel mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/jruby-extras-devel
_______________________________________________
Jruby-extras-devel mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/jruby-extras-devel

Reply via email to