[jboss-user] [Installation, Configuration Deployment] - Re: java.net.SocketException: No buffer space available

2007-05-03 Thread kgrjb
hi i searched a lot but havenot found anything useful on this. on starting jboss 4.2.0.CR2 i get warnings UDP failed to join ... on lo: java.net.SocketException: No buffer space available. my hibernate with distributed ehcache used to work on jboss 4.0.5 but now on 4.2.0.CR2 i get this -

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Unable to locate current JTA transaction

2007-03-27 Thread kgrjb
hibernate 3.2.* jboss 4.0.5.GA im getting the same unable to locate jta transaction @TransactionAttributeType.SUPPORTS but not with @TransactionAttributeType.REQUIRED on ejb 3 session bean[slsb]. i use getCurrentSession(). i understand hibernate session needs a transaction but what happens

[jboss-user] [JBossCache] - Re: Cache lockup in JBoss 4.0.4.GA + EJB3 RC9 under heavy lo

2007-01-29 Thread kgrjb
im using JBossCache 1.4.1.GA with Hibernate 3.2.2.GA and i get a huge number of similar read locks and write locks warns + errors, especially during eviction stage. Then the cache and therefore application fail completely. 2007-01-30 12:50:33,443 WARN [BaseEvictionAlgorithm] eviction of

[jboss-user] [JBossCache] - Re: IdentityLock write lock

2007-01-28 Thread kgrjb
i still get thousands of these identity lock errors with the latest jars. i also get Must be in a valid transaction _remove error. - hibernate 3.2.2.GA hibernate3.jar - JBossCache 1.4.1.GA jboss-cache.jar - JBosss 4.0.5.GA - org.hibernate.cache.OptimisticTreeCacheProvider do i need to replace

[jboss-user] [JBossCache] - Re: NPE when using optimistic locking with JbossCache 1.4.0.

2007-01-16 Thread kgrjb
hi manik i got a massive number of .. is newer .. error on read only transactions and even with only 1 user running - that is effectively no concurrency. surprisingly the identical setup[i really mean identical because i copied the whole jboss dir with all cache settings and everything] seems

[jboss-user] [JBossCache] - Re: NPE when using optimistic locking with JbossCache 1.4.0.

2007-01-09 Thread kgrjb
hi manik - thanks for your reply. the problem is there is a massive amount this error[data node is newer ...]. someone got the same problem in this thread and this problem was supposed to be fixed in 1.4.1.CR1 - please correct me if im wrong. View the original post :

[jboss-user] [JBossCache] - Re: NPE when using optimistic locking with JbossCache 1.4.0.

2007-01-08 Thread kgrjb
i still get data node is newer ... problem. JBossCache 1.4.1.CR1 [optimistic lock - invalidation sync] Hibernate 3.2 JBoss 4.0.5.GA java.lang.RuntimeException: org.jboss.tm.JBossRollbackException: Unable to commit, tx=TransactionImpl:XidImpl[FormatId=257, GlobalId=zzz52.zzzint.com/1919,

[jboss-user] [EJB 3.0] - Re: Cyclic depencies

2006-12-03 Thread kgrjb
to compile @IgnoreDependency - you need jboss-4.0.5.GA\client\jboss-annotations-ejb3.jar in your compile classpath. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3990897#3990897 Reply to the post :

[jboss-user] [EJB 3.0] - Re: @EJB injection gives null

2006-09-03 Thread kgrjb
peter suggestion didnot help. ive been using this as a workaround. LocalIntf ejbField; @PostConstruct public void initBean() { try { InitialContext ctx = new InitialContext(); ejbField = ejbField == null ? (LocalIntf) ctx.lookup(earName + /beanClassName

[jboss-user] [EJB 3.0] - Re: @EJB injection gives null

2006-07-21 Thread kgrjb
do you what the default jndi naming has changed to? i tried to override default name with @LocalBinding but didnt work. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3960084#3960084 Reply to the post :

[jboss-user] [EJB 3.0] - @EJB injection gives null

2006-07-16 Thread kgrjb
im using jboss 4.0.4.GA i got null on @EJB injection. i have 2 simple stateless beans. @Stateless @Local({LocalIntf1.class}) @Remote({RemoteIntf1.class}) public class Bean1 implements RemoteIntf1, LocalIntf1 { ... ... } the other bean uses the @EJB tag to reference Bean1. @Stateless