[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Circular references and Hibernate annotations

2008-07-10 Thread mbabauer
I am looking into creating a class in such a way that it can hold references to itself and a parent. In other words, I am looking to make a bi-directional tree of these classes. The class would like something like this: @Entity | @Table(name=sample) | public class Sample { | private

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JBoss binding only to localhost

2008-05-14 Thread mbabauer
[EMAIL PROTECTED] wrote : run -b 0.0.0.0 Thanks! That did it! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4150703#4150703 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4150703

[jboss-user] [Installation, Configuration DEPLOYMENT] - JBoss binding only to localhost

2008-05-13 Thread mbabauer
I have been trying in vain to get JBoss to bind to something other than localhost. So far, the only documentation I have found mentions it in passing that 4.2GA and later has the behavior to only bind to localhost in an attempt to make people lock down the servers prior to making it publicly

[jboss-user] [Messaging, JMS JBossMQ] - JMS Topic deployed with WAR

2008-03-20 Thread mbabauer
I have a WAR file that uses a JMS topic in it. I would like to know if there was some way to put the JMS definitions file in the WAR. Right now I am deploying it in jbossmq-destinations-service.xml located in my /deploy directory. Having it deployed with the WAR would ease the deployment and

[jboss-user] [Clustering/JBoss] - Performance hit on HA-JMS with remote DefaultDS database

2008-03-09 Thread mbabauer
I have been absorbing this document: http://labs.jboss.com/file-access/default/members/jbossas/freezone/docs/Clustering_Guide/beta422/html/clustering-jms-singleton-server.html, and was wondering if anyone could quantify the performance hit taken when using HA-JMS with a remote DefaultDS

[jboss-user] [Clustering/JBoss] - Re: Recommended reading...

2008-03-06 Thread mbabauer
tag to boost the thread back up View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4134635#4134635 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4134635 ___ jboss-user mailing list

[jboss-user] [Clustering/JBoss] - Recommended reading...

2008-03-05 Thread mbabauer
I have been searching the internet for books on JBoss clustering. I need to beef up on my understanding of clusters because I am working on architecting a project that may require them in the future. The project, at least for the short-term, is low budget, so using a vendor for most of this

[jboss-user] [JBoss.NET] - WSDL missing...

2007-03-07 Thread mbabauer
I have been struggling with this web service for about a week now. The problem is that it deploys fine, I can see it at my URL https://localhost:4950/eswd/services, but when I try to view the WSDL, which sends me to https://localhost:4950/eswd/services/urn:SelfService?wsdl, I get a 404, Page

[jboss-user] [Beginners Corner] - Re: A new understanding of ClassLoaders...

2007-02-23 Thread mbabauer
I have tried to lick problem every which way from Sunday, but I keep running into the same classloader problems trying to find either classes or the Spring contexts. Riddle me this, Batman: What is the recommended route for deploying a single, self-contained EAR housing a shared DAO layer and

[jboss-user] [Beginners Corner] - A new understanding of ClassLoaders...

2007-02-22 Thread mbabauer
Recently I have been playing a lot with the new JBoss 4.0.x, Spring, and the like. As an excercise in learning, I have constructed a little project to build a Hash Generator (MD5, SHA, etc). This little project uses: - Hibernate for persistance of data - Spring for DI (dependency

[jboss-user] [Beginners Corner] - Re: A new understanding of ClassLoaders...

2007-02-22 Thread mbabauer
So, let me see if I can sum up what you are saying. Stuff in the JBoss lib and the server lib should be visible globally (JBoss lib across all servers, server lib across just that server), and things in the EAR should be visible to everything in the EAR *Except* the WAR(s). This leads into

[jboss-user] [JBoss Messaging] - Re: Monitoring the depth of a Queue/Topic

2007-02-20 Thread mbabauer
genman wrote : I don't really see how you could make this app-server agnostic. | Well, you got me going in the right direction in any light. It was nice to dream of a world where one J2EE app could coexist peacefully with many an Ap Server. View the original post :

[jboss-user] [JBoss Eclipse IDE (users)] - Classpath problems when adding new server with no default

2007-02-02 Thread mbabauer
I have been a JbossIDE 1.5 user for some time, but I recently had to rebuild my 3.2 Eclipse instance, and as a result I no longer can use JbossIDE 1.5. In installing JbossIDE 2.0.0-beta2, however, I have run into a problem. The server instance I am trying to add does not have a 'default'

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Classloader advice, WAR troubles, and the like...

2006-11-15 Thread mbabauer
My team is in the process of refactoring a lot of our code to run on JBoss 4.0.5. We currently deploy to JBoss 3.2.5. As we all know, there was a huge paradigm shift in class loading between the 3.x and 4.x JBoss versions. The older versions used a flat class loader, or one typically

[jboss-user] [Installation, Configuration Deployment] - Re: WAR files lib seems not to get loaded by classloader

2006-11-14 Thread mbabauer
I have done a lot of reading and a bunch of testing, and here is what I have found so far... The problem is not with the EAR, per say, as much as its a problem with the WAR. When deployed outside of the EAR, I still get the NoClassDefFoundError for DispatchAction. Switching the Tomcat

[jboss-user] [Installation, Configuration Deployment] - Re: WAR files lib seems not to get loaded by classloader

2006-11-13 Thread mbabauer
genman wrote : There was a change... | http://www.jboss.org/wiki/Wiki.jsp?page=ClassLoadingConfiguration Not quite sure what has changed. I know the default for JBoss 3.2.x and prior is the Unified ClassLoader, whereas after its a hierarchical class loaded. But, either way, shouldn't a

[jboss-user] [Installation, Configuration Deployment] - WAR files lib seems not to get loaded by classloader

2006-11-09 Thread mbabauer
My team is in the process of porting our app from JBoss 3.2.5 to JBoss 4.0.5. One of the things that has been biting us is the difference in the class loader. As part of this move, we are trying to stay away from the old Unified class loader. As such, we are trying to deploy out application