Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Problem with SOAP::Lite and accented characters.

by clinton (Priest)
on Dec 11, 2006 at 20:43 UTC ( [id://589148]=note: print w/replies, xml ) Need Help??


in reply to Problem with SOAP::Lite and accented characters.

In your simple case, unless you have

 use utf8;

in your script, the joé is not being interpreted as UTF8. You may want to try:

$ref->{data}->firstname="jo\x{e9}";

to be sure that it is interpreted correctly.

When I retrieve UTF8 from MySQL, I do:

 utf8::decode($value)

to make sure that it is correctly interpreted as UTF8

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://589148]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (10)
As of 2024-04-19 09:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found