Thanks craig & rick,
As a follow up, is there any way to organize namespaces in managed-bean-names? Apart from using underscores can I do something like:
<managed-bean-name>delegates.businessDelegate</managed-bean-name>
Im assuming the JSF EL will try to read that as:
delegate.getBusinessDelegate()
Any better way around that than really long names?
It will indeed treat the "." as a delimiter. I use "$" characters in my long names since that is a legal character in identifiers.
Dhanji.
Craig

