Hello

What is the exception that you are getting? I have tried various
browsers, sending the data using various character encodings, and using
variable names and values with "funny characters", and the only time
there is a problem is if you are using a variable name with a character
not encodable by the character encoding specified in the response. This
is because these characters will then be translated into question marks
and are so can't be used in variable names.

Try setting UTF-8 as your character encoding before sending the JSON
response, i.e.:

response.setCharacterEncoding("UTF-8");

Hope that helps
James


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CTJUG Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/CTJUG-Forum
For the ctjug home page see http://www.ctjug.org.za
-~----------~----~----~----~------~----~------~--~---

Reply via email to