Uh sorry sorry,
You'd need to patch getParameter not
getParameterValues
public String getParameter(String name) {
try {
Vector values = (Vector) parameters.get(name);
if ((values == null) || (values.size() == 0)) {
return null;
}
String value = (String) values.elementAt(0);
//patch
value = new String(value.getBytes("UTF-8"));
//patch over
return value;
} catch (Exception e) {
return null;
}
}
Note though, this is only going to work for parameters and not
attributes so if you have attributes that are not returning UTF-8 values
then we'll need to look at
util.ParseUtil.getParameter and make a similar adjustment there.
--
Shawn <[EMAIL PROTECTED]>
-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
DbForms Mailing List
http://www.wap-force.net/dbforms