Mohan
Mohan

Reputation: 520

mule multi language data transfer support via http

I wanna help in achieving below mule use-case.Mule flow contains http-inbound-endpoint and object-string transformer(optional) and logger which prints the payload.

Requirement is that i am invoking flow with rest client with a json string

{
"name":"ساختبار",
"age":"25"
}

in the json string name can of different language for example Arabic language string.

I tried with same implementation with sample json string with name defined in Arabic input string from rest client.But while checking the logger output prints

{
"name":"???????",
"age":"25"
}

instead of actual input.

How i can get the actual Arabic or any language input string printed in logger.

Upvotes: 2

Views: 265

Answers (1)

Víctor Romero
Víctor Romero

Reputation: 5115

As per forum, set the correct Eclipse console encoding following these instructions and set the appropiate encoding on your endpoints.

Upvotes: 1

Related Questions