[
https://issues.apache.org/jira/browse/WICKET-4780?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13465830#comment-13465830
]
Matthias Keller commented on WICKET-4780:
-----------------------------------------
@Martin: Does your fix mean, the CryptoMapper can still be added first,
followed by a number of mountPage() calls?
We have the situation that most of our app should be encrypted, but there are
several URLs called directly from the outside with a special meaning that need
to be available under this URL and will not support an immediate redirect to
another url (especially since some URLs are the target of a direct initial POST
request)?
> Using both MountedMapper and CryptoMapper causes warning
> --------------------------------------------------------
>
> Key: WICKET-4780
> URL: https://issues.apache.org/jira/browse/WICKET-4780
> Project: Wicket
> Issue Type: Bug
> Components: wicket
> Affects Versions: 1.5.7, 6.0.0
> Reporter: Kurtulus Avcibasi
> Assignee: Martin Grigorov
> Fix For: 6.1.0, 1.5.9
>
> Attachments: WICKET-4780_quickstart.rar
>
>
> Having both MountedMapper and CryptoMapper causes:
> WARN - WebPageRenderer - The Buffered response should be handled
> by BufferedResponseRequestHandler
> {code}
> public void init() {
> setRootRequestMapper(new CryptoMapper(getRootRequestMapper(),
> this));
> mountPage("/home", HomePage.class);
> super.init();
> }
> {code}
> {code}
> public HomePage(final PageParameters parameters) {
> super(parameters);
> add(new Label("version",
> getApplication().getFrameworkSettings().getVersion()));
> add(new Form<Void>("form"));
> }
> {code}
> {code}
> --HomePage.html
> ...
> <form wicket:id="form"></form>
> ...
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira