Re: XSL Character encoding issue

2010-03-17 Thread Willem Jiang
Jiang [mailto:willem.ji...@gmail.com] Sent: Wed 3/17/2010 4:50 AM To: users@camel.apache.org Subject: Re: XSL Character encoding issue Hi Joe, Can you show me the stack trace? I can't see anything wrong by going through the camel route. Willem Joe Osowski wrote: We're using Camel version 2.2.0 He

RE: XSL Character encoding issue

2010-03-17 Thread Joe Osowski
Thanks Willem, but I resolved this issue following the notes on this page: http://camel.apache.org/xslt.html Thanks -Joe -Original Message- From: Willem Jiang [mailto:willem.ji...@gmail.com] Sent: Wed 3/17/2010 4:50 AM To: users@camel.apache.org Subject: Re: XSL Character encoding issue

Re: XSL Character encoding issue

2010-03-17 Thread Willem Jiang
"log:org.plos.camel.routes.SolrArticleIndexMessageReceived?level=INFO&showExchangeId=true&showHeaders=true") .to("xslt:" + xslLocation + "?converter=xmlConverter") .to(ARTICLE_SOLR_QUEUE); -Original Message- From: Willem Jiang [mailto:w

RE: XSL Character encoding issue

2010-03-16 Thread Joe Osowski
xslt:" + xslLocation + "?converter=xmlConverter") .to(ARTICLE_SOLR_QUEUE); -Original Message- From: Willem Jiang [mailto:willem.ji...@gmail.com] Sent: Mon 3/15/2010 6:11 PM To: users@camel.apache.org Subject: Re: XSL Character encoding issue Hi, Can I hav

Re: XSL Character encoding issue

2010-03-15 Thread Willem Jiang
Hi, Can I have a look at your route? Basically, camel converter supports different character by setting the Exchange property with the key Exchange.CHARSET_NAME and value "UTF-8". In this way camel will set right character encoding when it need to change the byte into String. BTW, which vers

XSL Character encoding issue

2010-03-15 Thread Joe Osowski
I'm seeing some strange behavior with character encoding and the XSLT component. I'm trying to send a '𝒟' through (Hex: 𝒟). xsltproc handles the source xml/xsl transform fine. But the Camel transformation component munges this character into "??". There was another poster with a similar prob