[JBoss-user] JBoss Verifier

2001-06-28 Thread sheena sid
Hi... Could someone point me to extensive documentation on how to use JBoss's Verifier while deploying, other than the online documentation "howto" at http://www.jboss.org/documentation/HTML/ch11s187.html This document mentions a build directorywhere is thatmy JBoss installation does not

Re: [JBoss-user] servlets vs. EJB

2001-06-28 Thread Allen fogleson
Frank; It really depends on the application. we do fairly highlevel applications for our clients that are based on J2EE. We use servlets, JSP, Session EJB, and entity ejb, but there is no single solution. There are some guidelines of course. our Model components are almost always EJB. Whether

Re: [JBoss-user] Security in JBoss

2001-06-28 Thread Allen fogleson
are you using the new jboss 2.2.2? search the documentation on JAAS. Scott has a very good tutorial on it there.   Al - Original Message - From: Scott Keane To: [EMAIL PROTECTED] Sent: Friday, June 29, 2001 12:27 AM Subject: [JBoss-user] Security in JBoss

RE: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-28 Thread Ferguson, Doug
I believe that in my first email I mentioned that I have db failover coded into my bean.. That means I am not screwed if a db goes down unless jboss screws up.. Which is what is exactly happening. Not Good. You mentioned waiting on a long query to execute but this is irrelevant. I am talking abou

Re: [JBoss-user] servlets vs. EJB

2001-06-28 Thread Grim Shieldsson
Yes. This is a world full of infinite possibilities. As with all things.. it depends on how you design it. --- Jim <[EMAIL PROTECTED]> wrote: > Is it possible for an EJB architecture to beat the performance or > scalability of a JSP/servlet/JDBC architecture? > > Thanks, > > Jim > > > _

[JBoss-user] Couple of quick newbie questions.

2001-06-28 Thread Kevin O'Neill
I've got a couple of quick what I'm sure are newbie questions that I hope somebody can help me with. One: When I deploy my ear I getting the following messages in the console (Sample): [Verifier] Bean : Topic Method : public abstract void removeSubTopic(Alias) Section: 9.2.7 Warning: The met

[JBoss-user] why?

