会话不应过期
我有2个应用程序,
- 1个作为A应用程序,
- 2个作为B应用程序。
现在,我从 A 导航到 b 应用程序,我将在那里花费一些时间。在 BI 中有一个注销按钮,如果用户单击该按钮,它应该返回到应用程序 A,并且会话完好无损。
我使用的是J2EE和Weblogic服务器,这里a和b的服务器也不同。 谁能帮帮我,我需要在今天晚上之前完成这项工作。 提前感谢您的帮助。
I have 2 application,
- 1 as A application and
- 2 as B application.
Now from A , I am navigating to b application, there I will spend some time. And In B I have a log off button, if user clicks on that, it should come back to application A, with session intact.
I am using J2EE and Weblogic server, Here servers of a and b are also different.
Can any one please help me, I need to complete this work by today eveining.
Thank you for your help in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是一种实现方法:
response.sendRedirect()
。Here is one way of doing it
response.sendRedirect()
to the application A.