[JBoss-user] trying to buy the server docs

2002-03-19 Thread Todd Marshall
Anyone know if there is an alternative to flashline.com for purchasing JBoss2.4 documentation? I've been trying to buy them for the last couple of days to no avail -Todd -- Todd C. Marshall Technical Consultant 214-395-4502 _

[JBoss-user] ExternalContext

2002-03-19 Thread Renae Carr
Does anyone know how I can configure an externalContext mbean within a jboss.jcml file to allow the jboss on one machine access a queue defined in a jboss running on a seperate machine? Thanks for any response. Renae. ___ JBoss-user mailing list [EM

Re: [JBoss-user] Concurrency Issue

2002-03-19 Thread Dmitri Colebatch
I'm assuming you're talking about something separate tx? So 1. User1 views entity, and sees status as X 2. User2 views entity, and sees status as X 3. User1 updates entity status to Y 4. User2 updates entity status to Z and each action is a separate HTTP request? In that case, what you want is

[JBoss-user] Concurrency Issue

2002-03-19 Thread john
Hi All, I need to find out how Jboss handle concurrencies. say if user 1 and user 2 is accessing website and reading info about entity beanA both are "holding on" to enitity bean A. say Bean A has Status, with value of X. now if user1 update Status to Y. follow shortly by user2 updating to anothe

RE: [JBoss-user] How to prevent deadlocks

2002-03-19 Thread Eric Jain
> I had a similar problem when i reentred some CMP-beans (bean A > calls bean B and bean B in this method calls bean A again, i > think) withouth specifying this capability in the depl. decr. > After reorganizing the code, it worked. Thanks for the tip. I have A and B beans in a one to many bidi

Re: [JBoss-user] How to prevent deadlocks

2002-03-19 Thread marius
I had a similar problem when i reentred some CMP-beans (bean A calls bean B and bean B in this method calls bean A again, i think) withouth specifying this capability in the depl. decr. After reorganizing the code, it worked. On Tue, Mar 19, 2002 at 09:18:19PM +0100, Eric Jain wrote: > Any id

[JBoss-user] How to prevent deadlocks

2002-03-19 Thread Eric Jain
Any ideas how to avoid this? 2002-03-19 21:14:48,250 ERROR [org.jboss.ejb.BeanLock] Application deadlock detected: TransactionImpl:XidImpl [FormatId=257, GlobalId=trillian//404, BranchQual=] has deadlock conditions 2002-03-19 21:14:48,250 ERROR [org.jboss.ejb.plugins.LogInterceptor] TransactionR

RE: [JBoss-user] can I run JBoss with the JDK1.4?

2002-03-19 Thread JD Brennan
Title: can I run JBoss with the JDK1.4? I ran 2.4.4 with JDK 1.4, just to see if it would work. The Hypersonic database had errors (stack traces) on startup, but I wasn't using it, and my two simple demos ran fine.   JD   -Original Message-From: Herve Tchepannou [mailto:[EMAIL PROTEC

[JBoss-user] can I run JBoss with the JDK1.4?

2002-03-19 Thread Herve Tchepannou
Title: can I run JBoss with the JDK1.4? Can I run JBoss with JDK1.4? if no, is there any when will that happen? thanx Herve Tchepannou Software Engineer Objexis Coorporation Phone: (514) 932 3295 Ext. 231 mailto:[EMAIL PROTECTED] Objexis Coorporation http://www.objexis.com 1635 Sherbroo

Re: [JBoss-user] cannot create an instance entity bean on Jboss 3.0

2002-03-19 Thread Burkhard Vogel
Hi, I have not the slightest clue want pbm means, but this error seems just straightforward to me: You are trying to use a feature of the PostgresQL-JDBC driver which simply is not omplemented yet. Which leaves you to three alternatives: - Try finding a more recent driver and hope for the best...

Re: [JBoss-user] JBossMQ selector question

2002-03-19 Thread Dave Smith
Did you start the connection? Joost v.d. Wijgerd wrote: > Hi, > > I have a QueueBrowser that is polling a queue. I display this queue in a > Swing client. When the user takes an action I want to get the message > from the queue, so I make a selector based on the JMSMessageID. > Unfortunately

Re: [JBoss-user] Dead JDBC Connection in JBoss Pool

2002-03-19 Thread Ruwei Hu
Thanks for the reply. I am using JBoss 2.4.1 though, which does kick out bad connection from pool and recovered nicely with single user. When stress tested with multiple user, the bad connections tend to stay in the pool. My guess is that there might be race conditiones in the pool when dealing wi

RE: [JBoss-user] One-to-Many Relationship with a Dependent Value Class

2002-03-19 Thread Eric Jain
> Now I don't want to have the Address as an entity bean Why not? -- Eric Jain ___ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user

RE: [JBoss-user] JBoss-Jetty Setup

2002-03-19 Thread Steven Jardine
Thanks for your help Jules. This is what I ended up doing: 8443 5 255 3 1 5000 2000 /keystore MYPASSWORD MYKEYPASSWORD It works great. Thanks again. Steve -Original Messa

[JBoss-user] One-to-Many Relationship with a Dependent Value Class

2002-03-19 Thread Alice Ad
Tried on forums with no response. Thanks. I have an (EJB2.0 CMP) entity bean EmployeeBean. The employee has multiple addresses and I have represented "Address" as a dependent value class. Now I don't want to have the Address as an entity bean but still want to have a 1-to-many relationship between

RE: [JBoss-user] forums

2002-03-19 Thread Alice Ad
 they got back up ok. thanks   James Ward <[EMAIL PROTECTED]> wrote: The Forums are working fine for me.  Can you find out what IP address main.jboss.org is resolving to for you?  For me I get 209.61.155.140   If that is the IP address you are resolving to, then can you get me a traceroute?  

Re: [JBoss-user] JBoss-Jetty Setup

2002-03-19 Thread Julian Gosnell
dereferences the java property "jetty.home" - which no longer exists, now that Jetty is packaged in a SAR rather than it's own filespace. Try an absolute filepath here. jboss.home may still exist, so once you get this working you could try using that to position your file relative to your jboss

[JBoss-user] JBoss-Jetty Setup

2002-03-19 Thread Steven Jardine
I am attempting to set up a Jetty SSLListener for the JBoss3.0.0beta2.  I remove the comment for the SSLListener in the jboss-service.xml file and add a keystore, password and keypassword.  The problem is the path for the keystore.  JBoss cannot find the keystore.  Could anyone explain to me

RE: [JBoss-user] Compiling Haefel's example EJB 2.0 .java files in JBoss 3

2002-03-19 Thread Allan Kamau
Dirk Krummacker, Thanks so much it worked. And sorry it was indeed a typing error on my part. Allan Kamau. --- Dirk Krummacker <[EMAIL PROTECTED]> wrote: > 1) change 'returns' to 'return' > 2) the method name is "setId", not "setID" > > HTH, > > Dirk > > -Original Message- > From:

