I am trying to use wicket to generate an XML file instead of an HTML file. I have no problem setting the correct markup type and using an XML file as the markup instead of an HTML file. I can get a basic XML file to generate without problems.
However, if I try and use any <wicket:message> tags or anything that uses a Localizer, it doesn't work. This is because the localizer attempts to look for properties in both .properties and .xml files. The resolution process matches the page's markup file as an .XML properties file and attempts to load it. This of course breaks. So, if I want to generate an XML file, I can't use any wicket localization techniques. Do you have any suggestions? Thanks, Mark.
