HTTP binding/REST does not handle Wrapped request correctly
-----------------------------------------------------------
Key: CXF-903
URL: https://issues.apache.org/jira/browse/CXF-903
Project: CXF
Issue Type: Bug
Environment: See
Reporter: Jervis Liu
see
http://mail-archives.apache.org/mod_mbox/incubator-cxf-user/200708.mbox/[EMAIL
PROTECTED]
This is caused by HTTP binding did not create schemaInfo for
BindingOperationInfo correctly for wrapped style. Eg a schema instance is
generated for the following java method,
<echo xmlns="http://book.acme.com"><arg0/></echo>
> @Get
> @Override
> @HttpResource(location="/echo/{echoData}")
> public String echo(String echoData) {
> return "Echo:" + echoData;
> }
This resulted in parameter matching problems in
URIParameterInInterceptor.mergeParams()
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.