[JBoss-user] Jboss Auto-Deploy ERROR

2001-11-16 Thread Papo Napolitano
Hi! When I build a Webpp and JBoss autodeploy it the following error appears : [EmbeddedCatalinaServiceSX] WebappLoader[/bcu]: Deploying class repositories to work directory /usr/JBoss-2.4.2_Tomcat-4.0/catalina/work/localhost/bcu [EmbeddedCatalinaServiceSX] StandardManager[/bcu]: Seeding random

[JBoss-user] Session Create serialization error

2001-11-16 Thread Lucas McGregor
I am running JBoss-2.4.1_Tomcat-3.2.3 on Solaris on Intel, using JVM 1.3.0_02. Periodically, a call to a stateless session bean called com.novalogic.ejb.controller.SessionController's createSession method results in the following stack trace. And subsequent call to this method will fail with the

Re: [JBoss-user] Security

2001-11-16 Thread Fred Loney
com.sun.jdmk.comm.HtmlAdaptorServer is part of the Sun JMX RI (cf. java.sun site). AFAIK source is not available. The API is available and has an authorization protocol. HtmlAdaptorServerMBean does not expose the authorization protocol. Fred Loney Spirited Software, Inc. www.spiritedsw.com -

Re: [JBoss-user] Out of memory error - memory leak?

2001-11-16 Thread Jozsa Kristof
On Fri, Nov 16, 2001 at 09:28:51AM -0600, danch wrote: > Jozsa Kristof wrote: > > >I'm developing my own Cocoon project in a bundled JBoss+Catalina on linux. > >I've found out, that during development, after 6-8 deployment of my project > >WAR file, jboss drops a nasty out of memory exception. >

[JBoss-user] Catalina/JBoss Security Problem

2001-11-16 Thread Jake Thompson
Hi All,   No matter how I seem to configure my application, the catalina side of authentication is allowing everyone through?   I can authenticate manually and validly check users and pass.  However using a standard form going to "j_security_check", it does not seem to be using the jboss securi

Re: [JBoss-user] EJB in ear referencing EJB outside of ear

2001-11-16 Thread Guy Rouillier
The java:comp/env/ejb namespace is available from anything running in the JBoss environment, not just something in an ear. I use it when one EJB wants to call another EJB. - Original Message - From: "Joost v.d. Wijgerd" <[EMAIL PROTECTED]> To: "Richard Doust" <[EMAIL PROTECTED]>; <[EMAIL

RE: [JBoss-user] EJB in ear referencing EJB outside of ear

2001-11-16 Thread Richard Doust
JOost, Thanks for the advice. I appreciate your taking the time to respond. I do have a better understanding of my problem this morning, having solved it last night, and the solution didn't involve referencing the bean within the code by its JNDI name. In fact, I think referencing a bean by its JN

Re: [JBoss-user] Out of memory error - memory leak?

2001-11-16 Thread danch
Jozsa Kristof wrote: > I'm developing my own Cocoon project in a bundled JBoss+Catalina on linux. > I've found out, that during development, after 6-8 deployment of my project > WAR file, jboss drops a nasty out of memory exception. This is probably a thread problem - if you look at the messa

Re: [JBoss-user] JAWS Primary Key Bug

2001-11-16 Thread danch
Kristoffer Larsson wrote: > In JBoss 2.2.2 there is a bug in JDBCDefinedFinderCommand. It fails > to prepend the table name to all the columns of the table causing > ambiguous column references. > > Vinay Menon posted a bug fix that takes care of this in the JBossCMP > list in April, but my qu

[JBoss-user] Out of memory error - memory leak?

2001-11-16 Thread Jozsa Kristof
I'm developing my own Cocoon project in a bundled JBoss+Catalina on linux. I've found out, that during development, after 6-8 deployment of my project WAR file, jboss drops a nasty out of memory exception. Now, I have two questions regarding this: isn't that caused by a memory leak in JBoss (as I

[JBoss-user] Not able to compile JAVA file in JBoss

2001-11-16 Thread Kiran MN
Hi All,   I am newbie to Jboss Server. I have installed Jboss-2.4.3_tomcat-3.2.3 and able to run the server successfully. my problem is, I am not able to compile the following Java file.   import javax.ejb.EJBObject;import java.rmi.RemoteException;   public interface Project extends EJBObje

[JBoss-user] JAWS Primary Key Bug

2001-11-16 Thread Kristoffer Larsson
In JBoss 2.2.2 there is a bug in JDBCDefinedFinderCommand. It fails to prepend the table name to all the columns of the table causing ambiguous column references. Vinay Menon posted a bug fix that takes care of this in the JBossCMP list in April, but my question is: Why is the bug still there i

RE: [JBoss-user] EJB in ear referencing EJB outside of ear

2001-11-16 Thread Joost v.d. Wijgerd
Hi, If you deploy a bean outside an ear file (e.g. as a bean-jar not as another ear file) you can reference the bean only with it's JNDI name. You can't user java:comp/env/ejb namespace bacause that can only be used within one enterprise archive. So if the jndi name of your bean is "MyBean" then