given the following annotated method in an interface

    @Get
    @HttpResource(location = "/{first},{last}")
    @WebResult(name = "nameInfo")
    NameInfo getName(
        @WebParam(name = "nameOptions")
        NameOptions nameOptions
    );

the nameOptions.first and nameOptions.last are populated properly when delimited by a comma, however using:

    @HttpResource(location = "/{first}/{last}")

note here it is delimited by a slash (/), then only the last property is set.

Any hints are very much appreciated.

Mansour
:-)


Reply via email to