Hi there
I am very new in useing jsp but here is my first problem. I registered a bean in the applicationContext.xml with the id myBean. Now I want to call a function like this
${myBean.myFct}
but the function does not exist and it should not. In PHP there exists a Method __call which will be executed with the method name and args where the invoked method does not exist. It's something like a fallback before the error occures (http://www.garfieldtech.com/blog/php-magic-call). Is there may something similar in JSP? I looked at the source (http://kickjava.com/src/org/apache/myfaces/el/PropertyResolverImpl.java.htm) but i dont finde something like that.
Thanx for every answer!
Dominic