[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-28 Thread JohnBat26
Do really nobody know how resolve this trouble ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032646#4032646 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4032646 ___ jboss-

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread waynebagguley
do you have seam.properties in the right place? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032654#4032654 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4032654 ___ jboss-u

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread [EMAIL PROTECTED]
Post the code for your session bean. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032662#4032662 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4032662 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread JohnBat26
waynebagguley: Yes, I put seam.properties (size: 0 b) in root ejb.jar This is parent class for session bean: -- package org.it.itMail.service; /** * Autogenerated EJB session bean base class UserActionBean. * * */ @javax.ejb.TransactionAttribute(javax.ejb.TransactionAttributeType.RE

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread waynebagguley
Don't you need an @Begin somewhere? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032691#4032691 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4032691 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread JohnBat26
Why I must add @Begin annotation to Session bean, and where I must put it. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032698#4032698 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4032698 ___

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread waynebagguley
Try adding @Begin(join=true) to the action method that is getting called View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032749#4032749 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4032749 __

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread [EMAIL PROTECTED]
Your session bean has no local interface. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032819#4032819 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4032819 ___ jboss-user ma

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread JohnBat26
[EMAIL PROTECTED]: My session bean has the local interface: -- package org.it.itMail.service; /** * Local component interface for the UserActionBean session bean. * */ public interface UserActionLocal { // --- Accessors For Constants // -

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread [EMAIL PROTECTED]
Then it needs to implement that interface! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032858#4032858 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4032858 ___ jboss-user m

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread stu2
Your local interface must be annotated with @Local, right? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4032928#4032928 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4032928

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread JohnBat26
I try recreate my project again. But SEAM don't find session bean afresh ! :( This is my local interface: package org.it.itMail.service; /** * Local component interface for the UserManagerBean session bean. * */ public interface UserManagerLocal {

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread stu2
Again, is your interface annoted with @Local, as required by the spec? I didn't see it if so. Try adding it, so your interface declaration looks like this: | @Local | public interface UserManagerLocal | { | ... | You may also have an easier time if you play with seam-gen a bit. C

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-29 Thread JohnBat26
I change local interface: - package org.it.itMail.service; import javax.ejb.*; /** * Local component interface for the UserManagerBean session bean. * */ @Local public interface UserManagerLocal { // --- Accessors For Constants

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-30 Thread waynebagguley
Do you have the code for UserManagerRemote? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4033043#4033043 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4033043 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-30 Thread waynebagguley
I suspect that you are getting an error on deployment that you have not seen. Check the log files. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4033080#4033080 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4033080 ___

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-30 Thread JohnBat26
I remove remote interface from implements list ! So, my session bean implement via parent class only Local interface. But SEAM don't find components again ? Does SEAM support parent from other bean ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4033084#4

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-30 Thread waynebagguley
Your bean class must have "implements UserManagerLocal" even though it implements it through an abstract class. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4033086#4033086 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-30 Thread JohnBat26
Why I don't can implement local interface from parent class ? Is this a SEAM problem, or no ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4033091#4033091 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4033091

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-30 Thread waynebagguley
No idea. It could be part of the EJB3 spec. Just add the 'implements' clause to your class. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4033093#4033093 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4033093 __

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-30 Thread [EMAIL PROTECTED]
It is actually a (fixed) bug in JBoss EJB3. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4033258#4033258 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4033258 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-31 Thread waynebagguley
Which version is it fixed in? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4033433#4033433 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4033433 ___ jboss-user mailing list j

[jboss-user] [JBoss Seam] - Re: SEAM don't can find session bean !!

2007-03-31 Thread JohnBat26
I have resolved this problem!!! Thank you all pacticipants of this topic ! I transfer all implements (from local and remote interface) from parent class to local class and all work !!! Visibly, impossible implement interface in parent class, when use with SEAM! I send a letter to androMDA's dev