[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Persisting complex java objects as CLOBs

2007-11-28 Thread mike.nardone
Anyone? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108540#4108540 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108540 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Persisting complex java objects as CLOBs

2007-11-15 Thread mike.nardone
I'm currently developing a java application deployed on JBoss 4.2.1GA, with MS SQL Server 2000 on the backend. I have a rather complex Java object, which may contain lists of the same object as children. Instead of reworking the entire structure of this object, I would like to just write it

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Persisting complex java objects as CLOBs

2007-11-15 Thread mike.nardone
mistype: should be BLOB, not CLOB. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4105182#4105182 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4105182 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - Re: Interrupting a stateful session bean in use

2007-08-10 Thread mike.nardone
Excuse me, I misunderstood. We are currently setting a flag in the client. However, it's a single method call in teh SFSB that eats a ton of processing, and so while we can have the bean check the flag between methods, that doesn't help us as much as we might like. View the original post :

[jboss-user] [EJB 3.0] - Re: Interrupting a stateful session bean in use

2007-08-10 Thread mike.nardone
The issue there is that the client can't set a flag in the SFSB directly because the bean is in use by the server at the same time you'd want to set the flag (hence the concurrent access exception). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073159#4073159

[jboss-user] [EJB 3.0] - Interrupting a stateful session bean in use

2007-08-09 Thread mike.nardone
In the project I am working on, there is a method call which takes in several parameters and then calls a stateful session bean to perform some heavy-duty processing on the server-side. This processing consumes a (very) non-trivial amount of memory. Our client software allows the user to