WebSphere 8.5上的Liferay 6.2;错误的cookie值

时间:2014-11-03 09:38:09

标签: liferay websphere-8

我们在一个portlet上创建的一些类有一些问题,这些类创建和检索cookie。我们的原始代码在本地Tomcat上运行良好,但是当我们在Websphere 8.5上安装portlet时,该值将被截断。 Cookie的原始内容是这样的JSON:

  

[{ “passengerType”: “成人”, “passengerAmount”:2}]

这是在tomcat中但在Websphere上的问题中检索到的:

  

String cookieValue = CookieKeys.getCookie(httpRequest,cookieName);

返回:

  

[{ “passengerType”: “成人”

看起来问题出在逗号上,但是我检查了Websphere文档并搜索了一下并且没有找到任何引用。 有人在类似的东西上运行吗? 提前谢谢。

0 个答案:

没有答案