in reply to Re^6: WWW::Mechanize always use utf8
in thread WWW::Mechanize always use utf8

If it's not, you can do something like adding the following to your form:
qq{<input type="hidden" name="shibboleth" value="\x{E9}">}

If you get %E9, you got iso-latin-1 as desired.
If you get %C3%A9, you got UTF-8 instead.

Replies are listed 'Best First'.
Re^8: WWW::Mechanize always use utf8
by way (Sexton) on Mar 24, 2009 at 20:56 UTC

    Ok, I catch you, I reported the issue, thank you again.