Cookies not working in RequestFilter in AppModule
-------------------------------------------------
Key: TAPESTRY-1821
URL: https://issues.apache.org/jira/browse/TAPESTRY-1821
Project: Tapestry
Issue Type: Bug
Affects Versions: 5.0.6
Reporter: Matthew
Cookie not working in RequestFilter in AppModule, for example:
code of
public class AppModule{ ......
public RequestFilter buildAffiliateFilter(final Logger log, final
AffiliateManager _affiliateManager, final Cookies _cookies )
{
return new RequestFilter()
{
public boolean service(Request request, Response response,
RequestHandler handler)
throws IOException
{
//@Inject
//AffiliateManager _affiliateManager;
String affParam = request.getParameter("aid");
//START Filter Affiliate
if( affParam != null){
Affiliate aff =
_affiliateManager.getAffiliate(request.getParameter("aid"));
if(aff!=null){
String name = "aid";
String value = request.getParameter("aid");
_cookies.writeCookieValue("erweter","xxx","/153/");
//or
_cookies.writeCookieValue(name,value,60*60*24*31*12*10);
}
}
//END Filter Affiliate
return handler.service(request, response);
}
};
}
Cookies not saved!
--
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]