[Solved] The trouble with the queues and non-ASCII characters

With the v2018.4 orchestrator, non-ascii characters that are posted as string members of a QueueItem are escaped:
image

Among the people who are facing the same issue, has anyone come up with a “nice” alternative solution for embedding special characters into a QueueItem, while keeping them readable (i.e. not by converting the text to base64)?

3 Likes

Solved by changing the parameter “OData.BackwardsCompatible.Enabled” to TRUE in the orchestrator’s web.config.

5 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.

Thank you for sharing the solution.
Elaborating the solution:
Add the below to the appsettings section

Now , verify .
(For any changes in web.config - it’s mandatory to restart the website for the changes to come in effect)
test results with different non -ascii characters
image

Thus these confirms it works.

5 Likes