[jboss-user] [JBoss Seam] - Re: Having problems looking up a Seam component in the JNDI

2007-04-13 Thread c_inconnu
Hi, This is an old thread but i got the exact same problem. Have you managed to get this working ? I must say that i'm using Maven2. The following works in JBoss AS but not in the microcontainer : | @Local | public interface Authenticator | { | boolean authenticate(); | } | a

[jboss-user] [JBoss Seam] - Re: Having problems looking up a Seam component in the JNDI

2007-04-14 Thread zzzz8
I asked the same question in the EJB3 forum a while back and I didn't get a reply there either. I did not make any progress on this issue (and abandoned it). So unfortunately, I can't offer much help... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037342#

[jboss-user] [JBoss Seam] - Re: Having problems looking up a Seam component in the JNDI

2007-04-15 Thread c_inconnu
"8" wrote : I asked the same question in the EJB3 forum a while back and I didn't get a reply there either. I did not make any progress on this issue (and abandoned it). So unfortunately, I can't offer much help... Thanks... Anyone from the Seam team ? Please ? View the original post :

[jboss-user] [JBoss Seam] - Re: Having problems looking up a Seam component in the JNDI

2007-04-15 Thread [EMAIL PROTECTED]
anonymous wrote : | java:comp/env/ejb/TestConnectionBean/local | This just not the right JNDI lookup to get a remote EJB handle. I'm not sure what the right lookup is (definitely not with an ENC prefix) and if the old E-EJB3 container even supports remote JNDI/remote EJBs. I don't think it

[jboss-user] [JBoss Seam] - Re: Having problems looking up a Seam component in the JNDI

2007-04-15 Thread [EMAIL PROTECTED]
The newer Embedded JBoss5 container supports remote EJB/JNDI by the way, check the wiki. Now we only need a release of this and someone who will update all the Seam examples and the testing framework :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037398#4

[jboss-user] [JBoss Seam] - Re: Having problems looking up a Seam component in the JNDI

2006-10-03 Thread petemuir
I'm pretty sure Seam components aren't registered in JNDI, EJB3 session beans are though - The JNDI name in the Seam startup refers to this. I would suggest asking on the EJB3 forum about JNDI lookup of EJB3 session beans. View the original post : http://www.jboss.com/index.html?module=bb&op=v

[jboss-user] [JBoss Seam] - Re: Having problems looking up a Seam component in the JNDI

2007-10-02 Thread kosiakk
@Local interface is redundant now! just write | @Name("authenticator") | public class AuthenticatorAction | { ... } | and it will work after Seam2 integration =) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4090860#4090860 Reply to the post : htt