RE: [JBoss-user] Training in France: FORGET IT (En francais only)

2002-03-06 Thread Paul McLachlan
No Spanish either? What does that mean about your endearment to your countrymen mark? > -Original Message- > From: marc fleury [mailto:[EMAIL PROTECTED]] > Sent: Sunday, 3 March 2002 6:23 AM > To: Jboss-Development@Lists. Sourceforge. Net > Cc: Jboss-User@Lists. Sourceforge. Net > Subject

Re: [JBoss-user] Transactions Idling - Blocking? App Dead. Newproblem?

2002-03-06 Thread Hunter Hillegas
The CMR methods that you would assume are being called (because of the queries) are only found in one place in the SLSB, which is definitely not part of this transaction... What could I be doing wrong? > From: Dain Sundstrom <[EMAIL PROTECTED]> > Date: Wed, 06 Mar 2002 22:48:26 -0600 > To: Hunte

Re: [JBoss-user] Transactions Idling - Blocking? App Dead. Newproblem?

2002-03-06 Thread Hunter Hillegas
I just set the entities to required and I'm still seeing the blocking and the tons of CMR calls that I'm not sure I'm making... Hunter > From: Dain Sundstrom <[EMAIL PROTECTED]> > Date: Wed, 06 Mar 2002 22:48:26 -0600 > To: Hunter Hillegas <[EMAIL PROTECTED]> > Cc: JBoss 2 <[EMAIL PROTECTED]> >

Re: [JBoss-user] Transactions Idling - Blocking? App Dead. New problem?

2002-03-06 Thread David Jencks
On 2002.03.06 23:08:07 -0500 Hunter Hillegas wrote: > I have a serious problem with my application... > > Basically it seems that I have transactions that are idling forever, > effectively blocking any new users... What do you mean by idling? How does this block new users? What exactly blocks?

Re: [JBoss-user] Transactions Idling - Blocking? App Dead. New problem?

2002-03-06 Thread Dain Sundstrom
Hunter Hillegas wrote: > This is a commerce application for selling music. I have servlets that talk > to SLSBs that talk to EJB (2.0 CMP Entities). My SLSBs are all set with > Required and the entities are all > Supports. It seems that if enough users > access parts of the application, the trans

[JBoss-user] Transactions Idling - Blocking? App Dead. New problem?

2002-03-06 Thread Hunter Hillegas
I have a serious problem with my application... Basically it seems that I have transactions that are idling forever, effectively blocking any new users... I am using JBoss3 HEAD w/ PostgreSQL 7.2. The last version of JBoss I was using, JBoss3alpha, didn¹t exhibit this problem. My application is

[JBoss-user] Server Startup Hangs on JBossMQ

2002-03-06 Thread Hunter Hillegas
I am running a build of HEAD from 2/27. I just tried to move from JDK1.3.1_01 to JDK1.3.1_02 on Linux. Now, during startup, it just hangs here: 18:40:56,922 INFO [MainDeployer] Starting deployment of package: file:/usr/local/src/jboss-3beta/build/output/jboss-3.0.0beta2/server/default /deploy/j

[JBoss-user] allocateConnection->NPE

2002-03-06 Thread Hunter Hillegas
I'm seeing the following in my server logs... This is off of HEAD as of 2/27/02... What does this mean? Does this mean that there are no more connections in the pool? Thanks, Hunter java.lang.NullPointerException at org.jboss.resource.connectionmanager.SharedLocalConnectionManager.allo

Re: [JBoss-user] Newbie JNDI Question

2002-03-06 Thread Scott M Stark
> I had one question for Scott though...When u say local to J2EE > components, do you mean local to J2ee applications deployed on the > server? By definition the java:comp/env context is only accessible by the component that defined it. Scott Stark Chief Technology Office

Re: [JBoss-user] Newbie JNDI Question

2002-03-06 Thread Vishwas Raman
I agree with Scott. I have tried both local and global JNDI from the server and both work. By the way I have worked with only the 3.0beta version and so cannot confirm the same for the earlier ones. I had one question for Scott though...When u say local to J2EE components, do you mean local to

Re: [JBoss-user] Trivial MBean problem

