Hi!
> So ... Is there a way to extend ResourceBundle, fill it up with parsed
> values from the xml-file and finally use it in my jsf-page (with
> <f:loadBundle/>)?
>
Yes, exactly that way.
*) extend a class from ResourceBundle
*) implement
protected Object handleGetObject(String key)
public Enumeration<String> getKeys()
there you can deal with your xml files.
*) access it with <f:loadBundle
basename="FQN.TO.YOUR.ResourceBundleClass" var="bundle"/>
Thats it - And this it what we did in our application too ;-)
Ciao,
Mario