WadlGenerator does not respect Consumes annotation
--------------------------------------------------
Key: CXF-3135
URL: https://issues.apache.org/jira/browse/CXF-3135
Project: CXF
Issue Type: Bug
Affects Versions: 2.3.0
Environment: any
Reporter: Guy Dumais
Priority: Minor
{{WadlGenerator}} invokes {{handleRepresentation}} with the wrong parameter
when creating the {{<request>}} element. The last parameter of
{{handleRepresentation}} should be _true_ not _false_:
{code}
if (ori.getMethodToInvoke().getParameterTypes().length != 0) {
sb.append("<request>");
if (isFormRequest(ori)) {
handleRepresentation(sb, jaxbTypes, qnameResolver, clsMap, ori,
null, false);
} else {
for (Parameter p : ori.getParameters()) {
handleParameter(sb, jaxbTypes, qnameResolver, clsMap, ori,
p);
}
}
sb.append("</request>");
}
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.