Hi,

   you could implement your own client JAXWS handler (extending 
org.jboss.ws.core.jaxws.handler.GenericSOAPHandler). Put your
handler on the beginning of the handler chain and set up addressing
properties there:

   protected boolean handleOutbound(MessageContext msgContext)
  |    {
  | 
  | CommonMessageContext commonMsgContext = (CommonMessageContext)msgContext;
  | SOAPAddressingProperties addrProps = (SOAPAddressingProperties)
  | 
  | // construct new addressing properties
  | commonMsgContext.put(JAXWSAConstants.CLIENT_ADDRESSING_PROPERTIES_OUTBOUND, 
addrPropsPointingToProxy);
  | 
  |    }

Richard

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4108331#4108331

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4108331
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to