Here's my issue. I have an
applet that I'm deploying as part of a WAR file within Weblogic. I now have a new requirement that a dropdown list within the applet should be able to be admin configurable, which means that a sys admin should be able to add/change/delete entries that will be shown in that dropdown, via tweaking of that config file. The only thing I can think of is to crack open the WAR, change the config file that is used to populate the dropdown, reWAR the file, then restart Weblogic. Which is not really a good solution.
I also don't want to deploy this applet in exploded format, as this is a production applet. Any ideas?