Re: [JBoss-user] Please help me ...

2001-10-25 Thread Andrius Juozapaitis
ack, I realized that the next second I sent the message out ;-) sorry for the confusion my post might have caused --andrius - Original Message - From: "danch" <[EMAIL PROTECTED]> : Any time you call a finder there's at least one hit on the database, for : that very reason. Even with commi

Re: [JBoss-user] Please help me ...

2001-10-24 Thread Andrius Juozapaitis
RE: [JBoss-user] Please help me ...IMHO slsb + entity bean collection approach looks like a better and more universal one. with jboss caching the entities, you might not get a db hit at all. and if your data is more or less static, there is a way to use read-only entity beans, look in the archives

Re: [JBoss-user] Mail list volume - victim of it's own success?

2001-06-25 Thread Andrius Juozapaitis
hey, : > I am all for a newsgroup/forum. we're using newsgroup communication in our company quite extensively. being a former mailing list lover, the migration was not easy for me, but now the advantages are clear: -you have threaded messages in conversations -you can perform search on archives

Re: [JBoss-user] Free Deployment Tool

2001-06-22 Thread Andrius Juozapaitis
hey, take a look at ejbdoclet, you can find it at www.sourceforge.net/projects/ejbdoclet regards, --andrius : Is there any free war/ear generator with JBoss ? : Writing XML is not that fun ... ___ JBoss-user mailing list [EMAIL PROTECTED] http://li

Re: [JBoss-user] New user - problem with SQLException

2001-04-26 Thread Andrius Juozapaitis
: Do not use char because the jvm has a bug with it. IIRC rickard mentioned once that this bug is fixed in the new j2sdk1.3.1: http://developer.java.sun.com/developer/earlyAccess/j2sdk131/ regards, --andrius ___ JBoss-user mailing list [EMAIL PROT

Re: [JBoss-user] ejbdoclet generated CMP beans passivate/activate and data holder issue

2001-04-24 Thread Andrius Juozapaitis
: I was seeing this problem using EJBDoclet and JBoss a few weeks ago. I : saw the same problem in the code for 0.95. However, i found it was fixed : in the CVS version of EJBDoclet. You should try that. : Maybe we can get a new numbered release? good point, I haven't updated my version for quite

[JBoss-user] ejbdoclet generated CMP beans passivate/activate and data holder issue

2001-04-24 Thread Andrius Juozapaitis
hey, I found out that there is a pretty weird issue with the above combination, and thought it might be a good idea to share it with those who use ejbdoclet :) scenario: -deploying an ejbdoclet generated cmp bean -executing a few finds -spend a period of inactivity (==bean instances are passivat

[JBoss-user] stop.jar; compiling with jikes; oracle and hypersonic DATE mappings

2001-04-17 Thread Andrius Juozapaitis
hey, a couple of things: -it seems that stop.jar (which is supposed to stop the server) doesn't work (entries in manifest point to conf/ directory, whereas it should point to a specific config IMHO, but it seems it is not the only problem with it,as fixing it doesn't help) -compiling jboss source

[JBoss-user] using javax.management.timer.Timer vs java.util.Timer

2001-04-10 Thread Andrius Juozapaitis
hi all, I have a simple design concern which one to use. I wrote my MBean for periodically running a task, which I configure through jboss.jcml, using the javax.management.timer.Timer MBean, but it seems to me that having an instance of java.util.Timer in my MBean would do just the same, with (IM