WSO2中如何设置Web APP的访问超时时间?
有谁知道如何配置 WSO2 应用程序服务器提供的 Web 应用程序的请求超时? 我还找不到如何设置此超时,或者至少找出默认值。 WSO2 是一个很棒的应用程序服务器,但缺乏良好的文档。
我正在对 Java Web 应用程序(导出为 .war)中包含的 Web 服务进行特定调用,该应用程序由 WSO2 应用程序服务器托管。
Does anyone know how to configure the request timeout to a Web App served by WSO2 app server?
I couldn't find yet how to set this timeout, or at least find out what's default. WSO2 is a great app server, but lacks good documentation.
I'm making specific calls to web services contained in a Java Web App (exported as .war), that is hosted by WSO2 app server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您的问题,您正在 WSO2 AS 中托管一个网络应用程序。
您可以在 Web 应用程序的部署描述符 (web.xml) 中指定会话超时:
session-timout 元素中的数字必须以分钟为单位表示。
谢谢...
As per your question you are hosting a web app in WSO2 AS.
You can specify the timeout of a session in the deployment descriptor of your web application (web.xml):
The number within the session-timout element must be expressed in minutes.
Thanks...