Hi,
I think the field case settings for (at least) the webservice documentation is ignored. I'm using Queues as return type and have external names on the fields and set the "Fieldname Case" to "AsIs", but the documentation for the JSON output shows up as uppercase. (XML output shows mixed case, so that's fine). Using Nettalk 8.65 and jFiles 1.13
first a snippet for the generated XML (correct):
<category>
<id>value</id>
<label>value</label>
</category>
and this is for the JSON:
"category" : [
{
"ID" : value,
"LABEL" : "value"
}
]
Don't know what the actual output is like (need to test this ...)