[jboss-jira] [JBoss JIRA] Created: (JBWEB-135) SES url patterns cannot be defined in the servlet mappings
Luis Majano (JIRA)
jira-events at lists.jboss.org
Mon Mar 30 13:21:22 EDT 2009
SES url patterns cannot be defined in the servlet mappings
----------------------------------------------------------
Key: JBWEB-135
URL: https://jira.jboss.org/jira/browse/JBWEB-135
Project: JBoss Web
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Reporter: Luis Majano
Assignee: Remy Maucherat
The majority of servlet containers let you define servlet-mappings that can
reproduce SES (search engine safe) URL's.
Example:
http://myhost.com/index.jsp/myvar/value
http://myhost.com/index.jsp/entry/hello--there
This gives you the ability to create pretty ses url's without the need of an
external rewrite tool like mod_rewrite or an ses valve.
However, as I am aware of, only Tomcat does not allow these type of servlet
mappings.
<servlet-mapping>
<servlet-name>jsp</servlet-name>
<url-pattern>*.jsp/*</url-pattern>
</servlet-mapping>
The <url-pattern>*.jsp/*</url-pattern> is the one that chokes!! It cannot be
defined and used.
This to me is a bug as all servlet containers support this type of
url-patterns.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list