Re: [JBoss-user] Authentication problems in JBoss-2.2.2/Tomcat-3.2.2 (env not bound)

2001-06-08 Thread Scott M Stark
The 2.2.2 bundle uses the JBoss security manager. You have to define the security-domain in a jboss-web.xml descriptor. See the JAAS tutorial: http://www.jboss.org/documentation/HTML/ch11s83.html - Original Message - From: "Greg Merrill" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

Re: [JBoss-user] Seeking advice on deadlock problem

2001-06-08 Thread Bryan Field-Elliot
Thanks Georg, that really clarifies a lot of things. I see now that application servers (like jBoss) might grow in the future to do better deadlock detection, to automatically get out of bad scenarios like this one. But in the meantime, we need to put extra logic in our business methods to do pr

Re: [JBoss-user] CMP and mySQL relational mapping

2001-06-08 Thread David Jencks
Hi, On 2001.06.08 10:43:13 -0400 Nicolai P Guba wrote: > Simple question (I hope): > > If I'd like to use CMP for a project. mySQL supports auto-generating > the primary key for an inserted row (AUTO_INCREMENT). Is this feature > supported by jboss? No. There is extremely extensive discussio

Re: [JBoss-user] How to write this Finder in jaw.xml

2001-06-08 Thread David Jencks
Hi, If this is literally what you want, doesn't this mean you have a read only bean with only one field, FirstName? If this is really what you want, create a view select distinct FirstName from student_info and work against that. If you need distinct in your query, you leaving out information n

Re: [JBoss-user] Whither Java LGPL'd Rules Engines?

2001-06-08 Thread David Jencks
Hi, Please look at my prototype rules engine implementation at home.earthlink.net/~davidjencks/ You may need to fiddle with a bit to get it to work, and will probably need to use the 2.3 jboss version as it uses some autodeployer features that may not be in the 2.2.x version. Also it uses fire

Re: [JBoss-user] Seeking advice on deadlock problem

2001-06-08 Thread Georg Rehfeld
Hi Bryan, > I have an application, in which every client access is done through a > Stateful Session bean, which internally manages the Entity beans > (Session Facade pattern). > > Every single method of my session bean is marked as "Requires" a > transaction. I realize that this can be a per

Re: [JBoss-user] InterClient Driver

2001-06-08 Thread David Jencks
Hi, I'm surprised to see this with jdk1.2.2. Usually errors like this come from interclient 2 and sun jdk 1.3. Usually the solution is to recompile (at least) interclient under jdk1.3. At firebird.sourceforge.net the interclient 20 includes an ant script that compiles both interclient and inters

Re: [JBoss-user] HELP - jboss and interbase

2001-06-08 Thread David Jencks
Hi, 1. remove the extra comma jboss.jcml : > >name="DefaultDomain:service=JdbcProvider"> > ->,<-interbase.interclient.Driver > > 2. In my experience people usually have to recompile the java portion (interclient) of interclient/interserver to get it to work under jdk1.3. Th

Re: [JBoss-user] Help with HTTPS

2001-06-08 Thread Guy Rouillier
Well, if you want one web server to communicate with another web server, I"m assuming you're doing this in a java class. I'm emailing you some source to do that. The class will use SSL. - Original Message - From: "Nithin Bose" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, Ju

Re: [JBoss-user] DB pool without specified username/password.

2001-06-08 Thread Guy Rouillier
What do you mean by "add a new connection to the pool"? Each pool contains a set of connections to a single datasource. You do not explicitly add connections to this pool. The connection manager does that as necessary when you issue getConnection() calls. This happens dynamically - no need to

Re: [JBoss-user] RE: JBoss-user digest, Vol 1 #711 - 10 msgs

2001-06-08 Thread Guy Rouillier
Not sure what you mean. Do you mean a simple Java bean or an EJB? If the former, this is not really a JBoss question but a simple Java question. But the Java bean in the classpath of your JSP engine. If the latter, then you need to put the home and remote interface classes for the EJB in that

Re: [JBoss-user] CMP Performance Question

2001-06-08 Thread Guy Rouillier
How could the container possibly now that your code is going to be calling n number of set() methods vs calling m number of set() methods? It would need to be able to know that in order to group multiple updates into one update statement. In your example below, what if your code had only

[JBoss-user] Authentication problems in JBoss-2.2.2/Tomcat-3.2.2 (env not bound)

2001-06-08 Thread Greg Merrill
I recently downloaded JBoss-2.2.2 w/bundled Tomcat-3.2.1. I am running it on Win98. When I try to run the Tomcat sample jsp called "security" (this sample performs some basic user authentication) I get the following message in my JBoss server window: [EmbeddedTomcatSX] Error during authenticate

