|
|
Is there any specific support for JAX-WS 2.0 web services (inside Sun App. Server 9.0) or it works the same way as JAX-RPC described here: sp....html#d0e22678
I use annotations for defining web services like:
Code:
@WebService()
public class AAAWebService {
@WebMethod public User authenticate(String uname, String password) { //... }
}
And I can get my business services using quot;WebApplicationContextUtilsquot; but it would be better to have them injected.
Maybe we can discuss this:
showthread.php?t=30319
Best regards,
Jose Manuel Beas
Although this is an old and dead thread, it's one of the first search results on Google for quot;spring jax-wsquot; so I thought I'd post a link to documentation on how to merge the two:
nonav/spring/
It was a good idea to post that link here. It was very helpful for me.
I'm not sure whether I can be helpful but It seems like integration with JAX-WS web services was added for Spring 2.5.X. Please check the Spring 2.5.X reference documentation for extra details. |
|