I have an external app on a rasp pi which calls a piston and passes JSON data. This is working fine unless any of the data uses extended ascii e.g “Daniël”
If I use codeset utf-8 in the send, I receive a failure from webcore
statusCode: 500
{“error”:true,“type”:“org.codehaus.groovy.grails.web.converters.exceptions.ConverterException”,“message”:“An unexpected error occurred.”}
If I use codeset utf-16 it works, however the Sargs parameter does not include the JSON data.
Using codeset utf-8, and no extended ascii data, works, and $args contains the JSON data.
I know webcore can receive this data, as another third party app can send the extended ascii data in JSON.