RE: [JBoss-user] Compiling Haefel's example EJB 2.0 .java files in JBoss 3

2002-03-19 Thread Dirk Krummacker
1) change 'returns' to 'return' 2) the method name is "setId", not "setID" HTH, Dirk -Original Message- From: Allan Kamau [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 8:41 AM To: [EMAIL PROTECTED] Subject: [JBoss-user] Compiling Haefel's example EJB 2.0 .java files in JBoss

RE: [JBoss-user] Compiling Haefel's example EJB 2.0 .java files in JBoss 3

2002-03-19 Thread Eric Jain
> com\burudani\cabin\CabinBean.java:9: not a statement > returns null; > ^ return null; -- Eric Jain ___ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user

[JBoss-user] Nested Field errors

2002-03-19 Thread Todd Marshall
Hey all- I've seen this error off and on: [WARN,CMPFieldMetaData] ERROR : Nested Field does not have a get method Usually, it comes up because I made some syntax or naming error in one of my deployment descriptors. This time however that doesn't seem to be the case. Can anyone tell me what ge

[JBoss-user] Casting INTEGER_VALUED_PATH to String - OK it's not actually allowed

2002-03-19 Thread Jason Uithol
OK - apparantly you are not allowed to compare strings and integers. My EJB-QL queries that had INTEGER_VALUED_PATH = STRING_VALUED_PATH expressions in them were not spec conformant - oh well. Jason Uithol Data Technologist DatacodeX Pty Ltd [EMAIL PROTECTED] http://www.datacodex.com

[JBoss-user] JBossMQ selector question

2002-03-19 Thread Joost v.d. Wijgerd
Hi,I have a QueueBrowser that is polling a queue. I display this queue in a Swing client. When the user takes an action I want to get the message from the queue, so I make a selector based on the JMSMessageID. Unfortunately this doesn't seem to work.. can somebody tell me what I'm doing wron