UTF-8 encoding problems under Apache 2 with mod_perl 2.

2007-04-04 Thread Tamer Embaby
All, I have character encoding problem with my environment: $ uname -a SunOS vulcano 5.10 Generic_118844-26 i86pc i386 i86pc Server: Apache/2.0.58 (Unix) mod_perl/2.0.3 Perl/v5.8.4 I'm hosting commercial application using mod_perl, the site we are dealing with has Arabic character so I changed

YAPC::Europe Call for Hackathons

2007-04-04 Thread Thomas Klausner
Hi! YAPC::Europe 2007 is looking for people who would like to moderate a ~3 hour hackathon on e.g. mod_perl. You can find more information on what we're looking for and what we can offer to moderators (eg travel funding) on our website: http://vienna.yapceurope.org/ye2007/cfh.html We're

SOPE::Lite / prcessing complex data types at server side

2007-04-04 Thread Tobias Regneri
Hi List, currently I'm developing a soap server with SOAP::Lite. Now i ran into trouble because I use an own schema with complex data types. On client side everything works fine. Now I try to handle the generated requests on the server side. But I can't figure out how the deserializer presemts me

Re: UTF-8 encoding problems under Apache 2 with mod_perl 2.

2007-04-04 Thread Perrin Harkins
On 4/4/07, Tamer Embaby [EMAIL PROTECTED] wrote: Server: Apache/2.0.58 (Unix) mod_perl/2.0.3 Perl/v5.8.4 You probably want a later Perl than that. Many unicode bugs have been fixed since then. I have a hunch that it's something to do with the Locale passed to the mod_perl that I should be

getting vhost ServerAliases used in conf

2007-04-04 Thread Iosif Fettich
Hello, quick question: is there currently a way to get the ServerAliases used for an virtual host in config ? My Apache2::ServerRec man page offers the names method for that, but it seems to be just a placeholder for code to come, as the function would return an APR::ArrayHeader object and

Re: SOPE::Lite / prcessing complex data types at server side

2007-04-04 Thread Robert Landrum
Tobias Regneri wrote: package MyService; sub AddGroupAttributes { ($self, $provider, $group, $attrlist) = @_; ($name, $hashref) = split('=', $attrlist); $params = $$hashref; ... } the variables $provider and $group are set correctly but the hash for the list items is empty. Do I

Re: UTF-8 encoding problems under Apache 2 with mod_perl 2.

2007-04-04 Thread Jeff Nokes
We also do everything (not source code, which is in ISO-8859-1, only content) in UTF-8 where I work, and we support many different languages. We never use any apache configurations or make any explicit reference to the OS locale being used. As of Perl 5.8*, internally Perl assumes UTF-8 for

Re: UTF-8 encoding problems under Apache 2 with mod_perl 2.

2007-04-04 Thread Jeff Pang
We also do everything (not source code, which is in ISO-8859-1, only content) in UTF-8 where I work, and we support many different languages. Jeff,how did you do it by using utf-8 for everything?can you give a rough description?Thanks. -- mailto: [EMAIL PROTECTED]

Re: UTF-8 encoding problems under Apache 2 with mod_perl 2.

2007-04-04 Thread Jeff Nokes
Well, We completely separate out our content, from our presentation templates, from our source. We use HTML::Mason mostly as a layer of abstraction to mod_perl's raw API, and then use HTML::Template to munge our content with our templates in pre-release batch mode and/or dynamically. We keep