Re: [JBoss-user] jboss-tomcat-apache

2001-06-08 Thread Alex Radka
> can't be. I start Apache first always before jboss-tomcat and it works just > fine. It works the other way around too. All on win2k. Check : When I started JBoss after Apache I noticed I was getting an exception after the load of the last context. I'm at home so I don't have the stack trace. Bu

Re: [JBoss-user] Same Interface to Bean and EJB objects

2001-06-08 Thread Per Lewau
On Fri, 8 Jun 2001, Emerson wrote: > It is , but it implements the business interface too, as ed roman say in > his book, and it´s a pattern in theserverside too. The reason for the EJB class to implement the remote interface is to get a compile-time check of the EJB class. The home interface m

Re: [JBoss-user] Same Interface to Bean and EJB objects

2001-06-08 Thread Emerson
It is , but it implements the business interface too, as ed roman say in his book, and it´s a pattern in theserverside too. At 02:16 09/06/01 +0200, you wrote: > >On Fri, 8 Jun 2001, Emerson wrote: > >> It´s said it´s a good practice to make both EJB interface and Bean object >> to implement the

Re: [JBoss-user] It is compulsory that jboss start on server JVM?

2001-06-08 Thread Scott M Stark
-server is a Sun JVM option that starts the server version of HotSpot. The run.sh in main now checks to see if a Sun VM is being used and only uses -server if that is the case. - Original Message - From: "Hunter Hillegas" <[EMAIL PROTECTED]> To: "JBoss 2" <[EMAIL PROTECTED]> Sent: Friday

Re: [JBoss-user] Same Interface to Bean and EJB objects

