[
https://issues.apache.org/jira/browse/CXF-2958?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Sergey Beryozkin updated CXF-2958:
----------------------------------
Component/s: JAX-RS
> CXF JAXRS Proxies can not handle explicilt collections of query and matrix
> parameters
> -------------------------------------------------------------------------------------
>
> Key: CXF-2958
> URL: https://issues.apache.org/jira/browse/CXF-2958
> Project: CXF
> Issue Type: Bug
> Components: JAX-RS
> Affects Versions: 2.2.10
> Reporter: Sergey Beryozkin
>
> Client proxies fail to serialize explicit collections of query and matrix
> parameters, ex
> doIt(@QueryParam("id") List<Long> ids)
> Possible fix :
> In AbstractClient.addParametersToBuilder :
> there's a branch there
> if (!"".equals(paramName)) {
> addToBuilder(ub, paramName, pValue, pt);
> }
> I think it has to be something like :
> if (!"".equals(paramName)) {
> if (InjectionUtils.isSupportedCollectionOrArray(pValue.getClass())) {
> // cast pValue to Collection and for every member
> addToBuilder(ub, paramName, pValue, pt);
> } else {
> addToBuilder(ub, paramName, pValue, pt);
> }
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.