[jboss-user] [JBossWS] - Re: handler problem

2008-02-14 Thread [EMAIL PROTECTED]
Yes you can. You can modify the standard templates available here | server\\deploy\jbossws.sar\META-INF\standard-jaxws-endpoint-config.xml | server\\deploy\jbossws.sar\META-INF\standard-jaxrpc-endpoint-config.xml | See http://labs.jboss.com/jbossws/user-guide/en/html/1.0.4/en/html/endp

[jboss-user] [JBossWS] - Re: handler problem

2007-03-15 Thread khaledzarig
Hi, i am aware of this way (@HandlerChain ), but what i am trying to do is: Intecept soap message without the need to modify or add any code to the client or the endpoint code. I need something that helps me to intercept any soap message comes in or out of the jboss server. So, is there a way o

[jboss-user] [JBossWS] - Re: handler problem

2007-03-15 Thread [EMAIL PROTECTED]
The first thing is not to put your handler in jbossws packages. Keep them private to your application, that is a custom package. In order to deploy it with your actual endpoint you need to specify a @HandlerChain that points to your handler declaration. Did you read the userguide? http://jbws.dy

[jboss-user] [JBossWS] - Re: handler problem

2007-03-13 Thread khaledzarig
Hi, this the simple source code i used in my web service: @Stateless @Remote(EJB3RemoteInterface.class) @RemoteBinding(jndiBinding = "/ejb3/EJB3EndpointInterface") @WebService @SOAPBinding(style = SOAPBinding.Style.RPC) public class EJB3Bean01 implements EJB3RemoteInterface