Hi

It is interesting HttpHeaders.getRequestHeaders docs do talk about the
case-insensitive keys but UriInfo.getQueryParameters docs don't. I'll
need to ask a question on the jaxrs list.
What you can try to do is to reset a Message.QUERY_STRING on a current
message in a request filter:
 
String query = (String)message.get(Message.QUERY_STRING);
message.put(Message.QUERY_STRING, query.toLowerCase());

hope it helps, Sergey

-----Original Message-----
From: Linus Kamb [mailto:[email protected]] 
Sent: 02 February 2010 09:07
To: [email protected]
Subject: case-insensitive RS query parameters?

Hi,

 

Is it possible to configure CXF to have case-insensitive query
parameters in rs services?

 

cheers,

Linus

 

Reply via email to