Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.1-beta-1
-
Fix Version/s: 1.1
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
Response headers, specified by using annotations, are missing in the generated WSDL
Annotated interface:
@WebMethod(operationName="getFileByName")
@WebResult(name="result")
public BinaryFile getFileByName(
@WebParam(header=true, name="Credentials", mode=Mode.IN) final Credentials credentials,
@WebParam(header=true, name="ApplicationStatus", mode=Mode.OUT) ApplicationStatus applicationStatus,
@WebParam(name="name", mode=Mode.IN) final String name) throws FileNotFoundException;
generated WSDL snippet:
<wsdl:operation name="getFileByName">
<wsdlsoap:operation soapAction="" />
<wsdl:input name="getFileByNameRequest">
<wsdlsoap:body use="literal" />
<wsdlsoap:header message="tns:getFileByNameRequestHeaders" part="Credentials" use="literal" />
</wsdl:input>
<wsdl:output name="getFileByNameResponse">
<wsdlsoap:body use="literal" />
</wsdl:output>
<wsdl:fault name="FileNotFoundException">
<wsdlsoap:fault name="FileNotFoundException" use="literal" />
</wsdl:fault>
</wsdl:operation>
Scheduling this for 1.1. I'll try to get it fixed in the next day or two.