I had this working but something I changed broke it...

I am running JBoss in one session and have deployed my bean

02:17:44,363 INFO  [EJBContainer] STARTED EJB: com.patient.ejb.MyBean ejbName: 
MyBean
02:17:44,363 INFO  [EJB3Deployer] Deployed: file:/C:/Program 
Files/jboss_4_0_4/server/default/deploy/patient.ejb3

My program connects, finds the bean but fails to find the remote interface?

     [java] MyBean/Remote
     [java] javax.naming.NameNotFoundException: Remote not bound
     [java]     at org.jnp.server.NamingServer.getBinding(NamingServer.java:529)

I didnt change my bean much - just the method contents and a few imports...?

@Stateless
public class MyBean implements IMyRemote {
        public String myMethod() {
                      ...
        }

@Remote
public interface IMyRemote {
        public String myMethod();
}


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955445#3955445

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3955445

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to