Maria Sanchez [
http://community.jboss.org/people/mesanchez] replied to the discussion
"Is there a way to access the information send in the SOAPHeader within an endpoint
EJB?"
To view the discussion, visit:
http://community.jboss.org/message/552839#552839
--------------------------------------------------------------
One way to do it within an endpoint EJB:
@Resource
WebServiceContext ctx;
....
SOAPMessageContext msgc = (SOAPMessageContext) ctx.getMessageContext();
SOAPMessage soapMsg = msgc.getMessage();
// do what needed with information....
....
--------------------------------------------------------------
Reply to this message by going to Community
[
http://community.jboss.org/message/552839#552839]
Start a new discussion in JBoss Web Services at Community
[
http://community.jboss.org/choose-container!input.jspa?contentType=1&...]