Hi,

It might be an easy solution, but I need help around this issue.
If I load xml file which contains following text. It failed because I am using encrypted characters in Password.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<CONFIGDATA>
	<DATABASE>
		<DATABASENAME>Symbol</DATABASENAME>
		<PRIMARYSERVER>172.27.15.240</PRIMARYSERVER>
		<SECONDARYSERVER>172.27.15.240</SECONDARYSERVER>
		<USERNAME>admin</USERNAME>
		<PASSWORD>uÉ£ë@Å</PASSWORD>
	</DATABASE>
</CONFIGDATA>
If I use a plain text in Password element then I can load same file successfully.

I don't know whats kind of encoding I can use for this file or else needs to be fixed to read encrypted characters.

Thanks.