Edit: never mind, noticed the use utf8; in the lower example.

In the code you've shown, you don't tell Perl that the source contains characters already in UTF-8. I don't know if that's the cause of your problem with the SOAP serializer's encoding, but it could be. You should always give Perl a clue and point out that your source code is (partially) UTF-8 "high" characters, when you use them in the source code, with:

use utf8;
From the docs for utf8:

The use utf8 pragma tells the Perl parser to allow UTF-8 in the program text in the current lexical scope ...

Because it is not possible to reliably tell UTF-8 from native 8 bit encodings, you need either a Byte Order Mark at the beginning of your source code, or use utf8; , to instruct perl.


The way forward always starts with a minimal test.

In reply to Re: Encoding problem on SOAP web server by 1nickt
in thread Encoding problem on SOAP web server by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.