[JBoss-user] JBOSS 2.2.1 BUG !!!

2001-05-20 Thread Artur Jonak
Hi, There is a bug in JBOSS 2.2.1 I have a very simple BMP Entity Bean with following home interface: public interface SimpleBeanHome extends BaseHome {} and in another file: public interface BaseHome extends EJBHome { Base create(String key) throws RemoteException, CreateException; B

Re: [JBoss-user] Database connection pool hangs...

2001-05-20 Thread Phan Anh Tran
I found the problem. I ran out of connections with blocking enabled on the pool. Anh - Original Message - From: "Phan Anh Tran" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, May 20, 2001 11:32 PM Subject: [JBoss-user] Database connection pool hangs... > OS: Windows 2K. > J

Re: [JBoss-user] java.io.FileNotFoundException

2001-05-20 Thread Matt Davies
Hi Guys, I need some pointers. So far in coming to grips with learning J2EE/JBoss I have found this list to be very useful as a reference. I currently have a similar problem (to the posting below) and I am wondering if there were any ideas as to the cause of this problem for Ralf? In my case

[JBoss-user] Database connection pool hangs...

2001-05-20 Thread Phan Anh Tran
OS: Windows 2K. J2SDK1.3.0_02 and and J2EE 1.3 beta. JBOSS 2.2.1 and Tomcat 3.2.1 MySQL 3.23.36 mm driver 2.0.4 This code is running in the context of a stateless session bean: Context initCtx = new InitialContext(); DataSource ds = (DataSource)initCtx.lookup("java:/" + aDataSourceName)

[JBoss-user] Transactions: Required vs. RequiredNew

2001-05-20 Thread RRokytskyy
Hi, I have a couple of entity beans without corresponding session beans. Also I have appropriate wrapper classes for use in the application. The business logic is implemented on the "client" (more correctly, another tier) side instead of session beans. The reason for such design is that I have to

Re: [JBoss-user] A rookie mistake?

2001-05-20 Thread Guy Rouillier
See if you have a jboss-2.2.1/db/jbossmq directory. Seems this directory got left out of the current distribution. - Original Message - From: "Greg Garson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 18, 2001 6:32 PM Subject: [JBoss-user] A rookie mistake? > Hi guys,

Re: [JBoss-user] Beans in jsp

2001-05-20 Thread Guy Rouillier
Put them into a classpath that is visible to both JBoss and Tomcat. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 18, 2001 10:41 AM Subject: RE: [JBoss-user] Beans in jsp > No clue, I never used .ear files. > > Does anybody have any idea how

[JBoss-user] BM Entity Bean Example?

2001-05-20 Thread Christopher Cheng
Does anybody have an example of Bean Managed EJB with JBoss, preferably for Sybase? ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

[JBoss-user] [Security]Method Permission

2001-05-20 Thread arionyu
Hi! The scenario is like this: Client -> BeanA -> BeanB The client would call a method in beanA and beanA would call a method on BeanB. I have set the method permission for beanA to the client. However, I don't want to give the direct access to the client for beanB. Can I have beanA doing the

Re: [JBoss-user] Address in use

2001-05-20 Thread erik.peterson
Look under jboss/conf/tomcat/standardjboss.xml. You'll find several refs. Erik - Original Message - From: "d cutter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, May 19, 2001 11:32 AM Subject: [JBoss-user] Address in use > i just started using jboss yesterday, so i

Re: [JBoss-user] Hardware Sizing

2001-05-20 Thread Toby Allsopp
On Sun, May 20, 2001 at 08:53:23PM -0400, Thomas Cong wrote: > [JBoss-user] calling EJB by using reflexion in a generic way Huh? > JBoss experts, > I am looking for any available hardware configuration/sizing information to support >a Jboss/Tomcat deployment in production. Add hardware until

[JBoss-user] Hardware Sizing

2001-05-20 Thread Thomas Cong
Title: [JBoss-user] calling EJB by using reflexion in a generic way JBoss experts, I am looking for any available hardware configuration/sizing information to support a Jboss/Tomcat deployment in production. Thanks in advance!   Thomas Cong Portal Software [EMAIL PROTECTED]  

Re: [JBoss-user] Problem running JBoss 2.2.1

2001-05-20 Thread Norman Rupp
Hey, guy. You have a classpath issue. What you need to do is right click on my computer, and go to properties. Now, click Advanced / Environment variables. Okay. You need to make sure that the directory that your jdk is installed is in a directory called JAVA_HOME It looks like this: JAVA_HO

Re: [JBoss-user] Problem running JBoss 2.2.1

2001-05-20 Thread Faisal Abdallah
This happened to me many times (win98) whenever I install or uninstall a program run by j2sdk! try to go back to j2sdk...exe install it again the run Jboss hope this help! Faisal - Original Message - From: "Jim Fritchman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, May 20, 20

RE: [JBoss-user] Problem running JBoss 2.2.1

2001-05-20 Thread Pete Bennett
I'm no expert in the vagueries of Windows ;-) ... but that sounds very much to me as if the state of your registry is inconsitent with the JDK that you think you have installed and are running. The error could also imply that you are trying to start jBoss with the JRE instead of the full SDK. I'

RE: [JBoss-user] Please help :-( tomcat Servlet => Jboss EJB => JAAS Authentiaction

2001-05-20 Thread Lewis Henderson
...I tried the three new jars...I get the same problem...However, the problem is 'client' side. Using two machines, both with JBoss & Embedded Tomcat, I connect my browser to machine 1 for Tomcat JSP's talking to machine 2's EJB's... My proxy on the client-side looses the SecurityAssociation as

Re: [JBoss-user] How does the tomcat classpath get set when started as a Jboss service?

2001-05-20 Thread Cuong Tran
I believe it's set from jboss.conf. --- Adam Lipscombe <[EMAIL PROTECTED]> wrote: > Folks, > > > How does the Tomcat classpath get set when starting it via JBoss? > > I can get the Apache SOAP examples to work when tomcat is run stand-alone > without JBoss. > i.e. Tomcat is started by tomc

[JBoss-user] How does the tomcat classpath get set when started as a Jboss service?

2001-05-20 Thread Adam Lipscombe
Folks, How does the Tomcat classpath get set when starting it via JBoss? I can get the Apache SOAP examples to work when tomcat is run stand-alone without JBoss. i.e. Tomcat is started by tomcat/bin/startup.bat(sh) script. However, some tweaking of the CLASSPATH was required in startup.bat.

Re: [JBoss-user] Miss sample codes in JBoss online documentation

2001-05-20 Thread Tobias Frech
Just above the source code to the CD bean you can read the following sentences: "Remember that the full source code is available to download as an archive named"cdEJB.zip". You can get it from the files area in the documentation section on www.jboss.org." Hope this helps .. Ciao, Tobias Ling W

[JBoss-user] Problem running JBoss 2.2.1

2001-05-20 Thread Jim Fritchman
I'm trying to get JBoss running on my Win2000 machine. I have the jdk in my path like the instructions say, but when I run the batch file I get the following error Failed reading value of registry key Software\Javasoft\Java Runtime Environment\CurrentVersion Error: could not find jav

[JBoss-user] home.create throws an IllegalStateException

2001-05-20 Thread Ferguson, Doug
Hi, When I call home.create() for my entity bean it behaves just fine under normal situations. However if I call home.create() serveral times in succession only the first call will work the others will throw and IllegalStateException. The exception is getting when becuase the InstanceCache object

RE: [JBoss-user] Please help :-( tomcat Servlet => Jboss EJB => JAAS Authentiaction

2001-05-20 Thread Lewis Henderson
Thx! When will 2.3 be available? Can I use the new jboss-jaas.jar and jbosssx.jar with 2.2.1? Lewis -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Scott M Stark Sent: 20 May 2001 04:59 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Please help :-( to

Re: [JBoss-user] DTD for ejb-jar.xml and jboss.xml

2001-05-20 Thread Sebastien Alborini
[EMAIL PROTECTED] wrote: > > Is there a document or dtd that describes and lists the valid values for > ejb-jar.xml and jboss.xml? http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd http://www.jboss.org/documentation/jboss.dtd Sebastien > > Thanks, > Scott > >

Re: [JBoss-user] Address in use

2001-05-20 Thread Sebastien Alborini
d cutter wrote: > > i just started using jboss yesterday, so i may very well be doing something > silly, but when i attempt to deploy a trivial session bean, i get the > following exception below. i looked through deja and the faq, but saw > nothing that looked like this. it appears as if jboss

Re: [JBoss-user] CMP table for entity bean never being created

2001-05-20 Thread Lisa Stuart
Hi all, thanks for your help, changed the bean to Ord and the table has been created. Moved on to my next problem which if I can't solve soon, you will all be hearing about... Thanks again, Lisa Ivan Novick wrote: > Do you have jaws.xml file and if so could you paste it into a message so we >

[JBoss-user] NPE in EntityProxy

2001-05-20 Thread Tim McCune
Title: NPE in EntityProxy -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm getting a NullPointerException in EntityProxy on line 182, using JBoss 2.2.1 with InstantDB.  When I run JBoss the first time, I can access all of my entity beans without getting this exception. However, once I shut