https://bz.apache.org/bugzilla/show_bug.cgi?id=60013

--- Comment #4 from santhanapreeth...@gmail.com ---
I tested by encoding the querystring in the RewriteValve

if (queryString != null) 
{  
     request.getCoyoteRequest().queryString().setString(null);
     chunk = request.getCoyoteRequest().queryString().getCharChunk();
     chunk.recycle();
     //chunk.append(queryString);

     chunk.append(URLEncoder.DEFAULT.encode(queryString));
     request.getCoyoteRequest().queryString().toChars();
}

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to