2001-06-08 Thread Per Lewau
On Fri, 8 Jun 2001, Emerson wrote: > It´s said it´s a good practice to make both EJB interface and Bean object > to implement the same business interface. I tried that and had this warning : > > Bean : EleitorVLHHome > Method : public abstract EleitorVLHEJB create(String, String, String,

Re: [JBoss-user] jboss-tomcat-apache

2001-06-08 Thread Lionel Siau
Alex, basically it is to tell Apache to fwd the request on to the tomcat to handle the request. My deployed applications are tomcat-test.ear and jive.war in the jboss/deploy directory. The context is added automatically in them. Lionel - Original Message - From: "Alex Radka" <[EMAIL PR

Re: [JBoss-user] jboss-tomcat-apache

2001-06-08 Thread Lionel Siau
Alex, can't be. I start Apache first always before jboss-tomcat and it works just fine. It works the other way around too. All on win2k. Check : 1) U have an entry in http.conf refering to mod_jk.conf right? 2) The mappings in mod_jk.conf are for directory mapping. This is so that Apache knows w

[JBoss-user] How to write this Finder in jaw.xml

2001-06-08 Thread Shen, Yi
Hi, if I have a sql like this: select distinct FirstName from student_info order by FirstName and I am using a CMP, how to write the in jaw.xml? Thanks a lot! ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/

[JBoss-user] Same Interface to Bean and EJB objects

2001-06-08 Thread Emerson
It´s said it´s a good practice to make both EJB interface and Bean object to implement the same business interface. I tried that and had this warning : Bean : EleitorVLHHome Method : public abstract EleitorVLHEJB create(String, String, String, String) throws RemoteException, CreateException Sec

Re: [JBoss-user] It is compulsory that jboss start on server JVM?

2001-06-08 Thread K.V. Vinay Menon
And just for the record, I've been able to get upto 3 fold improvements in server response times as compared to the -server option on Tru64 with the -fast option [Fast VM for Tru64 on those huge Alpha servers] Vinay - Original Message - From: "Juha Lindfors" <[EMAIL PROTECTED]> To: <[EMAI

[JBoss-user] Bugs" /tmp/tmp.properties

2001-06-08 Thread Peng Peng
Hi, I am running jboss2.2.2+tomcat3.2.2 on win NT. By accident, I put some junk files in jboss/tmp directory and got a lot of exceptions (J2EE deploy service, complaining not found tmp.properties ) when running run_with_tomcat to start server. But the file exists. After I remove all those junk f

RE: [JBoss-user] CMP Performance Question

2001-06-08 Thread Dave King
Never mind I found it. Transactions setting were not what I thought they were. Doh! -Peace Dave > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Dave King > Sent: Friday, June 08, 2001 4:33 PM > To: [EMAIL PROTECTED] > Subject: [JBoss-user] CMP Pe

RE: [JBoss-user] ??!! Stateful Session Passivate with Entity references ?? !!

2001-06-08 Thread Richard Katz
Hi Ralph, When I attempted to use an entity bean remote interface as an instance variable in JBoss 2.0, it would blow the bean up when it tried to passivate. Do you know of thist was a problem with some earlier version of JBoss - JBoss 2.0? Thanks! Regards, Rich Katz -Original Mess

[JBoss-user] Is it compulsory that jboss start on server JVM

2001-06-08 Thread moogs
Each JVM differs on how fast it loads? Server is the fastest mode, seems to be 10% more than hotspot. moogs Anyone have more insight on what -server actually does? My development platform (MacOS X) doesn't support -server either... Hunter > From: Per Lewau <[EMAIL PROTECTED]> > Reply-To: [

Re: [JBoss-user] Whither Java LGPL'd Rules Engines?

2001-06-08 Thread Juha Lindfors
David Jencks has worked on a rules engine integration. His work is available here, http://home.earthlink.net/~davidjencks/ -- Juha At 15:39 8.6.2001 -0600, you wrote: >I am interested in utilizing a rules engine in my upcoming EJB project. >I love jBoss because it works well, it's free, and h

[JBoss-user] Seeking advice on deadlock problem

2001-06-08 Thread Bryan Field-Elliot
I have an application, in which every client access is done through a Stateful Session bean, which internally manages the Entity beans (Session Facade pattern). Every single method of my session bean is marked as "Requires" a transaction. I realize that this can be a performance hit when it's

Re: [JBoss-user] It is compulsory that jboss start on server JVM?

2001-06-08 Thread Juha Lindfors
At 13:20 8.6.2001 -0700, you wrote: >Anyone have more insight on what -server actually does? It uses the server side optimized hotspot instead of the client side optimized. -- Juha ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforg

[JBoss-user] CMP Performance Question

2001-06-08 Thread Dave King
with jaws/cmp it seems that each set method issues an update statement to the DB. I'm wondering why this is. I'm guessing that it is easier this way as the bean does not need to track what fields need to be updated. But that is a guess. I'm just curious as this behavior came as surprise to m

RE: [JBoss-user] any consequences to use JDBC_ODBC bridge?

2001-06-08 Thread Dan - Blue Lotus Software
Generally speaking, the JDBC-ODBC bridge will significantly under perform native JDBC drivers. I don't have any hard numbers, but I believe the difference tends to be on an order of magnitude. That is, the JDBC-ODBC drivers will perform on the order of 1/10th the speed of native JDBC drivers. Y

[JBoss-user] Whither Java LGPL'd Rules Engines?

2001-06-08 Thread Bryan Field-Elliot
I am interested in utilizing a rules engine in my upcoming EJB project. I love jBoss because it works well, it's free, and has a great developer community around it. I'm looking for a rules engine with a similar set of parameters. Does such a thing exist? In particular it needs a strong awaren

[JBoss-user] JBoss-2.2.2_Jetty-3.1.RC5

2001-06-08 Thread Kemp Randy-W18971
Yes! Yes! I was wrong! I did get the null exception on Solaris 2.6, Sun JDk1.3.0_02, and the new jetty jboss package. But what does it mean? Is it the patches? OS? JDK? Or am I losing my mind? It happens when I try to display the sample JSP pages, which display fine. I must be losing

[JBoss-user] JBoss-2.2.2_Jetty-3.1.RC5

2001-06-08 Thread Kemp Randy-W18971
Sorry. Spoke too soon. I am at home, and only thought I got this error, but I am just getting the null context. From: Kemp Randy-W18971 To: '[EMAIL PROTECTED]' Cc: Subject: [JBoss-user] JBoss 2.2.2 / Jetty 3.1RC5 package available Sent: 6/8/01 3:42 PM

[JBoss-user] JBossMQ docs?

2001-06-08 Thread Pawan Kumar Katharikuppam
Hi, I am new to JBoss, I want to use the JMS implementation available with JBoss, JBossMQ. Can someone tell me where I could get information on that, I mean features, configuration required etc? Thanks in advance, Pawan ___ JBoss-user mailing list [

[JBoss-user] JBoss 2.2.2 / Jetty 3.1RC5 package available

2001-06-08 Thread Kemp Randy-W18971
Fascinating. I am experiencing the same problem with Solaris 2.6, jdk1.3, and this jboss/jetty package, but it works great for you with the same combination. I can only speculate that the patches for Solaris or JDK that are installed or not installed may make the difference. Date: Fri, 8 Jun

Re: [JBoss-user] It is compulsory that jboss start on server JVM?

2001-06-08 Thread Hunter Hillegas
Anyone have more insight on what -server actually does? My development platform (MacOS X) doesn't support -server either... Hunter > From: Per Lewau <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > Date: Fri, 8 Jun 2001 22:04:03 +0200 (MET DST) > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-u

[JBoss-user] any consequences to use JDBC_ODBC bridge?

2001-06-08 Thread Lin Khanmamedov
Hi, I am a beginner to JBoss. From the online doc, it is suggested not to use JDBC-ODBC bridge. Does anyone know the reasons and possible consequences if i use it? I try to use a MS SQL db with JDBC-ODBC bridge (that's the required db and driver to use) Has anyone have such experience how to set

Re: [JBoss-user] It is compulsory that jboss start on server JVM?

2001-06-08 Thread Per Lewau
On Thu, 7 Jun 2001 [EMAIL PROTECTED] wrote: > Hi >I running jdk1.3 on irix which does not support server JVM. I could bring > up the Jboss engine using classic jvm. When i deployed the interestEJB application. > I got the initial JNDI context but could not get the reference of the >RemoteIn

Re: [JBoss-user] chat and forum

2001-06-08 Thread Bernard Choi
This might be what you're looking for... Jive is an open source web forum application. http://www.coolservlets.com/jive/ - Original Message - From: Boris Garbuzov <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, June 09, 2001 2:32 AM Subject: [JBoss-user] chat and forum > S

Re: [JBoss-user] Deploying more than one EJB in one JAR

2001-06-08 Thread Juha-P Lindfors
Yes, see the DTD in the ejb spec for an example. -- Juha On Fri, 8 Jun 2001, Emerson wrote: > Is it possible to put more than one ejb in one ejb-jar??? > > this is my single EJB xml: > > ejb-jar> > > >EleitorDetailHome >EleitorDetailHome >EleitorDetailEJB >EleitorDetailB

[JBoss-user] InterClient Driver

2001-06-08 Thread R . Price
I've searched the archives and found that at least one other person has encountered this problem, but with no resolution(s) stated.  Been unable to find a solution to why this is happening from anywhere on the web, so I'm trying here because I know somebody out there has to have an answerI ho

RE: [JBoss-user] Deploying more than one EJB in one JAR

2001-06-08 Thread Tahir Awan
sure, its ok to add any # of tags. > -Original Message- > From: Emerson [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 08, 2001 2:18 PM > To: [EMAIL PROTECTED] > Subject: [JBoss-user] Deploying more than one EJB in one JAR > > > Is it possible to put more than one ejb in one ejb-jar??

[JBoss-user] JBuilder and 2.2.2

2001-06-08 Thread Aaron White
hi, I am just starting with JBoss 2.2.2 and was trying to get it to run in JBuilder on win2k. I have followed the guide, and it seems to start fine, however, my jar file does not seem to deploy correctly. It works when I run JBoss from the command prompt, and the difference seems to be that in

Re: [JBoss-user] SEARCH BUTTON DOUES WORK - DOES ANYBODY CAN DOSOMETHING!!!!!!!!!!!!!!!!!

2001-06-08 Thread Juha-P Lindfors
> DOES ANYBODY CAN DO SOMETHING! try shouting a bit more, maybe it will help maybe abuse that exclamation mark a few more times as well once you have finished doing all that, surf to jboss.org, click on the mailing lists link and then click on the archives link. -- Juha ___

[JBoss-user] Maximum number of paramenters

2001-06-08 Thread Emerson
Sorry I got the problem... a type mismatch (Date-String) I made a value object for transporting all the props in one method. I´m getting an error, is this a limitation of the size ou number of parameters? : C:\webcad\classes>javac -classpath C:\jdk1.3.0_02\lib\classes12.zip;. EleitorDAO .java |

[JBoss-user] ServiceUnavailableException

2001-06-08 Thread Jeffrey Thomas Liu
I'm using Jboss-2.2.2 and Tomcat 3.2.2 with apache/mod_jk on RedHat 6.1 and mySQL backend. I can run the tomcat examples such as Number Guess and Hello World and also the Servlet calling EJB example. However, when I try to run my own jsp (attached), I get the error at the end of this e-mail. W

[JBoss-user] Maximum number of paramenters

2001-06-08 Thread Emerson
I made a value object for transporting all the props in one method. I´m getting an error, is this a limitation of the size ou number of parameters? : C:\webcad\classes>javac -classpath C:\jdk1.3.0_02\lib\classes12.zip;. EleitorDAO .java | more EleitorDAO.java:68: cannot resolve symbol symbol : c

Re: [JBoss-user] SEARCH BUTTON DOUES WORK - DOES ANYBODY CAN DO SOMETHING!!!!!!!!!!!!!!!!!

2001-06-08 Thread Nicholas
Search at this link: http://www.mail-archive.com/jboss-user%40lists.sourceforge.net/ --- Jean-Michel DELSAUX <[EMAIL PROTECTED]> wrote: > Hi, > > This is a message for the web admi: the search > button does work for weeks... > > ERROR is: > - > Mailing Lists > SourceForge >

[JBoss-user] SEARCH BUTTON DOUES WORK - DOES ANYBODY CAN DO SOMETHING!!!!!!!!!!!!!!!!!

2001-06-08 Thread Jean-Michel DELSAUX
Hi, This is a message for the web admi: the search button does work for weeks... ERROR is: - Mailing Lists SourceForge jboss-user - Archive 2001 (6145 msgs) 2000 (6 msgs) Your search for htsearch detected an error. Please report this to the returned matches webmaste

Re: [JBoss-user] OutOfMemoryError

2001-06-08 Thread David Ward
Allen has a good idea about checking for a lot of object creations. I've found OptimizeIt! very useful to look for that kind of thing, especially because you can sort your view by number of instances of any particular class. You can download a 2-week full demo version. On a side note, it also

[JBoss-user] chat and forum

2001-06-08 Thread Boris Garbuzov
Sorry for irrelevance of the question to JBoss. I need free and community supported chat and forum java based applications. I would be happy to find such as examples of some Apache projects. Can you give any hints? ___ JBoss-user mailing list [EMAIL PR

Re: [JBoss-user] ./conf directory location

2001-06-08 Thread Georg Rehfeld
Hi Julian, > The point (IMHO) is that whilst mulitple users should > be able to share a JBoss installation, they will want > to run it with their own configurations. Otherwise he > would have stuck the whole lot in his home dir. > > Q1. Can I e.g. run multiple JBoss instances from the > same ins

[JBoss-user] Deploying more than one EJB in one JAR

2001-06-08 Thread Emerson
Is it possible to put more than one ejb in one ejb-jar??? this is my single EJB xml: ejb-jar> EleitorDetailHome EleitorDetailHome EleitorDetailEJB EleitorDetailBean Stateless Container if i wanna put one more EJB, just add a intire session tag Emerson Car

[JBoss-user] Connection refused from connection pool

2001-06-08 Thread srajan
Hi, we have JBoss-2.2.1_Tomcat-3.2.1 running with mysql 3.23.36 as the database. The connection pool we are using is minerva. The setup is using BMP as the beans in the back end. The application was working fine and then suddenly started failing. When we run the bean using a java client connec

Re: [JBoss-user] Differences in ejb methods called for BMP beans

2001-06-08 Thread Georg Rehfeld
Hi Mark, > Orion 2nd request - returns 1 -row > > MVSBase() > MVSBean() > setEntityContext() > ejbFindByServerName() > Begin Time: 2001.06.08 at 09:00:13.440 AM EDT > End Time: 2001.06.08 at 09:00:13.590 AM EDT > ejbActivate() > ejbLoad() > ejbStore() > JBoss 2nd request - returns 1 -row > >

RE: [JBoss-user] OutOfMemoryError

2001-06-08 Thread Allen Fogleson
hmmm potentially a lot of object creation going on? that is pretty intensive as we all know. Jboss itself is pretty intense memory wise too. My default stack is 128MB, but we are running on boxes with plenty of memory. And pretty much only JBoss/tomcat/Apache running. Al -Original Message--

Re: [JBoss-user] RE: JBoss-user digest, Vol 1 #711 - 10 msgs

2001-06-08 Thread Georg Rehfeld
Dear mohan, > Can any one clear the following my doubt: > where I have to keep my java bean to use with my jsp or servlet, please? Sorry, if you find this impolite, but did you recognize, that you sent 833 lines of irrelevant stuff to all of us, just to ask a two line question?!! That's disrespe

Re: [JBoss-user] JBoss 2.2.2 / Jetty 3.1RC5 package available

2001-06-08 Thread Daren R. Sefcik
Curious..I just moved it over to a Solaris 2.6,jdk1.3 machine and it works fine...just copied the exact same files from the Linux box over to the Solaris box. Don't know if that helps any. Daren On Fri, 8 Jun 2001, Julian Gosnell wrote: > I'll have a look as soon as I can and get back to you.

RE: [JBoss-user] RE: JBoss-user digest, Vol 1 #711 - 10 msgs

2001-06-08 Thread Allen Fogleson
it should be in the WEB-INF/classes directory. whether this is from a Web ARchive or even just copying it into some context you have set up you will need to have it there to be found by the server. Al -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of moha

RE: [JBoss-user] EJB Integration with existing Java Framework - Urgent!

2001-06-08 Thread Allen Fogleson
exactly... although now that I read my reply, I can see where it could be read differently. Certainly an EJB cannot create threads, etc etc. but dependent objects could, or just simple classes instantiated in the EJB... I also agree with somone elses logic of as long as the class doesnt mind being

Re: [JBoss-user] Version control

2001-06-08 Thread Georg Rehfeld
Hi Paula, > To try to clarfiy, my data will be stored in a database..as yet I don't know > which one. I guess I was trying to figure out if given multiple clients > manipulating data via EJBs, is there anyway to have one of these clients > with administrator 'rights' who can rollback changes made

RE: [JBoss-user] jboss-tomcat-apache

2001-06-08 Thread Alex Radka
Ahhh, now I'm getting somewhere. I knew it was something easy (at least in Win2000). If I start Tomcat FIRST and then Apache everything works fine. The extra line I needed to include in httpd.conf (whether through mod_jk.conf or whatever) was JkMount /quaestor/* ajp13 Didn't put in alias or di

RE: [JBoss-user] Something in crimson that is hard coded and trying to lookup java.sun.com

2001-06-08 Thread Allen Fogleson
its validating the XML document   Take out the line and you wont get the error, or you can place the DTD's on your own site and reference them there.   Al   -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Lionel SiauSent: Thursday, Ju

RE: [JBoss-user] ./conf directory location

2001-06-08 Thread Allen Fogleson
if you are working on unix (or *nix, which it looks like) why bother with the big configuration change? just use a symbolic link to the conf directory. Al > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 08, 2001 8:11 AM > To:

[JBoss-user] DEAR JBOSS USERS

2001-06-08 Thread Kemp Randy-W18971
Robert: I sent this before, but I believe it may not have reached the list. I am very interestest in the Resin/jboss combination, but I recently had some troubles getting the combination to work, which I shared in the Resin and Jboss mailing lists. 1. What version

RE: [JBoss-user] Lookup Datasource from Javabeans. Possible?

2001-06-08 Thread Allen Fogleson
Hmm I have no problem accessing the DataSource from a servlet, or JSP. There is at least one good reason to do this, taking advantage of connection pooling without having to write your own pool. Someone else reccommended against it (if i interpreted correctly) but I see no reason to NOT use the Da

[JBoss-user] Where to place shared classes ?

2001-06-08 Thread Ben Wong
I am using JBOSS2.2.2 w/Embedded Tomcat. My EJBs and my servlets use the same set of shared classes. Do I need to jar up the shared classes and place it in both Jboss's lib/ext and tomcat's lib ? Or is just one sufficient ? If I set the JBOSS classpath, would the embedded Tomcat automatically kno

Re: [JBoss-user] OutOfMemoryError

2001-06-08 Thread Dovan Nguyen
Lachezar, yes you're correct.  but the number are expressed in m (megabytes) ;  i believe the default min size is 32m and max size is 64m.  so you could reset the max size to 128M,  e.g -Xmx128m Dovan Lachezar Dobrev wrote:    Sorry to see that.   The OutOfMemory does not necessarily mean, that

Re: [JBoss-user] OutOfMemoryError

2001-06-08 Thread Nicolai P Guba
> "AF" == Allen Fogleson <[EMAIL PROTECTED]> writes: AF> in the jvms just because a system has memory does not mean that AF> the JVM will take it. Most jvm's start with some standard min and AF> max stack size. and when that max stack size is reached you get AF> the java.lang.OutOfMemoryError

RE: [JBoss-user] OutOfMemoryError

2001-06-08 Thread Allen Fogleson
in the jvms just because a system has memory does not mean that the JVM will take it. Most jvm's start with some standard min and max stack size. and when that max stack size is reached you get the java.lang.OutOfMemoryError. You can increase your stack size with the standard java -Xms1M -Xmx64M w

RE: [JBoss-user] HELP - jboss and interbase

2001-06-08 Thread RRokytskyy
according to exception stack trace, jboss is not able to obtain connection to database. however, more usefull is information in the jboss log file: %JBOSS_HOME%/logs/server.log. There you should see an exception from InterClient, that is usually more expressive. Also, you probably should remove t

RE: [JBoss-user] Help with HTTPS

2001-06-08 Thread Allen Fogleson
Are you talking about https between a webclient and the web server? or using tunneling jnp over https to access JBOSS? Jboss itself is just a container. Sure it has integrated Tomcat or Jetty, but to use HTTPS between a remote web browser and the web server (whatever one you choose to use) would

RE: [JBoss-user] NullPointerException in XAPoolDataSource.java:165

2001-06-08 Thread Allen Fogleson
unless there was a definition somewhere of OracleDS already i suppose. I have mistakenly done that before :) and the second pool (on a different DB) wouldnt bind to JNDI. I agree that you should then get a naming exception though. (agreeing before it is pointed out) Al -Original Message

RE: [JBoss-user] Help with HTTPS

2001-06-08 Thread Allen Fogleson
URLConnection is not enough for SSL.. you will have to use the javax.net.ssl package to handle this. This is not really JBoss not connecting, or tomcat (or whatever servlet container you are using) but a matter of a HttpURLConnection is not inherently Secure. Al -Original Message- From:

RE: [JBoss-user] DEAR JBOSS USERS

2001-06-08 Thread John Moore
Title: RE: [JBoss-user] DEAR JBOSS USERS As with the below we too are in development but are 100% committed to a successful JBoss deployment.  We have a combination of Entity as well as Stateless Session beans (~100 total).  Development is on NT, 2000, RH Linux and Solaris 8 SPARC all w/ J

[JBoss-user] Resin and Jboss error

2001-06-08 Thread Kemp Randy-W18971
I will try a posting once again. I have the latest jboss up and running, along with the latest resin. Resin works great alone, and jboss works great alone. I set up the resin.conf with the appropriate jndi-link parms, and moved the appropriate jars from the client directory of jboss to the lib

Re: [JBoss-user] to Dexter

2001-06-08 Thread Emerson
is this type of driver the fastest??? At 17:20 06/06/01 -0700, you wrote: > >i mean...no!! > >to acquire connection (assuming InitialContext cx has >been initialized properly): > >DataSource ds = cx.lookup("java:/OracleDS"); >Connection c = ds.getConnection(); > >okidoki. > >--- Emerson <[EMAIL

[JBoss-user] It is compulsory that jboss start on server JVM?

2001-06-08 Thread moogs
Hi I running jdk1.3 on irix which does not support server JVM. I could bring up the Jboss engine using classic jvm. When i deployed the interestEJB application. I got the initial JNDI context but could not get the reference of the RemoteInterface. There is no error messsage either from the clie

Re: [JBoss-user] ./conf directory location

2001-06-08 Thread Nicolai P Guba
> "JG" == Julian Gosnell <[EMAIL PROTECTED]> writes: JG> I tried copying the jetty dir to /tmp/foo and trying various JG> incantations such as ./run.sh ../../../../../../tmp/jetty - but no JG> dice. Maybe I missed something. JG> I would want an answer to Q1 before I spent more time on it - b

[JBoss-user] too much logging!

2001-06-08 Thread David Ward
I've successfully hooked up Apache to the JBoss/Tomcat bundled version using mod_jk ajpv13. My JkLogLevel is set to error, and I haven't changed any debug flags in tomcat's server.xml. How come, then, do I all of sudden get 10+ lines of debug from JBoss' stdout every time I make an http requ

Re: [JBoss-user] Beta and Alpha versions

2001-06-08 Thread Hunter Hillegas
As far as I know, the source code is always available in CVS and you can build it at any time... Hunter > From: Kemp Randy-W18971 <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > Date: Fri, 8 Jun 2001 09:44:27 -0500 > To: "'[EMAIL PROTECTED]'"<[EMAIL PROTECTED]> > Subject: [JBoss-user] Beta a

[JBoss-user] JBuilder and 2.2.2

2001-06-08 Thread Aaron White
hi, I am just starting with JBoss 2.2.2 and was trying to get it to run in JBuilder on win2k. I have followed the guide, and it seems to start fine, however, my jar file does not seem to deploy correctly. It works when I run JBoss from the command prompt, and the difference seems to be that in

Re: Re: [JBoss-user] Help !! Dynamic User Authentication with JBoss

2001-06-08 Thread Scott M Stark
The initial docs are the JBossSX chapter. It does not go into much detail on the custom security proxy mechanism currently. - Original Message - From: "Binoy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 07, 2001 8:48 PM Subject: Re: Re: [JBoss-user] Help !! Dynamic Us

Re: [JBoss-user] Secure access to set methods but no security on get methods

2001-06-08 Thread Scott M Stark
You have to include a login module that maps null to an anonymous user. I think I would have to update the security interceptor to allow for null principals as well. I'll look into this next week while I'm making some other security related changes. - Original Message - From: Paul Austin

[JBoss-user] Beta and Alpha versions

2001-06-08 Thread Kemp Randy-W18971
Maybe this is occurring, but I can't see it. It appears that the Jboss team is just releasing final versions to the general public. Projects like Enhydra Enterprise, Apache, and Jakarta (apache) release alpha and beta versions. Perhaps some of the more serious problems reported on the list c

Re: [JBoss-user] JAAS cache question

2001-06-08 Thread Scott M Stark
JAAS cache question Yes, authentication info is cached in a timed cache by default is no cache policy was specified in the setup of the JaasSecurityManagerService. - Original Message - From: Ivan Bolcina To: '[EMAIL PROTECTED]' Sent: Friday, June 08, 2001 5:21 AM Subject: [JBoss-user] JAA

[JBoss-user] CMP and mySQL relational mapping

2001-06-08 Thread Nicolai P Guba
Simple question (I hope): If I'd like to use CMP for a project. mySQL supports auto-generating the primary key for an inserted row (AUTO_INCREMENT). Is this feature supported by jboss? If not, what strategy would you recommend for handling primary keys (never done it any other way but to rel

Re: [JBoss-user] Unable to run JBoss-2.2.2 on NT2000

2001-06-08 Thread Allan Kamau
Hi All, I still haven't received a response on the problem below. > I have been running JBoss-2.2.1 successfully on > Win2000 server. However where I tried running > JBoss-2.2.2 it listed error associated with the JMS > server.JBossMQ server. > > Cannot start the JMS server! > javax.jms.JMSExcep

RE: [JBoss-user] Help !! Dynamic User Authentication with JBoss

2001-06-08 Thread Allen Fogleson
There is some documentation on the included JBOSS login modules, one of which is org.jboss.security.plugins.samples.LdapLoginModule Admittedly I have not tried this one in JBOSS 2.2.2 with the new JAAS security mechanism. Mostly because we have a custom login module that uses LDAP and DB. (I know

[JBoss-user] Problem starting 2.2.2

2001-06-08 Thread Ulli Hoffmann
Hi, I'm kinda lost. 2.1 works fine. With 2.2.2 I have the problem of not finding class EmbeddedTomcatService, in fact there is only TomcatService under org.jboss.tomcat. But since many of you already work with 2.2.2 I probably miss something else here. Any advice? Tx, Ulli E:\jboss-tomcat\jbo

Re: [JBoss-user] Unable to run JBoss-2.2.2 on NT2000

2001-06-08 Thread Allan Kamau
I still haven't received a response on the problem below. > I have been running JBoss-2.2.1 successfully on > Win2000 server. However where I tried running > JBoss-2.2.2 it listed error associated with the JMS > server.JBossMQ server. > > Cannot start the JMS server! > javax.jms.JMSException: In

Re: [JBoss-user] Unable to run JBoss-2.2.2 on NT2000

2001-06-08 Thread Allan Kamau
I still haven't received a response on the problem below. > I have been running JBoss-2.2.1 successfully on > Win2000 server. However where I tried running > JBoss-2.2.2 it listed error associated with the JMS > server.JBossMQ server. > > Cannot start the JMS server! > javax.jms.JMSException: In

RE: [JBoss-user] DEAR JBOSS USERS

2001-06-08 Thread Kemp Randy-W18971
Robert: I am very interestest in the Resin/jboss combination, but I recently had some troubles getting the combination to work, which I shared in the Resin and Jboss mailing lists. 1. What version of Resin are you using? 2. I assume you are using the latest Jboss? 3. Can you share the code

RE: [JBoss-user] jboss-tomcat-apache

2001-06-08 Thread Alex Radka
Thanks I had already pulled it. Unfortunately it looks just like mine :( Just to make sure I didn't miss something, the lines JkMount /jboss/* ajp13 JkMount /jive/* ajp13 are referring to applications that were deployed through an .ear file through JBoss? i.e the war file is somewhere under JBO

[JBoss-user] Can Jboss competition be trusted

2001-06-08 Thread Kemp Randy-W18971
I am a big fan of Jboss, but I do follow the competition in the form of Enhydra Enterprise and openejb. Recently, I sharted a letter where Enhydra is yanking the open source status of Instantdb. This is unfortunate, and I wonder if Lutis, the company sponcering Enhydra, might pull the plug on En

[JBoss-user] HELP - jboss and interbase

2001-06-08 Thread Radomir Kubala
Hi, I'm new in jboss and ejb. I use jboss 2.2.2, interbase 6, interclient 2 jdk 1.3.1. When i tried to move Account example from J2EE SDK to JBOSS and Interbase I got this error message: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: javax.t

Re: [JBoss-user] Something in crimson that is hard coded and trying to lookup java.sun.com

2001-06-08 Thread Lionel Siau
Hi All, here is the web.xml which references it. It is the plain vanilla one from the tomcat-test.ear. It looks perfectly fine to me. Lionel - Original Message - From: "Julian Gosnell" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 08, 2001 9:11 PM Subject: Re: [JBoss-u

RE: [JBoss-user] ./conf directory location

2001-06-08 Thread Gianni Gottardi
Thanks Lachezar,   sometime the simplest things are the right one...:-)   Gianni   -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Lachezar DobrevSent: vendredi, 8. juin 2001 14:37To: [EMAIL PROTECTED]Subject: Re: [JBoss-user] ./conf d

  1   2   >