2001-06-28 Thread Sky Yin
hi I know it's no problem to start jboss with sun's jdk1.3.0, but when I switch to jdk1.3.1 I encounter the following error but still go on starting: .. [JBossMQ] Starting [JBossMQ] Cannot start the JMS server ! Invalid configuration. [JBossMQ] javax.jms.JMSException: Invalid configuration. [JBo

Re: Subject: [JBoss-user] Oracle 8i lite

2001-06-28 Thread Allen fogleson
pointbase is a great embedded database. If you only needed tcp though Jboss comes with hypersonic which allows tcp/ip access. Al - Original Message - From: Vladimir Blagojevic <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 11:13 PM Subject: Re: Subject: [JBoss-

Re: [JBoss-user] servlets vs. EJB

2001-06-28 Thread Frank Morton
This is a good question. I'm a lurker that does servlets every day, but am more and more using tomcat more like an application server. So, it seems that jboss, especially once clustering is real in 3.0, will scale better than servlets, though servlets will always be quicker for small/mid-size appl

Re: [JBoss-user] Security in JBoss

2001-06-28 Thread Scott M Stark
http://www.jboss.org/documentation/HTML/ch11s83.html - Original Message - From: "Scott Keane" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 9:27 PM Subject: [JBoss-user] Security in JBoss > Hello, > > I am attempting to implement security features in JBoss.

Re: [JBoss-user] servlets vs. EJB

2001-06-28 Thread Simon Tang
I think the EJB-arch would be more scalable than just using JSP/Servlet. But on the other hand it is much simpler & easier to get things going with JSP/Servlet/JDBC. So, it all depends on what is your need. - SimonT >From: "Jim" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: "jboss-user

[JBoss-user] Security in JBoss

2001-06-28 Thread Scott Keane
Hello, I am attempting to implement security features in JBoss.  I am reading through the documentation available online in Chapter 9.  However, I think I am more confused than when I started.  Is there a better source online that explains this?  I have even looked at the stuff on Sun.  Thank you f

Re: Subject: [JBoss-user] Oracle 8i lite

2001-06-28 Thread Vladimir Blagojevic
Hey Al & Larry, Thanks for the responses. I just needed a toy db that supports tcp for some demo app I am working on, nothing serious. I found pointbase server version db fits my needs fully. Free version supports tcp, it cripples over 5MB of data which is fine for me. Seems quite nice actual

[JBoss-user] table already exists - help needed

2001-06-28 Thread Carlos Ferrão
Hello list, I get the following message whenever I deploy my beans: [Container factory] Deploying authBean [Container factory] Deploying authenticatorBean [JAWS] Table 'authBean' already exists When I try to access the database with java:comp/env/dbname it blows up. authbean is a

[JBoss-user] best web server and servlet container with JBoss

2001-06-28 Thread Jim
What is the best web server and servlet container combination to use with JBoss in order to get the best performance or scalability on Linux or Windows 2000? Thanks, Jim ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists

Re: [JBoss-user] best web server and servlet container with JBoss

2001-06-28 Thread Simon Tang
Apache+jboss+tomcat is ok, but you might want to checkout Apache+jboss+resin(from www.caucho.com, a fast servlet engine) -- SimonT P/S: It would be great to integrate Resin with jBoss... >From: "Jim" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: "jboss-user" <[EMAIL PROTECTED]> >Subjec

[JBoss-user] servlets vs. EJB

2001-06-28 Thread Jim
Is it possible for an EJB architecture to beat the performance or scalability of a JSP/servlet/JDBC architecture? Thanks, Jim ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

[JBoss-user] custom finder fails

2001-06-28 Thread Boris Garbuzov
I am still going through your tutorial, now "customizing JAWS" part. My custom finder gives me empty collection whereas direct query gives normal 27 rows. What is wrong here? --- client console-- artificialOrders = [] artificialOrders.size() = 0 --client code-

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-28 Thread David Jencks
Well, I kind of agree, however I don't know how to distinguish between the db crashing and executing a query whose first results are available in 3 hours...and you're willing to wait. I think if the driver can distinguish and throw an exception, you get to see the exception. Otherwise, what do y

Subject: [JBoss-user] Oracle 8i lite

2001-06-28 Thread Larry O
Allen fogleson asks: From: "Allen fogleson" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>Subject: Re: [JBoss-user] Oracle 8i liteDate: Thu, 28 Jun 2001 19:46:31 -0400Reply-To: [EMAIL PROTECTED]This is a multi-part message in MIME format.--=_NextPart_000_0274_01C1000B.07653CC0C

Re: [JBoss-user] JDBC, Minerva and MySQL

2001-06-28 Thread Fred Loney
There remains one final magic incantation: in the ejb deployment file jaws.xml change    java:/DefaultDS    Hypersonic SQL to:    java:/mySQLDS    mySQL I assume the duplicate DefaultDS XADataSourceLoader MBean entry below is a typo. -- Fred Loney Enterprise Java Consultant Spirited Software,

Re: [JBoss-user] Oracle 8i lite

2001-06-28 Thread Allen fogleson
I assume all your references to 8i you meant 8i lite?   since 8i does have a tns listener, and a type 4 driver...   al   - Original Message - From: Larry O To: [EMAIL PROTECTED] Sent: Thursday, June 28, 2001 7:04 PM Subject: [JBoss-user] Oracle 8i lite

[JBoss-user] Running J2EE Tutorial examples on JBoss.

2001-06-28 Thread Shamis, Leonid
Hello, Did someone try to run the J2EE Tutorial examples on JBoss? I have J2EE application written according to Duke's Bank application example in the tutorial and bookstore3 example, both configured to run on JBoss. I use JBoss-2.2.2_Tomcat-3.2.2. I get the error from screendefinitions.jsp fil

RE: [JBoss-user] JBossSOAP

2001-06-28 Thread marc fleury
SOAP enabled invocation of a JMX node will be available in the standard JBoss 3.0   There is already a XML message enabled adaptor in cvs     marcf -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Kar YEOWSent: Thursday, June 28, 2001 6:38 P

RE: [JBoss-user] undeploy

2001-06-28 Thread Stephen Oakes
> The app still shows up even after a restart. Further, sometimes redploying an app results in the previous version of the app remaining. This especially happens if *at some stage* there has been an error detected in the app. Apart from that, it is hard to be specific exactly when this bug man

RE: [JBoss-user] SecurityAdapter interface missing in Petstore1.1.2

2001-06-28 Thread Simon Moses
You don't need the security adapter if you are using jps1.1.2. The patch file was only required for jps1.1.1 when there was some code in the jps that was not compliant to the j2ee spec. Cheers, Simon Moses, EMAIL: [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mail

[JBoss-user] Oracle 8i lite

2001-06-28 Thread Larry O
Vladimir Blagojevic asks:   Date: Thu, 28 Jun 2001 10:53:33 -0400 (EDT)From: Vladimir Blagojevic <[EMAIL PROTECTED]>To:  <[EMAIL PROTECTED]>Subject: [JBoss-user] Oracle 8i liteReply-To: [EMAIL PROTECTED]Hi,Does Oracle 8i lite support socket based oracle jdbc drivers or it is m

[JBoss-user] JBossSOAP

2001-06-28 Thread Kar YEOW
I know that ZOAP is dead, but is JBossSOAP still alive?  If so is there a binary distribution anywhere?  TIA. Kar

[JBoss-user] JDBC, Minerva and MySQL

2001-06-28 Thread Scott Salisbury
Hello,   Below is a copy of the JDBC portion of my jboss.jcml file.  I am trying to connect to a MySQL db.  The bold, italicized print represents my effort to do this.  However, It is still connecting to Hypersonic.   How can I tell it to connect only to mysql?           org.hsql.jdbcDriver

Re: [JBoss-user] JMS test program, -- Strange Bug

2001-06-28 Thread VASQUEZ_JASON
Dan, I didn't know about the url in jndi.properties & RMI calls--thanks for the info. I tried commenting that out again (I had had it uncommented), and ran into a weird problem with different JDK versions.  (I just installed JDK1.3.1, so I looked here first) With url commented & JDK1.3.1:      

[JBoss-user] JBoss won't find Xalan.jar in lib/ext

2001-06-28 Thread Dole, Christopher
Hello, I've been building a web site, adding things incrementally. As I've added functionality, I've put jar files in the lib/ext directory of JBoss and they have been found just fine. Today I added some XSLT, and put the xalan.jar file in lib/ext, but I kept getting ClassNotFound exceptions for

Re: [JBoss-user] Init scripts for SuSE

2001-06-28 Thread Michael Bilow
You might want to take a look at a message I posted earlier which touches on this issue in a Debian context and contains an example script: http://www.mail-archive.com/jboss-user%40lists.sourceforge.net/msg07745.html In our experience, usually jBoss will respond to SIGTERM (15) and shut down gra

Re: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-28 Thread Michael Bilow
It still said "Login/Register" after I created my account. That was why I naturally tried to log in, which generated that errror. Even if my login was invalid or unsuccessful, I was not expecting that sort of error. The browser in question is Netscape Navigator 4.75. -- Mike On 2001-06-28 at

Re: [JBoss-user] Security in Jboss ( JaasSecurityManager ) - question to developers. Maybe RFE

2001-06-28 Thread Scott M Stark
What your doing is correct, that is just a bug in the handling of the null credential. I have fixed this in main. In 2.4 there is an ability to set the principal of an unauthenticated user, but you cannot assign roles to it. It is not for allowing unauthenticated users access to secured beans. Ra

Re: [JBoss-user] deploying a war

2001-06-28 Thread Mike Thompson
> Mike Thompson wrote: > > > ...everytime I select a link that will fire a struts action, I get the following: 2001-06-28 01:25:37 - Ctx( /SecureExWeb ): 500 R( /SecureExWeb + /servicemanager.do + null) No action instance for path /servicemanager could be created I have no clue what this could mea

[JBoss-user] Bug in caching mechanism ?????

2001-06-28 Thread Frank Marx
Hi, we encountered a strange problem using JBOSS 2.2.1. By accessing certain Entity-Beans we encounter a LOCK_WAITING Problem which occurs more often when we decrease the CACHE-Size og JBOSS and appears less often when we increase the CACHE-Size of JBOSS. Is there something known that there mig

Re: [JBoss-user] deploying a war

2001-06-28 Thread Fred Loney
Mike Thompson wrote: > ...everytime I select a link that will fire a struts action, I get the following: >2001-06-28 01:25:37 - Ctx( /SecureExWeb ): 500 R( /SecureExWeb + /servicemanager.do + >null) No action instance for path /servicemanager could be created I have no clue >what this could me

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-28 Thread danch (Dan Christopherson)
Richard Kasperowski wrote: > David Jencks wrote: > >> Hi, >> I find it hard to understand what you want. >> >> jboss does try out connections from configured datasources on startup, >> and >> hangs if they can't connect. >> >> I don't see how this is a severe problem: if your datasource isn't

Re: [JBoss-user] JMS test program,

2001-06-28 Thread danch (Dan Christopherson)
You really shouldn't use the jndi.properties from conf/default in the client - this normally has the URL commented out and this won't work from the client. DO NOT uncomment the URL on the server (in a conf directory) because it will cause all calls to go through RMI, with a large performance h

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-28 Thread Richard Kasperowski
David Jencks wrote: > Hi, > I find it hard to understand what you want. > > jboss does try out connections from configured datasources on startup, and > hangs if they can't connect. > > I don't see how this is a severe problem: if your datasource isn't working, > neither will your app. When a

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Michael Jara
The transactions for the relevant functions of this entity bean are defined as Required in my ejb-jar.xml. (This worked as expected in Orion, I'm pretty sure that my code is correct.) Mike - Original Message - From: "Victor Langelo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thur

Re: [JBoss-user] RTFM bait

2001-06-28 Thread Burkhard Vogel
Hi, Yust throw plain Home and Remote intefaces from the other jar into the jar. Burkhard - Original Message - From: "Mike Thompson" <[EMAIL PROTECTED]> To: "jboss" <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 3:00 PM Subject: [JBoss-user] RTFM bait I apologize because this sounds li

Re: [JBoss-user] static methods

2001-06-28 Thread Fred Loney
[EMAIL PROTECTED] wrote: > Can we declare static methods in an EJB ? Yes, if it's not client-visible, i.e. part of the remote interface, and doesn't use a static read/write field. The EJB spec does not permit static business methods or non-final static fields, which belong at a higher (servlet

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Michael Jara
Okay, my assumptions about Oracle were incorrect there. (I shouldn't have Oracle, since I have very little experience with it.) However, Sybase ASE seems to be very strict with this. If I use Sybase's SQL tool to execute a command, where I have a table named "ETSUser": select * from ETSUser N

Re: [JBoss-user] JMS test program,

2001-06-28 Thread VASQUEZ_JASON
woops--i meant include all those jars and that directory in your classpath... -Jason [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 06/28/2001 01:48 PM Please respond to jboss-user                 To:        [EMAIL PROTECTED]         cc:                 Subject:        Re: [JBoss-user] JM

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Michael Jara
I inserted some code to check the status of the rollback flag. So that portion of my entity bean looks something like this: System.out.println("Rollback Only status was: " + entityContext.getRollbackOnly()); entityContext.setRollbackOnly(); System.out.println("Rollback Only status is now: " + en

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Victor Langelo
I cannot tell from your description whether the entity bean method's transaction attribute is tx_supports. If it is, then JBoss should be throwing an exception since setRollbackOnly isn't valid in this context. --Victor Michael Jara wrote: > FYI: I took a clue from bug #420714 an tried moving m

[JBoss-user] NewbeeQ: Problem with CD Example and Deployment

2001-06-28 Thread Sigurður Reynisson
Hi all! I'm using JBoss-Tomcat on a Linux box. *Seems* to start ok, ie. I get "[Default] JBoss 2.2.0 FINAL Started in 0m:21s". When running "make all" and "make package" all is well. When running "make deploy" I get the text below from JBoss (= lines not included:) Don't understand a thing in t

Re: [JBoss-user] JMS test program,

2001-06-28 Thread VASQUEZ_JASON
Chris, Just to be on the safe side, include all the jars from JBOSS_HOME/client, and also include the JBOSS_HOME/conf/default directory.  The settings that your app is looking for are contained in the jndi.properties file located in the conf directory.  It references classes contained in the jars

[JBoss-user] JMS test program,

2001-06-28 Thread Chris Jones
Dear Folks: I'm a rookie user of Jboss and JMS. I'm trying the attached simple code fragment. When I try to execute the line: topicConnectionFactory = (TopicConnectionFactory) jndiContext.lookup("TopicConnectionFactory"); I get the following exception: JNDI lookup failed: j

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Victor Langelo
Michael Jara wrote: > Yes, Sybase ASE is case sensitive as to table and column names. (SQL > keywords may be any case.) I beleive this is not unique to Sybase, but is > also the case in some other database servers such as Oracle. JAWS in JBoss > 2.2.2 works properly, but Beta 2.4 does not...

[JBoss-user] deploying a war

2001-06-28 Thread Mike Thompson
OK, finally got all my ejbs deployed, and I have a war that is using struts.  This same war worked on the sun reference j2ee server, but I can not seem to get it to work in JBoss.  It seems that most of the stuff is working, taglibs and such from struts, but everytime I select a link that wi

Re: [JBoss-user] (no subject)

2001-06-28 Thread Burkhard Vogel
hi, what does scheduling mean in this context? I only know scheduling on a time basis for events to fire? are you looking for load-balancing? Burkhard - Original Message - From: "Varun_Chhabra" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 7:00 AM Subject: [JBo

Re: [JBoss-user] Problem with TDS Driver

2001-06-28 Thread Burkhard Vogel
Hi, i thought I answered this already, well the driver tries to tell you that you are performing an operation which noone has programmed into it so far. What you need to set for a driver-type tag in jaws I don't know, I don't have one? You need to set the to suit your database which will be MS SQ

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Michael Jara
FYI: I took a clue from bug #420714 an tried moving my "setRollbackOnly" to a session bean. I was doing something like this before in my entity bean: this.entityContext.setRollbackOnly(); throw new StorageSynchronizationException(); // my application exception I changed the entity bean: // thi

Re: [JBoss-user] Init scripts for SuSE

2001-06-28 Thread gabriele
On Thu, Jun 28, 2001 at 07:24:42PM +0200, Tristan Donaldson wrote: > Looking through the scripts I noticed you are shutting the server down > with a "kill -9". I don't think this is wise as this terminates the > process immediately without allowing it to close itself. > Changing the "kill -9"

[JBoss-user] Security in Jboss ( JaasSecurityManager ) - question to developers. Maybe RFE

2001-06-28 Thread Konstantin Priblouda
Hi all, I try to implement declarative security using Jboss. Basic idea is to allow unauthenticated access to beans placed under security domain. ( and those bean have to be secured ) When I attempt access from web context ( or client ) then container tries to authenticate. ( principal and c

[JBoss-user] Security in Jboss ( JaasSecurityManager ) - question to developers. Maybe RFE

2001-06-28 Thread Konstantin Priblouda
Hi all, I try to implement declarative security using Jboss. Basic idea is to allow unauthenticated access to beans placed under security domain. ( and those bean have to be secured ) When I attempt access from web context ( or client ) then container tries to authenticate. ( principal and c

RE: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread marc fleury
h can't get get from the transaction what the status of the rollback only flag is? quick question do new resources enroll in it none the less? the LW is normal but what would you expect (you want and /or spec) marcf |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROT

Re: [JBoss-user] Init scripts for SuSE

2001-06-28 Thread Tristan Donaldson
I have installed these scripts successfully. The server starts up fine. The problem is the shutdown, jboss doesn't shutdown properly when issuing a "/etc/rc.d/jboss stop" Looking through the scripts I noticed you are shutting the server down with a "kill -9". I don't think this is wise as this

Re: [JBoss-user] LOCKING-WAITING after setRollbackOnly()

2001-06-28 Thread Michael Jara
Yes, Sybase ASE is case sensitive as to table and column names. (SQL keywords may be any case.) I beleive this is not unique to Sybase, but is also the case in some other database servers such as Oracle. JAWS in JBoss 2.2.2 works properly, but Beta 2.4 does not... I get SQL errors, and the tra

Re: [JBoss-user] Exception using MySQL DataSource

2001-06-28 Thread Thorsten Klusemann
Hi, > I got NullPointer Exception When try to create the Connection Poll > for MySQL DataBase, I have listed the changes what I made, whatz wrong > with my setup..Using JBoss2.2.2 I had the same problem. Please assign a password to the root user and try it again. Example: update user set pa

Re: [JBoss-user] undeploy

2001-06-28 Thread Richard Bottoms
>what happens if you don't do that. > >-danch The app still shows up even after a restart. r.b. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Access control

2001-06-28 Thread danch (Dan Christopherson)
[EMAIL PROTECTED] wrote: > On Thu, Jun 28, 2001 at 03:47:30AM -0700, Konstantin Priblouda wrote: > >>>First, is there an easy explanation of the >>>difference between groups >>>and roles? >>> >>Role is an permission to do something. If I say, >>that role "admin" is required to call this method,

[JBoss-user] Oracle 8i lite

2001-06-28 Thread Vladimir Blagojevic
Hi, Does Oracle 8i lite support socket based oracle jdbc drivers or it is more of a in-vm DB? Share some links? Thanks, Vladimir ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] something wrong w/ ejb-jar.xml

2001-06-28 Thread Darius Davidavicius
Hi, This feature is from Jboss 2.4 for ejb-jar.xml DTD validation add http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd'> for jboss.xml DTD validation add http://www.jboss.org/doco_files/jboss.dtd'> Moreover jboss.jcml should have ValidateDTDs=true like: true true false true

Re: [JBoss-user] undeploy

2001-06-28 Thread danch (Dan Christopherson)
Richard Bottoms wrote: > Found through some trial and error that more than removing a file from the > /deploy directory is needed to nuke applications. Deleting directories in > the /tmp directory is required as well. what happens if you don't do that. -danch _

[JBoss-user] undeploy

2001-06-28 Thread Richard Bottoms
Found through some trial and error that more than removing a file from the /deploy directory is needed to nuke applications. Deleting directories in the /tmp directory is required as well. Is there an undeploy automation coming? Something like dropping the same .ear file used to roll out the app

Re: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-28 Thread danch (Dan Christopherson)
As to the first, the login/register link in the upper right should have changed to 'logout' As to the other, what browser are you using? Michael Bilow wrote: > It's totally non-functional for me. I tried to create an account, entered > all of the fields and hit the button, and then was simply

Re: [JBoss-user] something wrong w/ ejb-jar.xml

2001-06-28 Thread danch (Dan Christopherson)
Just a hunch - try changing the descriptor so there aren't any newlines in the elements that specify these classes. I.E. com.neuroquest.cais.ejb.entity.build.BuildBean -danch G.L. Grobe wrote: > Is there some sort of XML Validator in JBoss that would tell me more about > what's wrong with my

Re: [JBoss-user] Castor and Linux

2001-06-28 Thread danch (Dan Christopherson)
Are you sure that you're running the 1.3.1 jdk and not the kaffe VM? Some distributions installed kaffe in /usr/bin, so you might pick that up first if it is installed. -danch Lungerich, Thomas, InfraServ Knapsack/DE wrote: > Hey All, > > I have a problem with Linux and Castor. Under NT the

[JBoss-user] something wrong w/ ejb-jar.xml

2001-06-28 Thread G.L. Grobe
 Is there some sort of XML Validator in JBoss that would tell me more aboutwhat's wrong with my ejb-jar.xml file. This file has worked in other serversand I don't see anything wrong with my ejb tags, but JBoss doesn't likesomething cause the [Verifier] complains and tells me to look at Chapt

[JBoss-user] Exception using MySQL DataSource

2001-06-28 Thread chitrapandian
Hi, I got NullPointer Exception When try to create the Connection Poll for MySQL DataBase, I have listed the changes what I made, whatz wrong with my setup..Using JBoss2.2.2 Entries added to jboss.jcml Step 1 org.gjt.mm.mysql.Driver,org.hsql.jdbcDriver,org.enhydra.instantdb.jdbc.

[JBoss-user] Problem with TDS Driver

2001-06-28 Thread Rama Rao
Hi All,     I am trying Free TDS driver and unable to run Container Managed Entity Beans.   Here is my Environment:    OS : Windows NT Workstation 4.0 Service Pack 6.0  JAVA: jdk 1.3 JBoss : 2.2 TDS Driver : 2.0 (FreeTds_JDBC.SnapShot.jar.2.0)   My Entity Beans are deploying fine. But when i

Re: [JBoss-user] Key generation by random numbers

2001-06-28 Thread Philipp Meier
On Thu, Jun 28, 2001 at 08:38:53AM -0400, Michael Bilow wrote: > On 2001-06-27 at 15:24 +0200, Philipp Meier wrote: > > > On Tue, Jun 26, 2001 at 04:14:43PM -0400, Michael Bilow wrote: > > I am not sure I understand you at all. If you mean to suggest that the > primary key could be constructed

[JBoss-user] Castor and Linux

2001-06-28 Thread Lungerich, Thomas, InfraServ Knapsack/DE
Hey All, I have a problem with Linux and Castor. Under NT the Castor example seems to works fine but under Linux(jdk1.3.1, Jboss 2.2.2, castor 0.9.2) i get following error: [CastorJDOImpl] started /usr/local/Jboss/bin/run.sh: line 27 12715 Segmentation fault java $HOTSPOT $JAXP -classpat

Re: [JBoss-user] RuntimeException in tomcat-test

2001-06-28 Thread Scott M Stark
That is not error. Its simply a trace of call through the container. - Original Message - From: "John Patterson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 6:43 AM Subject: [JBoss-user] RuntimeException in tomcat-test > Hi, > > I get the following error

[JBoss-user] (no subject)

2001-06-28 Thread Lungerich, Thomas, InfraServ Knapsack/DE
Hey All, I have a problem with Linux and Castor. Under NT the Castor example seems to works fine but under Linux(jdk1.3.1, Jboss 2.2.2, castor 0.9.2) i get following error: [CastorJDOImpl] started /usr/local/Jboss/bin/run.sh: line 27 12715 Segmentation fault java $HOTSPOT $JAXP -classpat

RE: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-28 Thread Ferguson, Doug
I was actually because the database was down. The datasource was set with blocking=true. Therefore it blocks whenever i try to obtain the connection when the database is down. At startup time the datasources are verified by obtaining a connection, so this blocks as well, forever! I didn't reali

[JBoss-user] RuntimeException in tomcat-test

2001-06-28 Thread Kemp Randy-W18971
John: If you try the test example jboss with the beta version (www.mysite.com:8080/jboss), it produces a runtime exception, which I reported in this list. Perhaps this is related, and it is a version issue. Randy From: "John Patterson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Date: Thu,

RE: [JBoss-user] Stability problems on Linux

2001-06-28 Thread Sacha Labourey
Hello, just some more words concerning threads on windows... Green threads are called Fibers under Windows. If you want to limit your OS thread usage, you can use another JVM such as JRockit for example that provides a "many-to-one" mapping of Java-Threads to OS-Threads. With this JVM, I have be

[JBoss-user] CGI support in JBOSS?

2001-06-28 Thread Kemp Randy-W18971
Kevin: Your question is how can I run Jboss as my ejb server, and still host CGI? Unless you throw Apache into the equation, you should look at Jetty. If I remember correctly, Jetty handles CGI, and jboss comes bundled with it. Randy From: Kevin Dombroski <[EMAIL PROTECTED]> To: "'[EMAIL P

[JBoss-user] Stability problems on Linux

2001-06-28 Thread Kemp Randy-W18971
Robert: I have run jboss on Solaris 5.6 and Windows 2000 in development without problems. I recommend either platform (Solaris 5.6 + or Windows 2000). Randy Subject: Re: [JBoss-user] Stability problems on Linux To: [EMAIL PROTECTED] From: [EMAIL PROTECTED] Date: Thu, 28 Jun 2001 09:32:22 -040

[JBoss-user] CGI support in JBOSS?

2001-06-28 Thread Kevin Dombroski
Title: CGI support in JBOSS? Is there support for CGI under Jboss? I don't see any mention in the docs - please let me know.

[JBoss-user] RuntimeException in tomcat-test

2001-06-28 Thread John Patterson
Hi, I get the following error when running the test application in JBoss 2.4.0 BETA and JBoss 2.5 ALPHA: Servlet calling EJB Using jndi name NonOptimized: getMessage() returned:StatelessSessionBean says: Hello World Using jndi name Optimized: getMessage() returned:StatelessSessionBean says: Hel

Re: [JBoss-user] Stability problems on Linux

2001-06-28 Thread RobertWright
This is an older article http://www-106.ibm.com/developerworks/java/library/java2/index.html?dwzone=java, but it has some good information and it may be of some help. Rob

Re: [JBoss-user] Stability problems on Linux

2001-06-28 Thread Michael Bilow
This is not a "weak" implementation. It is simply an implementation choice. On Intel hardware, you are effectively limited to about 4000 threads, which is the default in Windows. If you need to do so, you can increase the number of task slots available in Linux by editing "include/linux/tasks.h

RE: [JBoss-user] Beans Referencing

2001-06-28 Thread Schouten, Andreas
Have You included the import statement in Your JSP? <%@ page import="com.freeforums.webbeans.*"%> > -Original Message- > From: Devraj Mukherjee [SMTP:[EMAIL PROTECTED]] > Sent: 28 June 2001 15:04 > To: JBoss List Serve > Cc: [EMAIL PROTECTED] > Subject: [JBoss-user] Beans Refere

RE: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-28 Thread Michael Bilow
It's totally non-functional for me. I tried to create an account, entered all of the fields and hit the button, and then was simply returned to the start page. I was expecting some sort of indication as to whether I was logged in and, if so, as whom? When I tried to login using the information

[JBoss-user] [JBoss/Tomcat] Flat web application and classloaders

2001-06-28 Thread Vincent Harcq
Hi, I am trying JBoss/Tomcat with several ejbs deployed as .jar and a web application not deployed as a war but instead in tomcat/webapps/ROOT (it is more easy for developement). I have an entity PK class that is both in one ejb.jar and in tomcat/ I change it and redeploy my ejb. I do NOT recompil

[JBoss-user] JBuilder Integration

2001-06-28 Thread Martin Cabrera
Hi; Anybody knows how can I integrate JBoss with JBuilder 4??? Thanks in advance. Martin Cabrera Dpto. de Informática. Abitab S.A. Montevideo - Uruguay [EMAIL PROTECTED] ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/list

[JBoss-user] RTFM bait

2001-06-28 Thread Mike Thompson
I apologize because this sounds like a stupid question, I've searched the archive on ClassNotFoundException and jar packaging, but have not been able to come up with anything.   The problem I have is that I am trying to deploy and ejb jar file that references classes from another jar.  When I

[JBoss-user] Configuration question

2001-06-28 Thread Alexander Povargo
Hi, I have a server with virtual hosts already configured with Tomcat 3.2. Please suggest to me is here any way to install JBoss to one of virtual host only, do it so that rest of virtual hosts still working under Tomcat 3.2 Thank you. Best regards, Alex __

[JBoss-user] Beans Referencing

2001-06-28 Thread Devraj Mukherjee
Hi all, I have managed to create an intermediate class file which now access the session beans and my JSP file can successfully call the beans. I only have one problem, which is I have to reference my class file in the JSP with the full name (package and class) for example a file Login.class i

[JBoss-user] JBoss access through firewall

2001-06-28 Thread Bani Greyling
How can I access JBoss from behind a firewall (i.e port 80 via HTTP). I had a look at JBoss/ZOAP but unfortunately it is quite dead. Apparently one can use SOAP from Apache. Anyone have some detail on getting it to work with JBoss, or am I totally on the wrong track here? Tx Bani Greyling winma

RE: [JBoss-user] ONLINE FORUM AVAILABLE

2001-06-28 Thread Michael Bilow
It is extremely common for firewalls to restrict access to certain well known services using well known ports. For example, many ISPs no longer allow direct connection to port 25 (SMTP) on a remote machine, and many corporate firewalls take the approach of prohibiting anything which is not specif

Re: [JBoss-user] HOW TO UNSUSCRIBE ???

2001-06-28 Thread Radu-Gabriel Pantazi
Hi. Pay attention that when you are using jboss with embeded Tomcat he is using a different configuration directory, /jboss/conf/tomcat, so you have to modify also the jboss.jcml file from tomcat conf directory as you did with jboss/conf/default/jboss.jcml file. I hope that helped. Gabriel. -

RE: [JBoss-user] Oracle Connection Problem

2001-06-28 Thread Reynir Hübner
there is another configuration file for the Tomcat-setup. when you run standalone Jboss, it´s using the jboss/conf/default/ * files when u run the Tomcat setup it´s using the jboss/conf/tomcat/ * files so you need to put your setup in the files there aswell if you are going to use tomcat with jbo

Re: [JBoss-user] Key generation by random numbers

2001-06-28 Thread Michael Bilow
On 2001-06-27 at 15:24 +0200, Philipp Meier wrote: > On Tue, Jun 26, 2001 at 04:14:43PM -0400, Michael Bilow wrote: > > Fourth, the probability of a collision between your next randomly chosen > > number and any prior randomly chosen number is going to follow a Poisson > > distribution, which may

Re: [JBoss-user] Access control

2001-06-28 Thread Konstantin Priblouda
> I understood roles. Sorry for not being clear about > that. What I > didn't get was the significance of groups. The > document I read stated > that roles are on an application level while groups > are on an > application server level - I didn't quite see the > purpose of the > groups. I do no

  1   2   >