如何获取 Web 服务器中 javaws 启动的状态
我试图通过单击 JSP 上的链接从 struts 操作启动 JNLP 文件。如何知道客户端启动成功还是失败?如果不成功,那么我需要获取 JSP 或 struts 操作的指示。是否可以?
I'm trying to launch a JNLP file from my struts action, on clicking a link on a JSP. How can i get to know that the launch is successful on client side or is there any failure? If it is not successful then i need to get an indication to my JSP or struts action. Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有 JWS 应用程序。在您的网站上打开一个类似于以下内容的页面:
http://our.com/ launchstatus.jsp?name=OurApp&code=xXn5Ha9f4
其中
code
特定于该请求 &作为动态生成的 JNLP 文件中的属性提供。任何应用程序。您没有收到报告,由于某种原因失败。Have the JWS app. open a page at your site that is something like:
http://our.com/launchstatus.jsp?name=OurApp&code=xXn5Ha9f4
Where the
code
is specific to that request & is provided as a property in a dynamically generated JNLP file. Any apps. for which you do not get a report back, failed for some reason.