International Charsets in embedded XML

2006-06-13 Thread Fabio Confalonieri
Here I am again with a subtle problem: I need to store XML in a document field. I declare it as string and surround it in CData when I post the add xml. -- View this message in context: http://www.nabble.com/International-Charsets-in-embedded-XML-t1779810.html#a4845328 Sent from the Solr - User

International Charsets in embedded XML

2006-06-13 Thread Fabio Confalonieri
(sorry the last one got wrongly posted) Here I am again with charset encoding problems: I need to store XML in a document field. I declare it as string and surround it in CData when I post the add xml. Now the problem is I have some Iternational char in the XML: say ì or à and also € (i don't k

Re: International Charsets in embedded XML

2006-06-13 Thread Mike Klaas
On 6/13/06, Fabio Confalonieri <[EMAIL PROTECTED]> wrote: (sorry the last one got wrongly posted) Are you sending Content-Type headers with appropriate charset indicated? Is your xml fully-escpaed in your update message? -Mike

Re: International Charsets in embedded XML

2006-06-13 Thread Fabio Confalonieri
Klaas-2 wrote: > > Are you sending Content-Type headers with appropriate charset > indicated? Is your xml fully-escpaed in your update message? > ...no, actually I simply make a URLConnection conn = url.openConnection(); conn.setRequestProperty

Re: International Charsets in embedded XML

2006-06-13 Thread Ken Krugler
Klaas-2 wrote: Are you sending Content-Type headers with appropriate charset indicated? Is your xml fully-escpaed in your update message? ...no, actually I simply make a URLConnection conn = url.openConnection(); conn.setRequestProperty("Con

Re: International Charsets in embedded XML

2006-06-13 Thread Mike Klaas
On 6/13/06, Fabio Confalonieri <[EMAIL PROTECTED]> wrote: Klaas-2 wrote: > Are you sending Content-Type headers with appropriate charset > indicated? Is your xml fully-escpaed in your update message? ...no, actually I simply make a URLConnection conn = url.openConnect