I want to share an object between my servlets and my webservice (JAX-WS) by storing it as a servlet context attribute. But how can I retrieve the servlet context from a web service?
|
feedback
|
|
The servlet context is made available by JAX-WS via the message context, which can be retrieved using the web service context. Inserting the following member will cause JAX-WS to inject a reference to the web service context into your web service:
Then, you can access the servlet context using:
| |||||
feedback
|
|
Saved my day. But note, that it is accessible just after the ctor finished :( So don't know how to figure out the applicationContext with not much boilerplate code... Any ideas how to shorten this?
| |||||
feedback
|