Yes, we do.
If you want to use simple GET to retrieve the document from service, you
can do it with:
* .../customers/FirstName/{first_name}/LastName/{last_name}
Or
* .../customers/?FirstName={first_name}&LastName={last_name}
FirstName/LastName is the name attribute of the WebParam annotation in
the SEI.
If your parameter order is determined, than you can ignore the
FirstName/LastName, i.e .../custormers/{first_name}/{last_name}
James
does cxf support multiple parameters?
.../customers/{first_name}/{last_name}