RE: Restlet - CharacterSet problem in represent method

2010-05-14 Thread Thierry Boileau
Hello Fabian, I've just fixed the issue in the 1.1 branch also. Thanks Fabian. Best regards, Thierry Boileau -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2609185

RE: Restlet - CharacterSet problem in represent method

2010-05-14 Thread cuaruja
Hi Thierry, You have corrected this for the 1.1 version or for the 2.0 version? Cheers, Fabian. -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/Restlet-CharacterSet-problem-in-represent-method-tp5035725p5051798.html Sent from the Restlet Discuss mailing list archive

RE: Restlet - CharacterSet problem in represent method

2010-05-14 Thread Thierry Boileau
Hello, I've just fixed a bug regarding the transmission of the DomRepresentation's character set to the underlying instance of Transformer that generates the result stream. With that fix, I was able to generate a correct representation encoded with the correct character set and declaring correc

Re: Restlet - CharacterSet problem in represent method

2010-05-14 Thread Bruno Harbulot
Hi, I'm not sure where this comes from, but it might come from the original string that you're reading (it's not clear from your code fragment). It looks like it could be read in UTF-8 and then written as if it was ISO-8859-1. You might be able to get the correct output if you make sure it's th

Restlet - CharacterSet problem in represent method

2010-05-12 Thread cuaruja
representation; } catch (IOException e) { e.printStackTrace(); } } return null; } what's wrong with this code? Could you help me? -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/Restlet-