Hi HC people,

I'm implementing a filter that processes requests from many sources, and I 
always do a redirection at the end, the problem I have is that some request are 
encoded with:

URLEncoder.encode(reqString, "UTF-8");

others not, so in my filter those that are not encoded work properly with: 

httpMethod.setURI(new URI(resourcePath.toString(), false));

and those that are encoded work properly with:

httpMethod.setURI(new URI(resourcePath.toString(), true));

How can I know whether or not an incoming request was encoded? or How can I 
deal with this?

Thanks in advanced!



_________________________________________________________________
Windows Liveā„¢: Keep your life in sync. Check it out!
http://windowslive.com/explore?ocid=TXT_TAGLM_WL_t1_allup_explore_012009

Reply via email to