[jboss-user] [Installation, Configuration Deployment] - Re: port: 3873 is in which xml file?

2009-11-10 Thread chrismm
Its in :- deploy\ejb3.deployer\META-INF\jboss-service.xml View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4264874#4264874 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4264874 ___

[jboss-user] [Installation, Configuration Deployment] - Re: JBoss 4.2.2 Deployment/class loader problem

2009-10-26 Thread chrismm
For various reasons each EJB is in its own jar file, all the jar files are in the ear file in the deploy directory. Strange thing is it dosnt always happen. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4262105#4262105 Reply to the post :

[jboss-user] [Installation, Configuration Deployment] - JBoss 4.2.2 Deployment/class loader problem

2009-10-22 Thread chrismm
Im getting this error from one of my EJBs (several hundred others deploy fine) when I startup jboss 4.2.2 ? 2009-10-22 12:10:52,177 WARN [org.jboss.ejb.EJBDeployer.verifier] EJB spec violation: Bean : TimedFeeReport Section: 22.2 Warning: The Bean Provider must specify the fully-qualified

[jboss-user] [JBossMQ] - User: guest is NOT authenticated

2009-04-09 Thread chrismm
We have 14 Jboss 4.2.2 systems running on the same server, at midnight they all simultaneously update their runDate in the database (Oracle) and occasionally (twice a week ?) they produce this error, any idea what might cause this ?? The only thing I can think is some kind of limit to number of

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Flushing the AS CMP cache

2007-01-16 Thread chrismm
Does anyone know how to flush the AS CMP cache (without stopping/restarting the AS)? Since turning it on a lot of our unit tests are failing because they setup and teardown data directly in the db before running, the good old AS knows nothing about this and holds the test data from previous

[jboss-user] [Performance Tuning] - CMP cache performance gain ?

2007-01-03 Thread chrismm
Has anybody tried the caching of CMPs by the AS ? We examined our application and discovered it was hitting the database thousands of times for each request, this was due to the application developers use of findByBusinessKey methods, we converted the code to use the findbyPrimaryKey method so

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Why findByPrimaryKey issues ?SELECT pkey from TABLE whe

2007-01-03 Thread chrismm
Are you sure you are actually retrieving something from the database. ie is there some data that matches your primary key? Also, are you accessing the retrieved data ? the AS only puts data into the cache when it is accessed ( not when you do the findByPrimaryKey ). View the original post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: EJB2 findByPrimaryKey caches sometimes but not others.

2007-01-03 Thread chrismm
This was due to the fact that the AS only caches data when its accessed, not when findByPrimaryKey is called. One of the tests printed out the returned entity (and hence it was cached) and the other didnt (and hence it wasnt cached). View the original post :

[jboss-user] [EJB/JBoss] - Tracing transaction start and finish ?

2006-12-29 Thread chrismm
Is it possible to trace when transactions start and finish ? We have an application that seems to be creating loads of new transactions but I need to prove it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3996798#3996798 Reply to the post :

[jboss-user] [JBossCache] - JBoss Cache vs AS CMP caching.

2006-12-28 Thread chrismm
Cant I get all the benefits of caching by using cmps, accessing via their primaryKey and letting the AS do the caching, without having to write container specific code to put things into and take things out of a cache ? View the original post :

[jboss-user] [EJB/JBoss] - Re: Deployment failing-How to get debug information ?

2006-12-20 Thread chrismm
OK, here goes :- 2006-12-20 11:01:46,269 DEBUG [javax.management.timer.Timer] start: jboss.jmx:name=SnmpAgent,service=timer,type=heartbeat at Wed Dec 20 11:01:46 GMT 2006 2006-12-20 11:01:50,660 INFO [org.apache.catalina.startup.Embedded] Catalina naming disabled 2006-12-20 11:01:50,738 INFO

[jboss-user] [EJB/JBoss] - Re: Deployment failing-How to get debug information ?

2006-12-19 Thread chrismm
This is definitely the first error message, the lines above the error message are :- ... 2006-12-19 12:33:06,594 DEBUG [org.jboss.deployment.MainDeployer] Done with create step of deploying synchronousinstructionprocessorEJB.jar 2006-12-19 12:33:06,594 DEBUG [org.jboss.deployment.MainDeployer]

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - EJB2 findByPrimaryKey caches sometimes but not others.

2006-12-08 Thread chrismm
We have two entity beans that are accessed via their findByPrimaryKey methods. Both beans have the same container configuration and are executed 10 times within a single transaction. By turning on CMP tracing we can see that for the first bean one line of sql is executed against the database

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Caching 'empty' beans.

2006-11-27 Thread chrismm
Does JBoss cache 'empty' beans ? ie beans that have no data in the database or does it keep calling the select and getting nothing back ?? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3988814#3988814 Reply to the post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - EJB 2 Entity bean caching

2006-11-15 Thread chrismm
Is it true that CMP entity beans are only cached in the appserver if they are looked up by primary key ? Is it possible to see the cache hits by the appserver ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3986054#3986054 Reply to the post :

[jboss-user] [Installation, Configuration Deployment] - Re: DeploymentException: Trying to install an already regist

2006-11-13 Thread chrismm
I have had exactly the same problem with Oracle, on following the instructions above I discovered the file MQ.oracle-ds.xml as well as the oracle-ds.xml file. Deleting the MQ.oracle-ds.xml file solved the problem but where it came from, who knows ? View the original post :