* Requires a "ejb-local-ref" definition in web.xml and ejb-jar.xml from all accessing components
* or an application server that support global JNDI names (introduced in EJB 3.1).
* @return a reference to the bridge SSB
*/
private EjbBridgeSessionLocal getEjbLocal() {
EjbBridgeSessionLocal ret = null;
try {
if (!useEjb31GlobalJndiName) {
ret = (EjbBridgeSessionLocal) getInitialContext().lookup("java:comp/env/EjbBridgeSession");
}
} catch (NamingException e) {