2002-03-06 Thread tsmets
Tx, I only very slightly amended the file but I manage to introduce a stupid little fault. Namely "--" in the comments. XML expects then the end of the comment "-->". Anyway the proble is solved I can go ahead with other assless. Thomas, -- Thomas SMETS rue J. Wytsmanstraat 62 1050 Bruxelles ya

Re: [JBoss-user] Trivial MBean problem

2002-03-06 Thread danch
Try loading your jcml file into an editor that will syntax highlight XML (I use JEXT) it should make the problem more visible. danch [EMAIL PROTECTED] wrote: > > I suppose my question is rather trivial but ggogle did not return any > special hits about what I thought was relevant words :-) > I

Re: [JBoss-user] Newbie JNDI Question

2002-03-06 Thread Christine
I bound my EJBs with JNDI name: ejb/ejbname, I can look up my ejbs both from client and server side with the same JNDI name without problem. And I tested my application on IBM WebSphere, JBoss and J2EE server. Eric Kaplan wrote: > I remember way back originally reading in the documentation that

Re: [JBoss-user] Newbie JNDI Question

2002-03-06 Thread Scott M Stark
This is completely false. The java:comp/env context is local to J2EE components and can be used to isolate code from deployment specific names. The global JNDI can be used as it is on the client in the server. Read about the enterprise naming context and ejb-ref in any standard EJB book for an exp

Re: [JBoss-user] Packaging properties files used by third party libraries

2002-03-06 Thread David Jencks
Which jboss version? david jencks On 2002.03.06 13:12:16 -0500 Edward Gemar wrote: > Hi all, > My J2EE app uses a third party library that we include in our > .ear file. As is recommended, we have a "class-path" entry in the > manifest of our ejb jar file so that the third party library c

Re: [JBoss-user] JBossMQ broken?

2002-03-06 Thread Stephen Davidson
Hi Peter. Something I just noticed; In the jboss.xml file, and in the calling code, the Queue is referenced as; com/hrnexus/RFPReleaseQueue However, in the JNDI viewer, it is listed as queue/hrnexus/RFPReleaseQueue I know that we have not made it to the point where this is an issue, but will it

RE: [JBoss-user] Newbie JNDI Question

2002-03-06 Thread Eric Kaplan
I remember way back originally reading in the documentation that there was a difference in jboss in the way ejbs were looked up on the server versus a client. On the server, you had to use "java:comp/env/ejbname" whereas on the client it was simply "ejbname". At the time, I remember thinking thi

[JBoss-user] Trivial MBean problem

2002-03-06 Thread tsmets
I suppose my question is rather trivial but ggogle did not return any special hits about what I thought was relevant words :-) I changed the JBoss.jcml file to reflect the connection pooling I needed, according to the document posted (http://main.jboss.org/thread.jsp?forum=61&thread=9645). Can s

[JBoss-user] Newbie JNDI Question

2002-03-06 Thread Mike Kenyon
I just downloaded JBoss v.2.4.4 as part of an internal effort to migrate one of our test servers from another app server to JBoss. We're using iPlanet as a web server with JSPs connecting back to the EJBs running on JBoss. I'm experiencing inordinant difficulty trying to get the EJBs deployed

Re: [JBoss-user] JBossMQ broken?

2002-03-06 Thread Stephen Davidson
Hi Peter. Responses inlined. -Steve [EMAIL PROTECTED] wrote: > On 6 Mar, Stephen Davidson wrote: > >>Hi Peter. >> >>The Application had been checking the information stored in the httpSession to see >if the user had been authenticated. Then the SLSB was checking to see if the >> user was

Re: [JBoss-user] Training in France: FORGET IT (En francais only)

2002-03-06 Thread Holger Baxmann
Am Mit, 2002-03-06 um 21.04 schrieb Per Jessen: > On Wed, 6 Mar 2002 12:59:03 +0100, Eric Jain wrote: > > >> relocate to the middle of these Countries -> Danmark... Have fun, try the > >> yoghurt, its great... > > > >Everybody knows that in fact Switzerland is in the middle of Europe and the > >w

RE: [JBoss-user] Memory Leak on Lunix!!!

2002-03-06 Thread Lucas McGregor
David, I ran into a memory leak with the Minerva JDBC pools a while ago and posted the same question. I found that the XADataSourceImpl, which is older code, does not seems to have the same memory leak. I posted my findings here about a month ago, I will just attach them here again. I hop

Re: [JBoss-user] Background process

2002-03-06 Thread Holger Baxmann
thanks, david this was my guess for creating background processes at the moment i have read this topic the first time...now i know, i am on the right highway with my async native communication with semi-active outside mbean services. :))) bax Am Mit, 2002-03-06 um 17.29 schrieb David Jencks: > U

