[jboss-user] [JBossWS] - Re: SOAP header not being set as request param
heiko.braun@jboss.com
do-not-reply at jboss.com
Thu Aug 9 07:26:45 EDT 2007
IMO the SEI is wrong. Changing it to use an INOUT holder for the header make the test succeed:
@WebMethod(operationName = "SubmitBasket")
@WebResult(name = "receipt", targetNamespace = "http://www.m-bar-go.com", partName = "response")
public Receipt submitBasket(
@WebParam(name = "inout", targetNamespace = "http://www.m-bar-go.com", header = true,
mode = WebParam.Mode.INOUT)
Holder header,
@WebParam(name = "basket", targetNamespace = "http://www.m-bar-go.com", partName = "request")
Basket request)
throws Exception;
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072442#4072442
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072442
More information about the jboss-user
mailing list