Background:
I am working on a project using EJB2 code. There are several EJBs grouped by business requirements, and the EJB Home interface is hosted on Tomcat and a jndi call directs it to EJB Service methods on JBOSS 4.2.x.
Now, every method across all EJBs contains a common argument called accountId
Requirement: the accountId is to be of a different format before being passed across the wire to JBOSS, but the format should remain the same in Tomcat.
Solution so far: Change every method in the EJB invoker to massage the accountId parameter. This is doable but tedious.
I was hoping if EJB2 provides any hook in ihe client lifecyle to handle such requirement. ?