Hi everyone,
We have some Java API service and S/4 Hana as a back-end store.
If we add any characters to the request body, such as "привет", 你好","여보세요" or any other characters from different languages, we will get a response which containing “????? “ instead of special characters.
Every part of body request wrap by org.apache.http.entity.StringEntity but it used contentType = text/plain; charset = ISO-8859-1 by default and we can not change it . As a result, we get question marks.
com.sap.cloud.sdk.odatav2.connectivity.impl.BatchRequestImpl
So, the question is how to fix it, bcs I didn't find any possibility to change charset on UTF-8 for example.
I used com.sap.cloud.servicesdk:odatav2-connectivity - 1.34.1 version lib for executing batch requests on Java side.