Hi Guys! Me again...
Ok, I try to convert the xml resulting from the script step: Save a Copy as XML to a JSON using the XML.ToJSON from MBS, but is imposible to convert the UTF-16 result from the Save a Copy as XML into a UTF-8 (or get rid from the funny chars at the beginning of the file).
I tried to read the contents from the container using TextDecode but surprisingly?? doesn't accept the utf-16 as encoding...
I tried Read from Data File to read directly from the disk but no success, tried XML.ReadContainer and XML.ReadFile from Monkey but no success.
I feel I am missing something obvious here, so I am stirring the soup again...
Thanks. I'm sure @MonkeybreadSoftware will have some good suggestions for using his plug-in.
I personally tend to write my own code for these kinds of things (REST) where I have rich XML and JSON libraries -- all free. I call that code from FileMaker using INSERT FROM URL.
MBS knows "Plugin.LoadIconvLibrary" and iconv can convert UTF-16 to UTF-8. However, the description of this function doesn't mention if and how it can be used directly. The iconv CLI tool can convert a file with "iconv -f <enc> -t <enc> ...". Maybe you could just feed a text to the library, telling it what to convert from and to?
Sorry, there is "Text.ConvertFromTextEncoding" and "Text.ConvertToTextEncoding". But you also have to "Text.EncodeToHex" and "Text.DecodeFromHex", but I'm not sure how to combine it without testing...