[JBoss-user] questions of jboss start and jboss library

2002-04-18 Thread Bruce Ling
two questions: 1. I noticed that if I restarted the jboss several time, I cannot get it started properly any more. It complains that a lot of the ports are occupied. The current way I solve the problem is that I go hunting all the java process and kill them. Then it is fine. Is there any smarte

[JBoss-user] Re: JBOSS:Web to Local interface : PLEASE HELP!

2002-04-18 Thread Dmitri Colebatch
Yasir, > Because of your pointer on the JNDIViewer (i didn't know what it did, > yescall me #$!) i figured that the bean was not being bound under > the name of NavigationServiceLocal but instead is being bound under > NavigationService only and is looked up with local/NavigationService.

[JBoss-user] Re: JBOSS:Web to Local interface : PLEASE HELP!

2002-04-18 Thread Dmitri Colebatch
Hi Yasir, > Im trying to get a jsp page to access the local interface of a session bean. The > session bean and the JSP are deployed in an EAR file that has a JAR with the EJB and >a > WAR with the JSPs. > > im using JBOSS 2.4.4/Catalina and Apache. I'm assuming you got my name from a post on t

[JBoss-user] Databases

2002-04-18 Thread Mike Dougherty
While in development I am using the HypersonicSQL instance that came with the download. But I am curious what databases are being used with JBoss in production. If I am going to distribute an application for JBoss which databases should I test and distribute db-service.xml files for? Thanks for y

Re: [JBoss-user] Differences between 2.x and 3.x?

2002-04-18 Thread Dmitri Colebatch
Title: RE: [JBoss-user] Differences between 2.x and 3.x? Granted JBuilder has come a long way, and yes provides a lot of functionality.  Does it keep jboss.xml and jbosscmp-jdbc.xml/jaws.xml in sync?   cheers dim - Original Message - From: Mike Finn To: JD Brennan ; [EMAIL

Re: [JBoss-user] 3RC1 Requires users.properties File?

2002-04-18 Thread David Jencks
I'm not sure where this is discussed outside of the jca spec and sun's jca book, which are kind of overkill... There are 3 places or ways of authenticating to the EIS (database): Container managed sign-on: JBoss supplies the credentials (user/pw). This is now done through a JAAS login module, a

Re: [JBoss-user] jetty compile error

2002-04-18 Thread Dennis Muhlestein
I understand the error. The problem is, this code is in the generated index$jsp.java -- not the jsp that I wrote. Is jetty compiler outputting bad java? Or is it trying to compile against an outdated library? Most likly the problem is in configuration somewhere but I don't know where to look.

Re: [JBoss-user] jetty compile error

2002-04-18 Thread Jules Gosnell
Dennis Muhlestein wrote: > I searched forums and the lists but didn't see anything that talked > about this. It seems to me like maybe the wrong servlet.jar is being > used or something. > this is with 3.0 RC1. > > > HTTP ERROR: 500 Unable to compile class for JSP > /tmp/Jetty__8080___/ inde

[JBoss-user] Re: [JBoss-dev] tomcat4 log dir in jboss3-rc1

2002-04-18 Thread Jason Dillon
Is there a way to access properties from the tomcat config? If so it should set the log dir in ${jboss.server.home.dir}/log --jason Quoting David Ward <[EMAIL PROTECTED]>: > I don't know the ins-and-outs of creating a change request, but was > wondering if for the next rc of jboss3-tomcat4

RE: [JBoss-user] 3RC1 Requires users.properties File?

2002-04-18 Thread Mike Finn
David, Yeah - I see that now. Sorry for causing confusion -was stuck in Beta2 thinking. So it looks like the authentication for a datasource connection (against the DB) is now done through a JAAS realm as opposed to through the MCF properties in the JDBC RA (if that's where it was..)? Is/was ther

[JBoss-user] jetty compile error

2002-04-18 Thread Dennis Muhlestein
I searched forums and the lists but didn't see anything that talked about this. It seems to me like maybe the wrong servlet.jar is being used or something. this is with 3.0 RC1. HTTP ERROR: 500 Unable to compile class for JSP /tmp/Jetty__8080___/ index$jsp.java:371: Incompatible type for met

RE: [JBoss-user] 3RC1 Requires users.properties File?

2002-04-18 Thread Bunker, Dan
The Connection Management has changed since the 2.4 release. You have two options to fix this. 1. Configure your db-service.xml file to use the ConfiguredIdentiyLoginModule with the correct params (located in login-config.xml). 2. Remove the security domain element out of your db-service.xml f

Re: [JBoss-user] 3RC1 Requires users.properties File?

2002-04-18 Thread David Jencks
When you get messages about the UserRolesLoginModule when you are trying to make a db connection in rc1, that means you haven't set up the security domain corresponding to your db config. DON'T try to set up the UserRolesLoginModule to solve this, it won't supply the info needed to make the db co

Re: [JBoss-user] 3RC1 Requires users.properties File?

2002-04-18 Thread Hunter Hillegas
After adding the security stuff to login-conf.xml, my connections now are working again. Thanks. Hunter > From: David Jencks <[EMAIL PROTECTED]> > Date: Thu, 18 Apr 2002 08:18:55 -0400 > To: Hunter Hillegas <[EMAIL PROTECTED]> > Cc: JBoss User <[EMAIL PROTECTED]> > Subject: Re: [JBoss-user] 3RC

Re: [JBoss-user] 3RC1 Requires users.properties File?

2002-04-18 Thread David Jencks
Well, if you followed the instructions on what has to match between postgres-service.xml and login-conf.xml, and it still doesn't work, please post both. thanks david jencks On 2002.04.18 13:20:40 -0400 Hunter Hillegas wrote: > I'm using my own db, postgres, with a new service file created from

Re: [JBoss-user] 3RC1 Requires users.properties File?

2002-04-18 Thread Hunter Hillegas
No, we aren't using JAAS, but I'm thinking maybe our datasource, adapted from the example is trying to. > From: "Mike Finn" <[EMAIL PROTECTED]> > Date: Thu, 18 Apr 2002 13:08:34 -0400 > To: "Hunter Hillegas" <[EMAIL PROTECTED]>, "JBoss User" > <[EMAIL PROTECTED]> > Subject: RE: [JBoss-user] 3RC1

Re: [JBoss-user] 3RC1 Requires users.properties File?

2002-04-18 Thread Hunter Hillegas
I'm using my own db, postgres, with a new service file created from the example I found in the source (new ConnectionManager example). > From: David Jencks <[EMAIL PROTECTED]> > Date: Thu, 18 Apr 2002 08:18:55 -0400 > To: Hunter Hillegas <[EMAIL PROTECTED]> > Cc: JBoss User <[EMAIL PROTECTED]> >

RE: [JBoss-user] 3RC1 Requires users.properties File?

2002-04-18 Thread Mike Finn
Does this ear file use JAAS? I wouldn't think you would see this unless the container was loading JAAS to satisfy some security constraint. Mine doesn't. Looks like auth.conf stuff is now in login-config.xml (as of RC1?). And, in login-config.xml, the 'other' (ie the default) security domain is s

Re: [JBoss-user] Re: log4j 1.2rc1 now available

2002-04-18 Thread Scott M Stark
1.1.3 Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "David Ward" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 18, 2002 9:16 AM Subject: [JBoss-user] Re: log4j 1.2rc1 now available W

[JBoss-user] Re: [JBoss-dev] tomcat4 log dir in jboss3-rc1

2002-04-18 Thread Scott M Stark
The sourceforge project page is the gateway to all requests: http://sourceforge.net/projects/jboss/ Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "David Ward" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> C

[JBoss-user] tomcat4 log dir in jboss3-rc1

2002-04-18 Thread David Ward
I don't know the ins-and-outs of creating a change request, but was wondering if for the next rc of jboss3-tomcat4 the tomcat4-service.xml file could be changed in this way: From this: To this: Currently it assumes the old JBoss-2.4.x-Tomcat-x.x.x dir structure where jboss and tomcat/

Re: [JBoss-user] Collections in CMP2.0

2002-04-18 Thread Peter Shillan
Erm... check *what* exactly... :">... Peter. On Wed, 17 Apr 2002 13:32:55 -0500 "Dain Sundstrom" <[EMAIL PROTECTED]> wrote: > Peter Shillan wrote: > > > Hi there, > > > > If I have a CMP 2.0 attribute which is a collection, I have > > > > public abstract void setChildren(java.util.Collection

[JBoss-user] Re: log4j 1.2rc1 now available

2002-04-18 Thread David Ward
What version of log4j does jboss-3.0.0RC1 use? -- Ceki Gülcü wrote: > Hi everyone, > > > In addition to many performance improvements, bug fixes, and other > small enhancements, log4j 1.2 adds JMX support, Mapped Diagnostic > Contexts, JDBC logging, graphical log viewer (chainsaw), and buffer

RE: [JBoss-user] Differences between 2.x and 3.x?

2002-04-18 Thread Mike Finn
Title: RE: [JBoss-user] Differences between 2.x and 3.x? With JB6EE you can add/remove bean methods at will (to the implementation class source) and *JBuilder*  keeps interfaces, etc in synch for you. Rename the method, add parms, etc, and the changes are reflected as well. It also gives you

Re: [JBoss-user] 3RC1 Requires users.properties File?

2002-04-18 Thread David Jencks
The example config files at connector/src/etc/example-config now have some instructions on setting up security. Are you using hsql or your own db config? Thanks david jencks On 2002.04.18 00:24:44 -0400 Hunter Hillegas wrote: > Just checked out a fresh copy of the 3.0RC branch and compiled. >

Re: [JBoss-user] Declaring finders: problem and work-around

2002-04-18 Thread Shunsuke Masuda
Another workaound would be - Original Message - From: "Richard Kasperowski" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 17, 2002 10:35 AM Subject: [JBoss-user] Declaring finders: problem and work-around > This page tells us how to declare custom finders: > >

[JBoss-user] MAPPING configuration error for request UR

2002-04-18 Thread Maris Orbidans
Do you know what does it mean ? ( JBoss 2.4.4 + Tomcat, Struts ) Maris [INFO,EmbeddedCatalinaServiceSX] StandardHost[localhost]: MAPPING configuration error for request UR I [ERROR,EmbeddedCatalinaServiceSX] HttpProcessor[8080][3] process.invoke java.lang.NullPointerException at org