WASSessionCor W SessionAffinityManager setCookie SESN0066E: 已针对客户机验证响应。无法设置会话 cookie
WASSessionCor W SessionAffinityManager setCookie SESN0066E: The response is already validated for the client. The session cookie can not be set
大家好我正在使用 spring 和 websphere 服务器 8.5
的应用程序网络
尝试验证后,我的控制台出现此错误
WASSessionCor W SessionAffinityManager setCookie SESN0066E: The response is already validated for the client. The session cookie can not be set.
我的 WAS 8 配置有问题,但我不知道是哪一个
如果有人遇到同样的问题告诉我应该编辑哪个配置
这看起来不像是配置问题,而是应用程序问题。幸运的是,这是一个编程问答网站。
此错误意味着您在响应 headers(通常是某些 body)已刷新到客户端后建立了新的 HTTP Session。建立一个新的 session 需要发送一个 cookie,并且 HTTP headers 在 body.
之前
您可能有一个 FFDC,它向您显示此 session 初始化发生位置的堆栈跟踪。您需要重组代码,使其发生在任何 body 是 written/flushed.
之前
大家好我正在使用 spring 和 websphere 服务器 8.5
的应用程序网络尝试验证后,我的控制台出现此错误
WASSessionCor W SessionAffinityManager setCookie SESN0066E: The response is already validated for the client. The session cookie can not be set.
我的 WAS 8 配置有问题,但我不知道是哪一个
如果有人遇到同样的问题告诉我应该编辑哪个配置
这看起来不像是配置问题,而是应用程序问题。幸运的是,这是一个编程问答网站。
此错误意味着您在响应 headers(通常是某些 body)已刷新到客户端后建立了新的 HTTP Session。建立一个新的 session 需要发送一个 cookie,并且 HTTP headers 在 body.
之前您可能有一个 FFDC,它向您显示此 session 初始化发生位置的堆栈跟踪。您需要重组代码,使其发生在任何 body 是 written/flushed.
之前