Re: [JBoss-user] missing sources in target source-zip

2002-03-06 Thread Holger Baxmann
ok, thank you very much, now i understand; i'll stay tuned for the xmbeans. cheers bax Am Mit, 2002-03-06 um 15.00 schrieb David Jencks: > On 2002.03.06 07:51:28 -0500 Holger Baxmann wrote: > > Am Die, 2002-03-05 um 21.24 schrieb David Jencks: > > > On 2002.03.05 14:33:24 -0500 Holger Baxmann wr

Re: [JBoss-user] JBossMQ broken?

2002-03-06 Thread Stephen Davidson
Hi Peter. The Application had been checking the information stored in the httpSession to see if the user had been authenticated. Then the SLSB was checking to see if the user was allowed to access the function requested. Btw, the current JAAS specifications do not currently support the se

Re: [JBoss-user] JBossMQ broken?

2002-03-06 Thread pra
On 6 Mar, Stephen Davidson wrote: > Hi Peter. > > The Application had been checking the information stored in the httpSession to see >if the user had been authenticated. Then the SLSB was checking to see if the >user was allowed to access the function requested. Btw, the current JAAS >s

[JBoss-user] Memory Leak on Lunix!!!

2002-03-06 Thread David Cao
We am running JBoss2.4.4 Tomcat 3.2.3 on Linux 7.2 in production, I realized there is a memory leak as well, The memory usage seems increase pretty fast, out of memory for less than one week, also encounter out of memory exception if webserver is running for some time when update jsp. we didn't co

Re: [JBoss-user] JBossMQ broken?

2002-03-06 Thread pra
On 6 Mar, Stephen Davidson wrote: > > Ok, just updated, and now I get the attached stack-trace. What is happening is that >a servlet is calling an SLSB, and that SLSB is trying to pop a message on a > queue (as well as do some other operations). What is really disconcerting is the >fact tha

Re: [JBoss-user] Training in France: FORGET IT (En francais only)

2002-03-06 Thread Per Jessen
On Wed, 6 Mar 2002 12:59:03 +0100, Eric Jain wrote: >> relocate to the middle of these Countries -> Danmark... Have fun, try the >> yoghurt, its great... > >Everybody knows that in fact Switzerland is in the middle of Europe and the >world in general. Also, the milk is better. Eh ?? ah, well, as

Re: [JBoss-user] JBossMQ broken?

2002-03-06 Thread Stephen Davidson
Ok, just updated, and now I get the attached stack-trace. What is happening is that a servlet is calling an SLSB, and that SLSB is trying to pop a message on a queue (as well as do some other operations). What is really disconcerting is the fact that the Exceptions and StackTraces are NOT be

[JBoss-user] Packaging properties files used by third party libraries

2002-03-06 Thread Edward Gemar
Hi all, My J2EE app uses a third party library that we include in our .ear file. As is recommended, we have a "class-path" entry in the manifest of our ejb jar file so that the third party library can be used by our beans. This works fine and has for some time. Now...we want to

Re: [JBoss-user] Pool Manager Throws errors shrinking JDBC Pools

2002-03-06 Thread David Jencks
If you can sometimes get connections using container managed security probably you have principal mapping set up but no default user/pw in the ManagedConnectionFactoryProperties, and furthermore some settings like idleTimeoutPercent so that sometimes jboss will try to create connections for you wi

RE: [JBoss-user] Background process

