My error is: "Invalid byte 1 of 1-byte UTF-8 sequence".
I am calling a Java method using Blaze DS.
|
|
|
Hi Nithi Make sure that "remoting-config.xml" destination id and source name are correct. |
|||
|
|
|
Your XML document has a BOM marker, because it was created with a Windows program. Java does not support this out of the box. Regarding BOM: http://www.unicode.org/faq/utf_bom.html So either make sure your XML Document has no BOM marker, (if it is your ds config file), or use something like this in your InputStream: (not my code) http://koti.mbnet.fi/akini/java/unicodereader/UnicodeInputStream.java.txt
|
||||
|
|
|
not enough details in the question. my guess, looks like you are trying to read something as UTF-8 encoded and it is not valid UTF-8 encoded. |
|||
|
|
|
|||
|
|