| Author |
Stateful Web Service
|
Sim Kim
Ranch Hand
Joined: Aug 06, 2004
Posts: 268
|
|
JAX-WS has got @Stateful annotation using which a Web Service can be made stateful.In JEE putting @Stateful annotation makes a bean Stateful Session bean. So does this means that a Web Service Endpoint can be Servlet based or EJB Based (Stateless or Stateful) ? In JAX-RPC we could not have Stateful Session bean as Web Service ?
|
 |
Chintan Rajyaguru
Ranch Hand
Joined: Aug 19, 2001
Posts: 341
|
|
Aha! When I saw JAX-WS RI extension for stateful web services, I knew this would happen. The Stateful annotation for web services is com.sun.xml.ws.developer.Stateful and the Stateful annotation for ejb is javax.ejb.Stateful - two different things. A few things must be noted about stateful web services: 1. This is a vendor extension and not a standard specification, which means your code gets tied to the implementation and will not survive any server migrations 2. Different vendors use different ways to provide stateful web services. For example, IBM uses WS-Addressing and WS-Resource but Sun uses RI extension. I still think it's best to avoid stateful services 3. I believe Sun should avoid asking questions about things that are proprietary Now, if you still want to do stateful web services, you need to download and use appropriate version of JAX-WS RI that has this extension. In your code, you must use @com.sun.xml.ws.developer.Stateful AND @Addressing annotations in addition to the usual @Webservice annotation. Since we have established that the Stateful annotation doesn't make your class a stateful ejb, we must worry about the state management of the class. The container provided state management mechanism for a stateful web service is StatefulWebServiceManager class. Read more about this at here and here.
|
ChintanRajyaguru.com
SOADevelopment.com - Coming soon!
|
 |
Sim Kim
Ranch Hand
Joined: Aug 06, 2004
Posts: 268
|
|
|
Thanks Chintan !
|
 |
Peer Reynders
Bartender
Joined: Aug 19, 2005
Posts: 2906
|
|
Originally posted by Sim Kim: JAX-WS has got @Stateful annotation using which a Web Service can be made stateful.
Have you actually checked the JAX-WS specification? Stateful isn't anywhere in JAX-WS 2.1 MR2. As far as I can tell Stateful has been relegated to "plumbing" in WSIT/Metro to deal with some of the less standardized WS-* coordination and orchestration protocols that .NET uses. See A question about JAX-WS Stateful Web Service.
|
"Don't succumb to the false authority of a tool or model. There is no substitute for thinking."
Andy Hunt, Pragmatic Thinking & Learning: Refactor Your Wetware p.41
|
 |
Sim Kim
Ranch Hand
Joined: Aug 06, 2004
Posts: 268
|
|
Thanks Peer ! That was nice explanation.
|
 |
 |
|
|
subject: Stateful Web Service
|
|
|