Root cause: The strings sent between the client plug-in and the integration server have different character encoding depending on the platform and language, causing decoding failures.
Java encodes with UTF-16 while the C++ code on Windows uses std::wstring which is not encoded properly when sent to the Integration server.
Root cause: The strings sent between the client plug-in and the integration server have different character encoding depending on the platform and language, causing decoding failures. Java encodes with UTF-16 while the C++ code on Windows uses std::wstring which is not encoded properly when sent to the Integration server.