Hello,
I am trying to consume a remote ejb that is running on WLS 9.2 using the SessionEJBControl control. According to the docs, the syntax using jndi://.. Should work as the following code snippet shows. @ControlExtension //@EJBHome(jndiName = "com.server.MyServiceBeanRemoteHome") // <<<<-------- This works @EJBHome(jndiName="jndi://weblogic:[EMAIL PROTECTED]:7001/com.server.MyServ iceBeanRemoteHome") // <<<<---- This fails public interface MyServiceBeanControl extends ... However, this fails. Obviously, I am missing something. What is the correct syntax for a remote session bean? Thanks, Tim