2002-03-06 Thread David Arnone
I think that a minimal solution could be to put the mbean that start the thread just after the Autodeployer Mbean so, you insure that the ejbs are deployed before you start your thread david arnone -Original Message- From: David Jencks [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March

[JBoss-user] Pool Manager Throws errors shrinking JDBC Pools

2002-03-06 Thread Stephen Davidson
Greetings. Me again. When JBoss tries to shrink some of the pools that is has, the following exceptions get thrown. The connections had been idle for several minutes when JBoss tried to close some extra connections, so that was a good thing. Any ideas? -Steve 10:11:43,916 ERROR [jdbc/pool/

Re: [JBoss-user] Background process

2002-03-06 Thread David Jencks
Use an mbean extending ServiceMBeanSupport, and start the thread in startService. If the requirement on code location is really a _requirement_ use jboss 3 and put the mbean code + config in a .sar in your .ear. You may need to have the mbean "depends" on the ejbs it uses so it waits to start unti

Re: [JBoss-user] Background process

2002-03-06 Thread Tim Yates
This page in the manual explains how to write something which will be called by the Timer bean http://www.jboss.org/online-manual/HTML/ch13s55.html So you can set the timer to post a message to the MDB every 10 minutes or so Then, this page: http://www.jboss.org/online-manual/HTML/ch08s20.html

RE: [JBoss-user] Background process

2002-03-06 Thread Loïc Lefèvre
First a question: MDB are supported by JBoss 2.4.4? I don't know this concept, have you an url? Well I'm going to explain... I need a background process to manipulate EJBs. Let's take my example: an AI background process manages the weather and virtual people. This process needs to change EJBs p

Re: [JBoss-user] JBossMQ broken?

2002-03-06 Thread Stephen Davidson
Hi David. Thanks. JBossMQ now deploys on startup. But when I try to send a message to an MDB, I get the following stack Trace... -Steve 09:46:55,229 INFO [XAConnectionManager] Got a subject: null 09:46:55,271 ERROR [JmsXA] Unable to create ManagedConnection: javax.resource.spi.CommExceptio

[JBoss-user] Background process

2002-03-06 Thread Loïc Lefèvre
Hi, Could someone tell me the best way to implement a background process (a thread) that has access to some EJBs (server side). The code of this process must be in the ear archive. Currently, I have only two ideas: - Run my thread in the init method of a servlet. - Run my thread in a static block

Re: [JBoss-user] missing sources in target source-zip

2002-03-06 Thread David Jencks
On 2002.03.06 07:51:28 -0500 Holger Baxmann wrote: > Am Die, 2002-03-05 um 21.24 schrieb David Jencks: > > On 2002.03.05 14:33:24 -0500 Holger Baxmann wrote: > > > is it possible, that the build sources-zip doesn't grab the > > > MainDeployerMBean.java from the gen-src in system/output ? > > > >

Re: [JBoss-user] Training in France: FORGET IT (En francais only)

2002-03-06 Thread Eric Jain
> relocate to the middle of these Countries -> Danmark... Have fun, try the > yoghurt, its great... Everybody knows that in fact Switzerland is in the middle of Europe and the world in general. Also, the milk is better. -- Eric Jain ___ JBoss-user

RE: [JBoss-user] Training in France: FORGET IT (En francais only)

2002-03-06 Thread Georg Schmid
May be the French stick with JOnAS? Georg -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Burkhard Vogel Sent: Wednesday, March 06, 2002 00:08 To: JBoss-User; [EMAIL PROTECTED] Subject: Re: [JBoss-user] Training in France: FORGET IT (En francais only)

RE: [JBoss-user] "required" tx methods in 3.0.0beta

2002-03-06 Thread Alex Loubyansky
Hello! Thanks for the response. But I tried it as well. setRollbackOnly() rolls back the transaction correctly when placed in entity home's create method, but when placed in the session's business method after the call to entity's create, the database (MySQL) nevertheless contains the data in

Re: [JBoss-user] Training in France: FORGET IT (En francais only)

2002-03-06 Thread Burkhard Vogel
So... relocate to the middle of these Countries -> Danmark... Have fun, try the yoghurt, its great... Burkhard - Original Message - From: "marc fleury" <[EMAIL PROTECTED]> To: "Jboss-Development@Lists. Sourceforge. Net" <[EMAIL PROTECTED]> Cc: "Jboss-User@Lists. Sourceforge. Net" <[EMAIL P