[ 
https://issues.apache.org/jira/browse/CXF-4177?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13541424#comment-13541424
 ] 

David Liszewski commented on CXF-4177:
--------------------------------------

Thanks for fixing this one!  Was perplexed by this for a bit.  
                
> ClientProxyImpl does not order Path parameter values according to the 
> template order
> ------------------------------------------------------------------------------------
>
>                 Key: CXF-4177
>                 URL: https://issues.apache.org/jira/browse/CXF-4177
>             Project: CXF
>          Issue Type: Bug
>          Components: JAX-RS
>            Reporter: Sergey Beryozkin
>            Assignee: Sergey Beryozkin
>             Fix For: 2.3.10, 2.4.7, 2.5.3, 2.6
>
>
> ClientProxyImpl expects that the order of Path parameters matches the order 
> of the template variables, example,
> {code:java}
> @Path("{a}/{b}")
> @GET
> public Book getBook(@PathParam("a") String a, @PathParam("b") String b);
> {code}
> Having the different order, example
> {code:java}
> @Path("{a}/{b}")
> @GET
> public Book getBook(@PathParam("b") String b, @PathParam("a") String a);
> {code}
> breaks the URI generation...

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to