This should work fine:
public class SeamVariableResolver implements VariableResolver {
|
| public Object resolveVariable(String name) throws ELException {
| name = name.replace('$', '.');
| return Component.getInstance(name, true);
| }
|
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3972843#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...