I am trying to push config with UTF-8 using JNC below method.
device.getSession(sessionName).rpc(rpc).toXMLString();
rpc contains the UTF string. But receiver those UTF-8 characters are conveted to ? instead of special characters.
Ex:
<id>1</id>
<versionID>1</versionID>
<status>TRACE_STATUS_ENABLED</status>
<subscriber>33344567</subscriber>
<startTime>2020-07-15T17:34:29</startTime>
<stopTime>2020-07-20T12:28:02</stopTime>
<description>Info. Ce numéro a appelé</description>
Receiver end :
<id>1</id>
<versionID>1</versionID>
<status>TRACE_STATUS_ENABLED</status>
<subscriber>33344567</subscriber>
<startTime>2020-07-15T17:34:29</startTime>
<stopTime>2020-07-20T12:28:02</stopTime>
<description>Info. Ce num?ro a appel?</description>
Is JNC API will convert these UTF-8 to non UTF-8. Pls suggest how to proceed.
BR,
Badari.