[JBoss-user] [Persistence & CMP/JBoss] - Re: 4.0.2 + Hibernate Startup Problem

2005-06-20 Thread cortesr
I solved this by using the org.hibernate Dialects. Guess the classes moved packages in Hibernate 3. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882196#3882196 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882196

[JBoss-user] [Persistence & CMP/JBoss] - 4.0.2 + Hibernate Startup Problem

2005-06-20 Thread cortesr
I'm trying to port our applications from 3.2.6 to 4.0.2 using the built-in Hibernate feature of 4.0.2. I followed the directions about building a HAR file but when I start up I get an error that the MySQLDialect can't be found. Has anyone else encountered this error? Since Hibernate is alread

[JBoss-user] [Beginners Corner] - Re: Hot Deployable Property Files

2004-08-27 Thread cortesr
Shall I file a bug report? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3846437#3846437 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3846437 --- SF.Net email is sp

[JBoss-user] [Beginners Corner] - Re: Hot Deployable Property Files

2004-08-25 Thread cortesr
We have an Ant task that creates a properties.jar file with one file in it (a properties file) and copies the created JAR to the deploy folder. The deploy folder is listed in the jboss-service.xml file as a valid URL within the URLDeploymentScanner MBean. When the JBoss system is started, ever

[JBoss-user] [Beginners Corner] - Active Sessions and Hot Deployment [Possible Bug?]

2004-08-25 Thread cortesr
I think I might have found a bug but I want to check here first before submitting the bug on SF.net. After some more testing I finally figured out why I am not able to hot deploy on my production machines but I'm able to do so on my staging environment. Actually, the hot deploy works fine but

[JBoss-user] [Beginners Corner] - Re: Hot Deployable Property Files

2004-08-25 Thread cortesr
I think I might have found a bug but I want to check here first before submitting the bug on SF.net. After some more testing I finally figured out why I am not able to hot deploy on my production machines but I'm able to do so on my staging environment. Actually, the hot deploy works fine but

[JBoss-user] [Beginners Corner] - Re: Hot Deployable Property Files

2004-08-25 Thread cortesr
I think I might have found a bug but I want to check here first before submitting the bug on SF.net. After some more testing I finally figured out why I am not able to hot deploy on my production machines but I'm able to do so on my staging environment. Actually, the hot deploy works fine but

[JBoss-user] [Beginners Corner] - Re: Hot Deployable Property Files

2004-08-25 Thread cortesr
I think I might have found a bug but I want to check here first before submitting the bug on SF.net. After some more testing I finally figured out why I am not able to hot deploy on my production machines but I'm able to do so on my staging environment. Actually, the hot deploy works fine but

[JBoss-user] [HTTPD, Servlets & JSP] - Re: How to monitor number & idle time of httpsessions using

2004-08-24 Thread cortesr
On the JMX-Console page, look for the following string: "host=localhost,path=/,type=Manager" That MBean will have the list of active sessions... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3846023#3846023 Reply to the post : http://www.jboss.org/index.ht

[JBoss-user] [Beginners Corner] - Re: Hot Deployable Property Files

2004-08-12 Thread cortesr
Below (in a follow up post as to not screw up the wrapping of this reply) is the definition of the URLDeploymentScanner from my jboss-service.xml. The scanning period is set to 5000 (5 seconds). I don't see anything that's glaring from the definition. I realize the truly only hot deployable d

[JBoss-user] [Beginners Corner] - jboss-service.xml - URLDeploymentScanner Definition

2004-08-12 Thread cortesr
| | | jboss.system:service=MainDeployer | | | org.jboss.deployment.scanner.PrefixDeploymentSorter | | | | org.jboss.deployment.scanner.DeploymentFilter | | 5000 | | | | deploy/ |

[JBoss-user] [Beginners Corner] - Re: Hot Deployable Property Files

2004-08-12 Thread cortesr
So, I was able to get the property file defined in property-service.xml to be hot deployable in my staging environment but as soon as I moved the implementation to one of our production servers the properties no longer hot deployed. This is the *same* situation I was in with the JAR approach I

[JBoss-user] [Beginners Corner] - Hot Deployable Property Files

2004-08-11 Thread cortesr
I've posted a few times regarding a specific direction I was taking in trying to achieve hot deployable property files (i.e. bundling them in JARs) but I'm about ready to give up that approach as it was only working in my staging environment and not production. Can someone tell me which approa

[JBoss-user] [Beginners Corner] - Another Hot Deployment Problem

2004-08-11 Thread cortesr
I have a JAR with one property file in it that is deploying fine on our staging server. However, when I try to hot deploy the JAR on one of our production servers, the property file's values are the same even though they have been edited and changed. The only difference between the staging and

[JBoss-user] [Beginners Corner] - Re: Simple Hot Deploy Problem

2004-08-09 Thread cortesr
BTW, the first bug I mentioned about hot deployments in 3.2.4/3.2.5 can be found here: https://sourceforge.net/tracker/?func=detail&atid=376685&aid=973565&group_id=22866 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844564#3844564 Reply to the post : http

[JBoss-user] [The Lizzard's corner] - Re: What is the biggest site using JBoss ?

2004-08-06 Thread cortesr
There were a few performance-related issues we had to address with our deployment at Bolt with respect to Hibernate and SQL Server. One, in general, was that the current release of Hibernate does not support locking hints so I had to rewrite some of the Hibernate classes to introduce the NO LOC

[JBoss-user] [Beginners Corner] - Re: Simple Hot Deploy Problem

2004-08-06 Thread cortesr
I moved my code over to a Linux staging server and everything worked fine. I can now hot deploy my properties files :) Thanks. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844468#3844468 Reply to the post : http://www.jboss.org/index.html?module=bb&op=po

[JBoss-user] [Beginners Corner] - Re: Simple Hot Deploy Problem

2004-08-06 Thread cortesr
Damn! That's 2 bugs in less than 24 hours that have stumped me. Thanks a ton for the information. I'll test out my application on a staging server (Linux) and report back. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844466#3844466 Reply to the post : h

[JBoss-user] [Beginners Corner] - Re: Simple Hot Deploy Problem

2004-08-06 Thread cortesr
Actually, now that I think about it, this might be a non-issue. First, message I get from JBoss is a WARNING and not an ERROR. Second, could this be a case of not flushing the contents of the properties file properly? I was assuming that the contents of the new jar would get loaded but now I'

[JBoss-user] [Beginners Corner] - Simple Hot Deploy Problem

2004-08-06 Thread cortesr
I'm testing a simple hot deploy and I cannot seem to get it to work. I have an Ant script that copies a single properties file and builds a jar out of it. The jar is then copied to the application's deploy folder. Of course, when the application starts up I can read the properties in the prop

[JBoss-user] [Performance Tuning] - Re: Performance Tuning with OS X and JBoss

2004-04-01 Thread cortesr
I did some initial testing last night and it doesn't look like many of the testing applications that are shipped with OS X will work with Java applications. However, I was able to attach to a running Java application and monitor the thread allocations as well as their deaths. View the original

[JBoss-user] [Performance Tuning] - Performance Tuning with OS X and JBoss

2004-03-31 Thread cortesr
Hi there. I did a search in the forums and couldn't find an answer to this question so I hope it wasn't asked already. Has anyone been able to performance tune a JBoss application running on MacOS X using any of the performance/profiling tools shipped with MacOS X (i.e. MallocDebug, Sampler)?