RE: [JBoss-user] Data dirty problem in cmp entity bean.

2001-07-06 Thread Andre [EMAIL PROTECTED]
Change your Commit-option in your jboss.jcml file to at least B - restart the server - then test your scenario again - LOT of posts in the archives about this. av -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 11:33 AM To: [EMAIL PROTECT

RE: [JBoss-user] findAll not finding Dirty data in transaction

2001-07-04 Thread Andre [EMAIL PROTECTED]
I suppose bug fix# 433314 (fixed bug 433115. storeEntities on find) Will solve our problem ! When will JBoss 2.4 final be released ? How stable is the current version 2.4 beta version ? thanks andre -Original Message- From: Andre Vermeulen@i-Commerce [mailto:[EMAIL PROTECTED]]

[JBoss-user] findAll not finding Dirty data in transaction

2001-07-04 Thread Andre [EMAIL PROTECTED]
Hi I am experiencing the following problem while doing updates and subsequent finds on entity beans. The scenario is as follows: In my code I first find an object via primary key, I then update a field or two and call setData on the remote interface for the object. If I then do another find by P

RE: [JBoss-user] How to unsubscribe

2001-06-27 Thread Andre [EMAIL PROTECTED]
go to http://lists.sourceforge.net/lists/listinfo/jboss-userThere an option EDIT OPTIONS - use that... -Original Message- From: Hughes, Jonathan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 27, 2001 11:29 AM To: '[EMAIL PROTECTED]' Subject: [JBoss-user] How to unsubscribe How do I u

RE: [JBoss-user] Re: Out of sync EJBs after passivation

2001-06-15 Thread Andre [EMAIL PROTECTED]
Yes ! We had similar problems and setting reference to null fix it. Andre Vermeulen -Original Message- From: Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Sent: Friday, June 15, 2001 9:06 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [JBoss-user] Re: Out of sync EJBs after passivat

RE: [JBoss-user] client access of ejb's

2001-06-13 Thread Andre [EMAIL PROTECTED]
You need the Home + Remote Interfaces in the classpath of your client. -Original Message- From: Chris Tragas [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 13, 2001 6:14 AM To: '[EMAIL PROTECTED]' Subject: [JBoss-user] client access of ejb's Hi. Hopefully someone can help me. I succ

RE: [JBoss-user] Problems using DatabaseServerLoginModule

2001-06-11 Thread Andre [EMAIL PROTECTED]
Just a few ideas. Seems like don't have any permissoins set on your create method (Not telling which role can execute the create method), or change the permissions on the bean level that all methods use the same role. helpfull ? -Original Message- From: Pelle Poluha [mailto:[EMAIL PROTE

[JBoss-user] Happy ending, seems to be.

2001-06-11 Thread Andre [EMAIL PROTECTED]
Last week I had a problem, it drove me crazy... http://www.mail-archive.com/jboss-user%40lists.sourceforge.net/msg05933.html But then I stumbled across this post: http://www.mail-archive.com/jboss-user@lists.sourceforge.net/msg02748.html After converting to EJBDoclet 1.0 - lift

[JBoss-user] findAll vs findByPrimaryKey - thickening...

2001-06-05 Thread Andre [EMAIL PROTECTED]
I tried commit option A,B,C - same result - a funny thing is immediatly after the update of the the database is updated even if the commit option is A !! How can I see at run-time which commit option JBoss is using ? Hi, it could be a bug, why don't you report it to the sourceforge bug tr

[JBoss-user] findAll vs findByPrimaryKey - REALLY Need some ideas at least !!!!!!

2001-06-05 Thread Andre [EMAIL PROTECTED]
Hi ALL I really need some ideas how to solve this problem - I read all about how good support is for JBoss doco etc... comparing to other EJB Servers I am getting to a poitn where I have to start looking @ other servers unless I can get around this problem. I really need some input from someone

[JBoss-user] FW: findAll vs findByPrimaryKey

2001-06-05 Thread Andre [EMAIL PROTECTED]
> My search continue... > > I got this from the JBoss manual, declares all the ejbLoads --> but not > the inconsistent data via the finders though > Option C: The container does not cache bean instances and instances memory > state is synchronized on every transaction start (via ejbLoad). For >

[JBoss-user] FW: findAll vs findByPrimaryKey

2001-06-05 Thread Andre [EMAIL PROTECTED]
My search continue... I got this from the JBoss manual, declares all the ejbLoads --> but not the inconsistent data via the finders though Option C: The container does not cache bean instances and instances memory state is synchronized on every transaction start (via ejbLoad). For business metho

[JBoss-user] findAll vs findByPrimaryKey

2001-06-05 Thread Andre [EMAIL PROTECTED]
I get a some funny behaviour whne using JBoss 2.2.2 with commit Option C. I update one of my entity beans - all the data updated to the database... no problem! If I now do look up for this updated entity bean via findByPrimary all my changes are there BUT when I do a findAll() or any other finde

Re: [JBoss-user] Getting WRONG data from CMP !!! - some progress

2001-06-01 Thread Andre [EMAIL PROTECTED]
I made some progress... If I change my entity beans Transaction Type to RequiresNew All works fine. Why does the Required state not work on the Entity + RequiresNew on the Session Bean ??? I want the Entity Bean to get his transaction from the Session Bean... c ya Andre V "Andre Vermeulen@i-C

FW: Re: [JBoss-user] how does this work (classpath)?

2001-06-01 Thread Andre [EMAIL PROTECTED]
What is the difference between adding a org.jboss.util.ClasspathExtension MBean and putting classes in the lib\ext directory ! Can someone please make this clear this up... What is the best RIGHT way to setup the classpath for a specific deploy including the non-ejb classes that my session bean

Re: [JBoss-user] how does this work (classpath)?

2001-05-31 Thread Andre [EMAIL PROTECTED]
Thanks danch for the Awnser. All my EJB's are in the same ejb-jar file, but my problem is with the files that are used by the bean's which are not ejb's that get called by the session bean which then call the entity beans ?? So calling is like this : Call to session bean -> Session bean call nor

[JBoss-user] how does this work (classpath)?

2001-05-31 Thread Andre [EMAIL PROTECTED]
Hi All I have a question just to verify that we are doing is ok in JBOSS ! I have a little scenario where we are using naormal JavaBeans no Enterprise bean (Call it a vanilla bean!!) to implement a service in our program this bean call some Entity EJB's. Which Trnsaction settings are set to Requi

[JBoss-user] Getting WRONG data from CMP !!!

2001-05-31 Thread Andre [EMAIL PROTECTED]
Hi there I am getting a real funny error when using JBoss 2.1.1 together with PostGreSQL 7.1.1 I have two CMP entity beans EFiler + TaxPayer the EFiler bean can add some Efilers, so it has a method called, addTaxPayers(TaxPayerData data), this method will create a TaxPayer linked to the specifi

[JBoss-user] cmp-field not found

2001-05-29 Thread Andre [EMAIL PROTECTED]
We are getting a real funny error when deploying some ejb's in JBOSS. JBoss keep on telling us that a specific field is not a field in our EJB. The specifid error : "cmp-field fileSourceNo is not a field in ejb class com.didata.itax.payment.sars.efiles.FileTypeInfoCMP" (Stack Trace below !) Thi

[JBoss-user] Relationships between Entity beans

2001-04-03 Thread Andre [EMAIL PROTECTED]
Hi there all I've been using Websphere with Visual Age for the last few month's. Despite all the critism we've got a system in production out there. But our next system are destinied to be running on JBOSS ! But now I got a question. What is the preferred way to implement relationships between