Gerardo Corro wrote:
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?


I am afraid you can't. There is a reason why people are supposed to use standards.

Oleg

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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to