I am loading some XML from a servlet from my Flex application as follows:
_loader = new URLLoader(); _loader.load(new URLRequest(_servletURL+"?do=load&id="+_id));
As you can imagine, _servletURL is something like http://foo.bar/path/to/servlet
In some cases, this URL contains accented characters (long story). I am unescaped string to a URLRequest , but it seems that flash is escaping from it and invoking a hidden URL, which is invalid. Ideas?
source share