[JBoss-user] [Nukes User] - Re: Nukes 1.1 default theme

2004-08-29 Thread joehobson
I like maiden with only two complaints : the header is too tall and there's no way to logout once you login (the button should probably change). I like that the "pure" theme is attempting to do CSS, similar to the imagic-css theme i tried awhile back, but the BB module still doesn't show right i

[JBoss-user] [Installation & Configuration] - Re: Server not starting : HELP

2004-08-29 Thread muralikri_bng
Any body else who can help me on this matter View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3846610#3846610 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3846610 --

[JBoss-user] [Nukes User] - Re: upgrade script

2004-08-29 Thread k-dub
When/if I finish mine, I'll post it. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3846609#3846609 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3846609 --- This SF.

[JBoss-user] [Nukes User] - how to build a standalone nuke core?

2004-08-29 Thread yxyang
Hi I am quite new on jboss nukes. I check it from CVS head and be able to run build deploy-all. It works great. However, i want to build nuke core and external modules seperatly to get an full picture of nukes system. (1) how to build and deploy a standalone nuke core? (2) for a specific exte

[JBoss-user] [Nukes User] - Re: how to build a standalone nuke core?

2004-08-29 Thread yxyang
It seems that nuke build script is quite complex View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3846608#3846608 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3846608 ---

[JBoss-user] [Installation & Configuration] - JBoss Unexpected Shutdown

2004-08-29 Thread gopikrishnap
Hello, We have an appliation using JBoss 3.2.3 as Application Server on SOLARIS OS. Sometimes JBoss crashes(shutdown) suddenly without any warnings/errors. This happend 3 times one day. We were not able to reproduce the problem consistently. But there is a problem. Can anyone help me understand

[JBoss-user] [Installation & Configuration] - Shutdown warnings - why are they happening?

2004-08-29 Thread ehansen
Hello, When I shutdown the JBoss 3.2.4 server the following entry is posted to the console and log... 2004-08-29 17:41:36,000 WARN [org.jboss.deployment.DeploymentInfo] Could not delete file:/C:/jboss-3.2.5/server/default/tmp/deploy/tmp28248console-mgr.sar restart will delete it This is one

[JBoss-user] [Nukes User] - Re: upgrade script

2004-08-29 Thread theute
You are totally right, the problem is that people who do the update don't contribute by sending any script. I think that's the way a GPL software is supposed to grow. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3846599#3846599 Reply to the post : http://w

[JBoss-user] [Nukes User] - upgrade script

2004-08-29 Thread k-dub
I'm trying to upgrade from 1.1RC2 to 1.1RC3, but I'm finding lots of DB schema differences. Has anyone written an upgrade script? One really should be provided with each release, IMHO. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3846598#3846598 Reply to th

[JBoss-user] [Performance Tuning] - Lost Time in RMI call

2004-08-29 Thread jcr
I have been performance tuning my application and using JProbe have run across some strangeness that is probably related to a configuration setting. I have a single .JSP page that connects to a stateful remote session bean, and invokes a call. I am using JMeter to simulate 10 inbound connectio

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Using WSMQ ( yet another question )

2004-08-29 Thread nusa
Hi, This problem really drive me nuts ... First, I put fscontext.jar in default/lib. Then I remove it from there and put it in jre/lib/ext, as JNDI doc says. And last, remove it from there and put it in $JAVA_HOME/lib. I even specify it in $JBOSS_CLASSPATH. I've searched through Sun's forum abo

[JBoss-user] [Persistence & CMP/JBoss] - Re: Can't get jbosscmp-jdbc to be used instead of jaws

2004-08-29 Thread pilhuhn
Perhaps this is helpful for you: anonymous wrote : | When JBoss deploys an EJB jar file, the DOCTYPE of the ejb jar.xml deployment descriptor is used to determine the version of the EJB jar. If the public identifier of the DOCTYPE is " //Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN

[JBoss-user] [Javassist user questions] - Re: How to get an instance of a a class create with makeClas

2004-08-29 Thread chiba
You must explicitly load the class file you newly defined and create an instance of that by the reflection API (java.lang.reflect). The latest version of Javassist, which you can download from CVS HEAD, provides a very convenient method toClass() for doing that. Please try. View the original post

[JBoss-user] [Messaging, JMS & JBossMQ] - throwable from unregister connection

2004-08-29 Thread Kevin_ryq
Hi,can anybody help me ? I execute a function successfully firstly,but when I execute it again and again,errors occurs,the following is the detail info: 23:45:10,217 INFO [TxConnectionManager] throwable from unregister connection java.lang.IllegalStateException: Trying to return an unknown conne

[JBoss-user] [Persistence & CMP/JBoss] - URJENT-ClassCastException on home

2004-08-29 Thread bentins
I have a wierd situation. I have a class that when it initializes it finds a home object for some local bean. After first deployment it works fine without any problem, however if I hot deploy, it than throws a classCastException on the home object. The program flow is that a timer checks a flag,

[JBoss-user] [Persistence & CMP/JBoss] - Re: can jboss generate a different primarykey per bean using

2004-08-29 Thread bentins
It is my understanding that I need a diferent entity-command for each class I will have a difference sequence so my solution was: * @jboss.entity-command name="folder-sequence" class="" | * @jboss.entity-command-attribute name="sequence" value="FOLDER_SEQ" which created the following under fol

[JBoss-user] [EJB/JBoss] - HOWTO determine if the current thread's transaction is conta

2004-08-29 Thread Atonyd
I sure this is a very simple question. I've got a CMT stateless session bean, containing some business logic, this bean would like to use some of our well tested utility code. One problem, some of this code is attempting to acquire a connection and perform an update operation, it uses the Con

[JBoss-user] [Persistence & CMP/JBoss] - Re: Can't get jbosscmp-jdbc to be used instead of jaws

2004-08-29 Thread jqp000
I still have the same problem as lithous2 - also JBoss 3.2.5 seems to ignore the EJB's own DS directives, even with dtd:s updated to 3.2 (at least in jboss.xml and jbosscmp-jdbc.xml). Even the JNDI tree shows that the EJB properly links to MySqlDS, and the DS itself was deployed OK. My workarou