"Derek Wueppelmann" <[EMAIL PROTECTED]> writes: > I seem to be having problems reading an XML file that contains accented > characters. The file says that the encoding should be UTF-8 whcih works > just fine for all the other files without accents. Here is a brief > summary of what I am running. > > Xerces-c 1.3 > Xerces-p 1.3.2 > > These were the only versions that would compile under Redhat 6.2. I > can't upgrade Perl since we are using alot of modules that were compiled > to work with perl 5.005.
Perl didn't have support for UTF-8 until 5.6.0, you *must* upgrade if you plan to use unicode. You can compile perl with compatibility mode so that it will run your previous 5.005 modules as well. You must upgrade to Xerces-C-1.5.2 (*not* 1.6.0), and XML::Xerces-1.5.2_0. This is first release that will support any encoding besides ASCII. jas. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
