[jboss-user] [EJB 3.0] - Re: injection SFSB to SLSB

2009-05-02 Thread xmedeko
Well, this probably point into the soltion:

http://www.jboss.org/index.html?module=bb&op=viewtopic&t=73311

Proxies to the session beans must be serializable, so they can be used to pass 
around ...

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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4227809
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: injection SFSB to SLSB

2009-04-16 Thread xmedeko
I fact, when I use just one SFSB, then it works fine, just I have many methods 
there and sometimes ugly names like getCountForAAA(), getCountForBBB(). I still 
cannot believe there is not any nice easy way how to break my code into more 
objects :-)


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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4225992
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: injection SFSB to SLSB

2009-04-16 Thread xmedeko
Well, then I do not see, why SFSBs exists. I have hoped they can do this for me.

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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4225948
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: injection SFSB to SLSB

2009-04-16 Thread itsme
Just a possibility to get rid of this problem could be to transfer the session 
informations between the client and server (like cookies). If this would be to 
big, you can also maintain all session information on the server side 
(database) and just transfer the session id.

We are using the second approach where the client sends with every request his 
session id to the server. This can be done by facading the already written 
ejb's with another ejb but needs change in every server request at client side.

Hope this helps in a way.

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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4225926
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: injection SFSB to SLSB

2009-04-16 Thread xmedeko
Hmm, I have changed my all SLSBs info SFSBs, but it didn't help my problem. If 
fact, I need something like http session, but for session beans called from 
Swing client. I.e. the client calls a several session bean, they gets some 
object which are related to this client (a quick operation) and then make some 
lengthy operation, like accessing DB or the local filesystem.

Yes, if I will have just one SFSB, then it would work for me. However, I'd like 
to have more remote interfaces just to have the code logically separated, since 
I have a quite few business methods to call.

Thanks for any help
Andy

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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4225923
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: injection SFSB to SLSB

2009-04-16 Thread xmedeko
Hmm, I think injecting of SFSB into SLSB is a wrong design:

http://www.coderanch.com/t/436872/EJB-Other-Java-EE-Technologies/java/Dependency-injection-stateful-session-beans


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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4225900
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: injection SFSB to SLSB

2009-04-16 Thread xmedeko
I have a similar problem with JBoss 5.0.1 GA. I have one SFSB (which holds some 
data) with only local business interface . And several SLSBs with remote 
interfaces. All SLSBs inject the SFSB using @EJB. I have a standalone Swing 
client accessing the SLBS. I have observed that:

- Each SLSB inject new SFSB although the session is the same.

- When the session is removed (by a business method marked as @Remove), the 
next call to a SLBS throws "javax.ejb.NoSuchEJBException: Could not find 
stateful bean: all5z-81lkw2-ftl86qub-1-ftl9srgf-a0". I suspect (like the 
previous post), that @EJB is not refreshed each time the SLBS is called, but 
only when it is created.

Is this a normal behaviour or a bug?

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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4225854
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user