Looked around on other threads, tried most suggestions but haven't managed to get my head around my setup.
I have an app with swedish characters for some titles in the .ds xml files.
I'm running on Tomcat with java_opts set to "-dfile.encoding=UTF-8"
I'm experimenting by opening up a .ds file in Ultraedit, changing stuff and stopping/starting tomcat to see what it looks like in the browser.
Basically, if i save the file as UTF-8 in Ultraedit and have encoding as UTF-8 in the ds. xml ehader, the swedish chars are not displayed properly.
HOWEVER, if i change the xml header to "ISO-8859-1", then save it as UTF-8, it works! This not a good solution, since i don't want to have to re-do that manually every time i change the file in Intellij (intellj saves the file in the encoding of the xml header)
Anybody have any additional ideas on how to sort this? Of course, i would love for it to be displayed properly when i have UTF-8 everywhere...
datasource file example:
I have an app with swedish characters for some titles in the .ds xml files.
I'm running on Tomcat with java_opts set to "-dfile.encoding=UTF-8"
I'm experimenting by opening up a .ds file in Ultraedit, changing stuff and stopping/starting tomcat to see what it looks like in the browser.
Basically, if i save the file as UTF-8 in Ultraedit and have encoding as UTF-8 in the ds. xml ehader, the swedish chars are not displayed properly.
HOWEVER, if i change the xml header to "ISO-8859-1", then save it as UTF-8, it works! This not a good solution, since i don't want to have to re-do that manually every time i change the file in Intellij (intellj saves the file in the encoding of the xml header)
Anybody have any additional ideas on how to sort this? Of course, i would love for it to be displayed properly when i have UTF-8 everywhere...
datasource file example:
Code:
<?xml version="1.0" encoding="UTF-8"?> <DataSource ID="userstatus" serverType="generic"> *** <fields> ******* <field name="id" type="sequence" hidden="true" primaryKey="true"/> ...
Comment