在 JAX-WS 中获取 Web 服务上下文侦听器?
当第一次加载 Web 服务时,我需要它向我安装的一个 Web 应用程序发送一条消息(它包含访问该服务的 url)。该 Web 应用程序正在跟踪活动的 Web 服务。我怎样才能做到这一点?
也许这不是正确的方法......但我需要一种简单的方法。
我可以访问 Web 服务上下文监听器吗?如果这是正确的方法...
我的环境是 JAX-WS 2.2、Javaee1.6、Glassfish 3.1。
When Web Service in loaded for the first time i need it to send a message(it contains the url to access this service) to one of my installed web applications. This web application is keeping track of alive web services. How can i achieve this?
May this is not the right way to do it...but i need a simplistic approach.
Can i get access Web Service Context Listner? If its the right way to go...
My environment is JAX-WS 2.2, Javaee1.6, Glassfish 3.1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在提出可能的答案之前我应该考虑一下。这里的答案可能很多人都已经知道了。
我在 Web Service 类中的 WebServiceContext 实例上使用 @Resource 注释。
I should have thought about it before putting the question about the probable answer. Here is the answer may be already many people know it.
I am using @Resource annotation on instance of WebServiceContext in my Web Service class.