It seems that jMatter assumes that app-config.xml is UTF-8 encoded and
proceeds to ignore the encoding-attribute of the xml specification...
i just tried something simple, like using an a-umlaut in the
application name
in app-config.xml, like this:
<?xml version="1.0" encoding="UTF-8"?>
<application name="Symposium Manäger">
<view-mechanism>com.u2d.view.swing.SwingViewMechanism</view-mechanism>
<look-and-feel>Metal</look-and-feel>
<page-size>15</page-size>
...
i then started up the application and verified that the jframe's title
correctly displayed the specified unicode character, which works.
thanks, / eitan
<?xml version="1.0" encoding="ISO-8859-1"?>
<application name="Behörighetsadministration">
...
But you need to use jEdit or some such, change BufferOptions to
encoding ISO-8859-1 and save it.
When I save it as UTF-8 it works, the gripe was that the encoding
attribute seems to be ignored.