Nicolas Bouillon created TAP5-2424:
--------------------------------------
Summary: Application folder doesn't support "sub folders" (slash
in path)
Key: TAP5-2424
URL: https://issues.apache.org/jira/browse/TAP5-2424
Project: Tapestry 5
Issue Type: Bug
Components: tapestry-core
Affects Versions: 5.3.8
Reporter: Nicolas Bouillon
I've set my tapstry servlet filter as :
<filter-mapping>
<filter-name>app</filter-name>
<url-pattern>/path1/path2/*</url-pattern>
</filter-mapping>
And in the AppModule
configuration.add(SymbolConstants.APPLICATION_FOLDER, "path1/path2");
It works for Page Requests, but for Event requests it doesn't work.
The probleme is here
org.apache.tapestry5.internal.services.ComponentEventLinkEncoderImpl#decodeComponentEventRequest
The method used to remotve the application folder is not the same as the one
used in
org.apache.tapestry5.internal.services.ComponentEventLinkEncoderImpl#decodePageRenderRequest
In decodeComponentEventRequest, the request path comparison is done between the
applicationFolderPrefix and the substring until the first "/". In
decodePageRenderRequest, the comparison is done otherwise.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)