[
https://issues.apache.org/jira/browse/TAPESTRY-1833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12536914
]
Manfred Hantschel commented on TAPESTRY-1833:
---------------------------------------------
I cant get access to the session data. Usually the session cookie is
automatically sent along with the xhr. But our application has cookies turned
off, which means that the url has to contain the jsessionid. The jsessionid is
added to the url by calling the ServletResponse.encodeURL method. But this
method is not called, because the last parameter in the constructLink method is
set to false.
As a result: cookies turned on, i have access to the session data. cookies
turned off, i dont have access to the session data. this even occures if the
webapp has cookies turn on, but the browser does not support cookies.
i have tested the above patch, and it works well.
> XTile does not work with cookies turned off
> -------------------------------------------
>
> Key: TAPESTRY-1833
> URL: https://issues.apache.org/jira/browse/TAPESTRY-1833
> Project: Tapestry
> Issue Type: Bug
> Components: Contrib
> Affects Versions: 4.2
> Reporter: Manfred Hantschel
> Assignee: Andreas Andreou
>
> The URLs created by XTile do not contain the jsession-id when used with
> cookies turned off. This is because the link is created with "stateful" set
> to false (see XTileService.java, line 76). Turning this to true fixes the
> problem and the URLs are generated including the jsession-id.
> Here's the patch:
> Index: src/java/org/apache/tapestry/contrib/ajax/XTileService.java
> ===================================================================
> --- src/java/org/apache/tapestry/contrib/ajax/XTileService.java
> (revision 585120)
> +++ src/java/org/apache/tapestry/contrib/ajax/XTileService.java
> (working copy)
> @@ -73,7 +73,7 @@
> parameters.put(ServiceConstants.PAGE,
> component.getPage().getPageName());
> parameters.put(ServiceConstants.COMPONENT, component.getIdPath());
>
> - return _linkFactory.constructLink(this, false, parameters, false);
> + return _linkFactory.constructLink(this, false, parameters, true);
> }
>
> public void service(IRequestCycle cycle) throws IOException
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]