[Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-24 Thread _HK_
Summary: I'm unable to send utf8 data using arsperl to my Remedy server which is unicode ready(and the remedy server works, as I can store utf8 data via other means). I tried setting the lang parameter in ars_Login function to UTF-8/utf8/en_US/en_US.utf8 and a few other combinations, but it

Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-24 Thread Conny.Martin
setting the encoding via lang parameter doesn't work. Try setting env-Variable LANG=en_US.utf8 Or you can use the attached patch, which introduces a new parameter (charSet) to ars_Login where you can specify the encoding. Possible (tested) values are utf8 1252 1250 HTH Kind Regards

Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-24 Thread Michiel Beijen
ARSperl is a lot older than the - pretty recent - unicode support in AR server. Because of this, ARSperl is not designed with unicode compatibility in mind. It does not handle strings internally as unicode. See perldoc perlunicode if you would like to see what it takes to make ARSperl handle

Re: [Arsperl-users] arsperl 1.91 ars_Login Unicode

2009-03-24 Thread _HK_
Thank you folks. LANG=en_US.utf8 alone seemed to fix it! cheers, ~H 2009/3/24 conny.mar...@t-systems.com setting the encoding via lang parameter doesn't work. Try setting env-Variable LANG=en_US.utf8 Or you can use the attached patch, which introduces a new parameter (charSet) to