会话 cookie - 服务器名称信息 - 可以在应用程序代码中完成吗
设想: 集群中的 2 台托管服务器。应用程序部署在集群上。
要求: 应用程序需要向用户发送带有服务器信息的 cookie。
问题是关于会话cookie。应用程序能否检索已处理该请求的服务器名称(例如 ManagedServer1)并在 cookie 中发送给用户?
请求->处理->带有 cookie 的响应,其中包含处理它的服务器名称。
可以在应用程序代码中完成吗?
/SR
Scenario:
2 managed servers in a cluster. Application is deployed on the cluster.
Requirement:
Application needs to send a cookie to the user with server info.
Question is regarding session cookies. Can the application retrieve the server name (for example ManagedServer1) from which that request has been processed and send to the user in the cookie.?
Request->process->Response with cookie containig the server name it was process by.
Can it be done in the application code?
/SR
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,请参阅 request.getServerName()< /a>.
Yes, see request.getServerName().