[jboss-user] [JBossCache] - Problem with one-to-many assotiations in Hibernate with enab

2007-11-29 Thread JohnBat26
Hello ! I have next problem ... Link at JIRA: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2977 I have entity MovieCategory and entity Movie. MovieCategory relate with Movie in many to one. I have two MovieCategories. But if I remove Movie from first MovieCategory and add to

[jboss-user] [JBossCache] - Re: Problem with one-to-many assotiations in Hibernate with

2007-11-29 Thread JohnBat26
Thanks for quick answer ! I long explore log of Hibernate and, to my mind, JBoss Cache work properly! But ! Why whereupon without cache all work OK ? If take a look at log in JIRA, then JBoss cache FIX CACHE MISS! And Hibernate reassign FOREIGN KEY at Movie. But cache at Movie Category

[jboss-user] [JBoss Seam] - Problem with SEAM + CMT Transaction + JBossCache

2007-10-18 Thread JohnBat26
Hello all ! I have the problem with update JBossCache, after commit changes from SEAM application. My environments: 1. OS: Gentoo Linux x86 2. JDK: 1.6 SUN and BEA JRockIt 3. IDE: Eclipse-3.2.2 4. AS: JBoss-4.2.1.GA 5. ORM : Hibernate-3.2.5.GA 6.

[jboss-user] [JBoss Seam] - Re: Problem with SEAM + CMT Transaction + JBossCache

2007-10-18 Thread JohnBat26
:(( config files don't appears entire. I post its here (persistence.xml): http://pastebin.mozilla-russia.org/90221 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4096532#4096532 Reply to the post :

[jboss-user] [JBossCache] - Problem with SEAM + CMT Transaction + JBossCache

2007-10-18 Thread JohnBat26
Hello I need help: http://www.jboss.com/index.html?module=bbop=viewtopicp=4096532#4096532 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4096540#4096540 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4096540

[jboss-user] [Performance Tuning] - Deadlock at UpdateTimeStampsCache !

2007-09-13 Thread JohnBat26
Hi all ! My configuration: - Gentoo Linux (x86); - JDK-1.6 (SUN and BEA) - JBoss-4.2.1 - Hibernate-3.2.5 - JBoss Cache-1.4.1 -- I have degrade performance during stress testing (jMeter). I use QueryCache. But during strong loading all thread are blocking at

[jboss-user] [JBossCache] - Deadlock at UpdateTimeStampsCache !

2007-09-13 Thread JohnBat26
Hi all ! My configuration: - Gentoo Linux (x86); - JDK-1.6 (SUN and BEA) - JBoss-4.2.1 - Hibernate-3.2.5 - JBoss Cache-1.4.1 -- I have degrade performance during stress testing (jMeter). I use QueryCache. But during strong loading all thread are blocking at

[jboss-user] [JBossCache] - Re: Deadlock at UpdateTimeStampsCache !

2007-09-13 Thread JohnBat26
I don't change DB ! I use only Selects ! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083963#4083963 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083963 ___ jboss-user

[jboss-user] [JBossCache] - Re: Deadlock at UpdateTimeStampsCache !

2007-09-13 Thread JohnBat26
JProfiler write that all threads wait UpdateTimeStampsCache. So all methods in UpdateTimeStampsCache is synchronized! I think that in isUpToDate() method. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083983#4083983 Reply to the post :

[jboss-user] [JBossCache] - Re: Deadlock at UpdateTimeStampsCache !

2007-09-13 Thread JohnBat26
I send e-mail to you View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083987#4083987 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083987 ___ jboss-user mailing list

[jboss-user] [JBossCache] - Re: Deadlock at UpdateTimeStampsCache !

2007-09-13 Thread JohnBat26
I think, that deadlock appear from : protected boolean isUpToDate(Set spaces, Long timestamp) { if ( log.isDebugEnabled() ) { log.debug(Checking query spaces for up-to-dateness: + spaces); } return

[jboss-user] [JBoss Seam] - Re: Session already invalidated

2007-06-11 Thread JohnBat26
Please, help me ! Entire project fail from this error ! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4052978#4052978 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4052978 ___

[jboss-user] [JBoss Seam] - Session already invalidated

2007-06-10 Thread JohnBat26
Hello everybody!!! My environment: 1. OS: Gentoo Linux x86 (x86-64). 2. JDK: 6.0 (SUN or BEA). 3. AS: JBoss 4.2.0 4. JBoss SEAM 1.2.1.GA 5. IDE: Eclipse 3.3 RC3 - ?ase: I have EAR. It consist of many web and ejb applications. One

[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

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

2007-03-30 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 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 :

[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=bbop=viewtopicp=4033091#4033091 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4033091

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

2007-03-29 Thread JohnBat26
Do really nobody know how resolve this trouble ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4032646#4032646 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4032646 ___ jboss-user

[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. * * */

[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=bbop=viewtopicp=4032698#4032698 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4032698

[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 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] - SEAM don't can find session bean !!

2007-03-28 Thread JohnBat26
Hello. I have next problem with SEAM (1.2.1.GA) --- My config: JSF: jsf-1.2_04-b10-p01 SEAM: 1.2.1.GA JBoss: 4.0.5.GA OS: Gentoo Linux (AMD64) VM: BEA JRockIt 6.0 and Sun JVM 6.0 - I created one entity (User) and one Session Bean