if input message part defined in soapheader, the operation miss this input args
-------------------------------------------------------------------------------
Key: CXF-766
URL: https://issues.apache.org/jira/browse/CXF-766
Project: CXF
Issue Type: Bug
Reporter: Freeman Fang
the operation defined in wsdl is
<wsdl:operation name="EchoBinaryHeaderAsString">
<soap:operation
soapAction="http://xmlsoap.org/Ping/IMtomTest/EchoBinaryHeaderAsString"
style="document" />
<wsdl:input name="InputMessageContract">
<soap:header message="i0:InputMessageContract_Headers"
part="ByteArray" use="literal" />
<soap:body use="literal" />
</wsdl:input>
<wsdl:output name="OutputMessageContract">
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
but the operation in generated code is
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
@WebResult(targetNamespace = "http://xmlsoap.org/Ping", partName =
"StringValue", name = "StringValue")
@WebMethod(operationName = "EchoBinaryHeaderAsString")
public java.lang.String echoBinaryHeaderAsString();
It miss the input arg
attachment is the wsdl
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.