Re: [JBoss-user] how do I turn on log4j trace?

2001-11-25 Thread Guy Rouillier
Did you take a look at the source for ObjectPool? I just took a quick look, and here is its logging mechanism: private void log(String message) { if(logWriter != null) logWriter.println(message); } ObjectPool is not using log4j (or even the JBoss logging class), so l

RE: [JBoss-user] EJB QL Help

2001-11-25 Thread Dain Sundstrom
This is a bug in the EJB-QL parser. I was making a check against only the known abstract schemas and not the known collection valued identifiers. -dain > -Original Message- > From: Hunter Hillegas [mailto:[EMAIL PROTECTED]] > Sent: Sunday, November 25, 2001 5:09 PM > To: JBoss 2 > Subjec

Re: [JBoss-user] Service bean

2001-11-25 Thread Guy Rouillier
MBeans are not JBoss-specific, they are defined by Sun. I'm fairly new to MBeans myself, but if you elect to use the JBoss helper classes, then your MBean implementation becomes JBoss-specific, but you don't have to do that. MBeans can indeed use other MBeans; the dependencies are resolved by th

Re: [JBoss-user] Apache Webserver with Jboss

2001-11-25 Thread Guy Rouillier
There are howto's distributed with Tomcat that describe how to get it to work with Apache. Look specifically for info on mod_jk. - Original Message - From: "John LYC" <[EMAIL PROTECTED]> To: "Jboss Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, November 22, 2001 10:51 PM Subject: [JBo

Re: [JBoss-user] How to deploy MBean

2001-11-25 Thread Guy Rouillier
MBeans are not deployed in the sense that EJBs are. Put the jar file containing your MBean into the lib/ext directory and restart JBoss. If you'd prefer to have your MBean someplace else, then you can add a classpath extension in jboss.conf (include your jar file in the extension.) Apparently, J

[JBoss-user] ERROR : Nested Field does not have a get method

2001-11-25 Thread Kar YEOW
After deploying the jar, I got the following messages   ... [Container factory] Deploying xxx.xxx.xxx[Container factory] Deploying xxx.xxx.xxx[Container factory] ERROR : Nested Field does not have a get method[Container factory] ERROR : Nested Field does not have a get method[ContainerManage

[JBoss-user] EJB QL Help

2001-11-25 Thread Hunter Hillegas
I am having trouble with an EJBQL query... I'm sure I'm making a dumb mistake but my brain is fried and I can't see it. Here's the query: SELECT OBJECT(p) FROM ProductGroup as c, IN(c.products) AS p WHERE c.name = ?1 The point is to find all products from the productgroup named in the parameter