[JBoss-user] Session Level Failover Problems

2004-08-09 Thread Rich Reese
I am running JBOSS 3.2.3 on Windows 2000. Session Level failover works fine for me as long as I don't have a large number of items in the session. Once the number of items in session reaches a certain size (I don't know the majic number) I get the following error. Can anyone give me any informatio

Re: [JBoss-user] Session Bean with Tx Required -> POJO -> Session Bean Tx Required

2004-02-01 Thread Adrian Brock
On Fri, 2004-01-23 at 09:52, Stephane Nicoll wrote: > Hello list, > > Just a curious question, hope someone could answer me. Let's say i have a > session bean creating a JTA transaction, then invoking a POJO. This POJO > performs a lookup on another session bean and invoke it. Will this new > sess

[JBoss-user] Session Bean with Tx Required -> POJO -> Session Bean Tx Required

2004-01-23 Thread Stephane Nicoll
Hello list, Just a curious question, hope someone could answer me. Let's say i have a session bean creating a JTA transaction, then invoking a POJO. This POJO performs a lookup on another session bean and invoke it. Will this new session bean use the same JTA transaction or will it use a new one.

Re: [JBoss-user] session bean lookup and create - where ?

2004-01-12 Thread Adrian Brock
Caching the local interface is ok for stateless. It is just a pointer to the service and can be used concurrently on multiple threads. In fact you can make jboss do this transparently, by changing the client interceptors for the stateless session client. You just do home.create() and jboss will k

[JBoss-user] session bean lookup and create - where ?

2004-01-12 Thread stscit04
Hi, I am currently working on a application which consists of several sessionBeans (stateless). The session beans are using each other through their local-interfaces. Bean A is using bean B. I am using he xdoclet generated util-classes to lokkup the local-interfaces. The util-classes cache the h

Re: [JBoss-user] Session/Entity Bean Transaction Rollback

2004-01-05 Thread Adrian Brock
http://www.mysql.com/doc/en/InnoDB.html Regards, Adrian On Mon, 2003-12-22 at 15:22, [EMAIL PROTECTED] wrote: > Hi, > > I forgot something, > I am not shure if this is important: Im am using mySQL > as RDBMS. The Datasource is configured as follows: > > > > > mySQL_partnerMgmt > jdb

Re: [JBoss-user] Session/Entity Bean Transaction Rollback

2003-12-22 Thread Rafal Kedziorski
At 16:31 22.12.2003, [EMAIL PROTECTED] wrote: Thank you very much, but this didnt solve my problem. I am looking arround at the net, and it seems like a lot of peoploe have the same problem - no answers I guess it has to do somthing with my mySQL db. Does anybody know how to configure a mysql a

Re: [JBoss-user] Session/Entity Bean Transaction Rollback

2003-12-22 Thread Adrian Brock
On Mon, 2003-12-22 at 15:53, Adrian Brock wrote: > http://www.mysql.com/doc/en/InnoDB.html > > Regards, > Adrian > > On Mon, 2003-12-22 at 15:22, [EMAIL PROTECTED] wrote: > > Hi, > > > > I forgot something, > > I am not shure if this is important: Im am using mySQL > > as RDBMS. The Datasource i

Re: [JBoss-user] Session/Entity Bean Transaction Rollback

2003-12-22 Thread stscit04
Thank you very much, but this didnt solve my problem. I am looking arround at the net, and it seems like a lot of peoploe have the same problem - no answers I guess it has to do somthing with my mySQL db. Does anybody know how to configure a mysql as XA Datasource in JBoss ? Thanks again, any

Re: [JBoss-user] Session/Entity Bean Transaction Rollback

2003-12-22 Thread Rafal Kedziorski
At 14:42 22.12.2003, [EMAIL PROTECTED] wrote: Hi, I have a sessionbean (stateless), that provides a method to create some entitys. If the creation of one Entity fails, I want do rollback all creations, there should be one or all entitys in the DB. I tried to set transaction type="required" on the

Re: [JBoss-user] Session/Entity Bean Transaction Rollback

2003-12-22 Thread stscit04
Hi, I forgot something, I am not shure if this is important: Im am using mySQL as RDBMS. The Datasource is configured as follows: mySQL_partnerMgmt jdbc:mysql://localhost/partnerMgmt org.gjt.mm.mysql.Driver root > Hi, > > I have a sessionbean (stateless), that provi

[JBoss-user] Session/Entity Bean Transaction Rollback

2003-12-22 Thread stscit04
Hi, I have a sessionbean (stateless), that provides a method to create some entitys. If the creation of one Entity fails, I want do rollback all creations, there should be one or all entitys in the DB. I tried to set transaction type="required" on the method and I throw EJB Exceptions if something

[JBoss-user] session replication and HttpSessionListener question

2003-10-12 Thread Rafal Kedziorski
Hi, I have small question to session replication and HttpSessionListener in an Jetty cluster. We want have two or more Jetty nodes with session replication. We have own HttpSesionListener with implemented sessionDestroyed() method. What happens in an Jetty cluster with session replication if a

RE: [JBoss-user] Session and Entity Beans in Cluster

2003-09-18 Thread Rafal Kedziorski
At 16:01 18.09.2003 +0200, Sacha Labourey wrote: Rafal, Simply define your façade as clustered as even if you define your entity as clustered, the call will always go to the local instance, never a remote one. o.k. Our ServiceLocator caches local home interfaces for the session and entity beans.

RE: [JBoss-user] Session and Entity Beans in Cluster

2003-09-18 Thread Sacha Labourey
l Kedziorski > Sent: jeudi, 18. septembre 2003 15:31 > To: [EMAIL PROTECTED] > Subject: [JBoss-user] Session and Entity Beans in Cluster > > > hi, > > since yesterday I have the last payed JBossClustering documentation. > > I have small configuration Question. >

[JBoss-user] Session and Entity Beans in Cluster

2003-09-18 Thread Rafal Kedziorski
hi, since yesterday I have the last payed JBossClustering documentation. I have small configuration Question. We have stateless session beans as facade with remote interfaces. Facade checks some permissions and data and calls other session beans which implement the business logic thru local in

Re: [JBoss-user] session bean overwriting other session bean values

2003-09-11 Thread Mark Lassau
Butt, Dudley wrote: > Hi, > > Ok, somewhere in my implementation I've screwed up... > I have a session bean (stateless) that gets created then starts a process of database writes via some business logic and entity beans. > When I start another process, the new session bean is created, but it do

Re: [JBoss-user] session bean overwriting other session bean values

2003-09-09 Thread Scott M Stark
Session beans don't have values so you have to be talking about the database/entity bean values I presume in which case the behavior you describe is expected. -- Scott Stark Chief Technology Officer JBoss Group, LLC Butt, Dudley wrote: Hi, Ok,

[JBoss-user] session bean overwriting other session bean values

2003-09-09 Thread Butt, Dudley
Hi, Ok, somewhere in my implementation I've screwed up... I have a session bean (stateless) that gets created then starts a process of database writes via some business logic and entity beans. When I start another process, the new session bean is created, but it doesnt start writing to database

RE: [jetty-support] Re: [JBoss-user] Session scope when forwarding to a separate web app

2003-05-30 Thread Alastair Rodgers
That's great news - thanks! > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Greg Wilkins > Sent: 29 May 2003 15:08 > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED]; Jules Gosnell > Subject: Re: [jetty-support] R

Re: [jetty-support] Re: [JBoss-user] Session scope when forwardingto a separate web app

2003-05-30 Thread Greg Wilkins
A patch for this issue has gone into Jetty CVS and will propogate to JBoss shortly. cheers Jules Gosnell wrote: Alastair Rodgers wrote: Hello, I think I've come across a bug with HTTP session tracking in JBoss 3.0.6. I don't know if this is still a problem in 3.2.x as I'm not yet in a position

Re: [JBoss-user] session bug?

2003-03-30 Thread Dan K.
ode in question, I will see if I can make > the behaviour friendlier, but I don't consider it a priority. > > that's my last word on the matter, > > > Jules > > > > > > > > > > > >>-Original Message- > >>Fro

Re: [JBoss-user] session bug?

2003-03-29 Thread Jules Gosnell
see if I can make the behaviour friendlier, but I don't consider it a priority. that's my last word on the matter, Jules -Original Message- From: Joao Clemente [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27, 2003 2:03 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss

Re: [JBoss-user] session bug?

2003-03-27 Thread Dan K.
On Thu, 27 Mar 2003, Joao Clemente wrote: > On Wed, Mar 26, 2003 at 07:45:55PM -0500, Dan K. wrote: > > > I believe there is a bug with getting the session in JBoss 3.0.6 using the > > "all" configuration with in web.xml. The behavior is > > that every request to my test servlet gets a new sess

RE: [JBoss-user] session bug?

2003-03-27 Thread Rupp,Heiko
t or Bea wls6.2 behave differently with the same war / web-app / distibutable tag. Imho, the default action for jetty should be as for tomcat .. > -Original Message- > From: Joao Clemente [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 27, 2003 2:03 PM > To: [EMAIL PROTECTED] >

Re: [JBoss-user] session bug?

2003-03-27 Thread Joao Clemente
On Wed, Mar 26, 2003 at 07:45:55PM -0500, Dan K. wrote: > I believe there is a bug with getting the session in JBoss 3.0.6 using the > "all" configuration with in web.xml. The behavior is > that every request to my test servlet gets a new session id (new session > is created). > > If I remove t

[JBoss-user] session bug?

2003-03-26 Thread Dan K.
Hello everyone, I believe there is a bug with getting the session in JBoss 3.0.6 using the "all" configuration with in web.xml. The behaviour is that every request to my test servlet gets a new session id (new session is created). If I remove the element from web.xml then it works as expected

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sentback to the client

2003-02-18 Thread Jonathan . O'Connor
[EMAIL PROTECTED] cc: Subject: Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client Can you do a thread dump on the client and server when this happens? I didn't see this in the tests I wrote. (on linux and mac osx, you can get a th

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client

2003-02-18 Thread David Jencks
cleConnection.commit(OracleConnection.java:1341) > at > >org.jboss.resource.adapter.jdbc.local.LocalManagedConnection.commit(LocalManagedConnection.java:91) > ... 27 more > Ciao, > Jonathan O'Connor > Development Manager > XCOM Dublin > Phone: +353 1 87

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sentback to the client

2003-02-18 Thread Jonathan . O'Connor
Subject: Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client David, I spent most of yesterday trying to download Branch_3_0, and I'm still not finished. However, this recent spate of emails suggests that its all under control. As soon as 3.0

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sentback to the client

2003-02-12 Thread Jonathan . O'Connor
ond to jboss-user To: [EMAIL PROTECTED] cc: Subject: Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client Dain and I have been working to fix this farther. He fixed the "missing cause" you found. I

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client

2003-02-11 Thread David Jencks
Dain and I have been working to fix this farther. He fixed the "missing cause" you found. I've made all these exceptions use Jason's NestedThrowable stuff so they should print well. Also, there is an XAExceptionFormatter thing you can do to supply special formatting to xa exceptions: this works b

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client

2003-02-11 Thread Gerald Turner
Gerald Turner <[EMAIL PROTECTED]> writes: > I'll build the latest Branch_3_0 and give that a try. Good news! David's changes to 3.0.7RC1 have fixed this problem! I noticed one minor problem: neither XAException, nor SQLException are nested in the TransactionRolledbackException. The exception I

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client

2003-02-11 Thread Gerald Turner
: ~ ~ ~ > Sent by: ~[EMAIL PROTECTED] > [EMAIL PROTECTED] ~ ~ ~ ~ cc: ~ ~ ~ ~ > ~ ~ ~ ~ Subject: ~ ~ ~ ~Re: > 10.02.2003 17:04 [JBoss-user]

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sentback to the client

2003-02-11 Thread Jonathan . O'Connor
+353 1 872 3305 Mobile: +353 86 824 0736 David Jencks <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 10.02.2003 17:04 Please respond to jboss-user                 To:        [EMAIL PROTECTED]         cc:                 Subject:        Re: [JBoss-user] Session Bean (Txn Required) commit

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client

2003-02-10 Thread David Jencks
; > > > David Jencks <[EMAIL PROTECTED]> > Sent by: [EMAIL PROTECTED] > 24.01.2003 17:14 > Please respond to jboss-user > > > To: [EMAIL PROTECTED] > cc: > Subject:Re: [JBoss-user] Session Bean (Txn Required) > commit error not bei

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sentback to the client

2003-02-10 Thread Jonathan . O'Connor
ger XCOM Dublin Phone: +353 1 872 3305 Mobile: +353 86 824 0736 David Jencks <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 24.01.2003 17:14 Please respond to jboss-user                 To:        [EMAIL PROTECTED]         cc:                 Subject:        Re: [JBoss-user] Sessi

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sentback to the client

2003-01-24 Thread Jonathan . O'Connor
ger XCOM Dublin Phone: +353 1 872 3305 Mobile: +353 86 824 0736 Rod Macpherson <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 24.01.2003 14:02 Please respond to jboss-user To: [EMAIL PROTECTED] cc: Subject: Re: [JBoss-user] Session Bean (Txn Requi

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client

2003-01-24 Thread David Jencks
ks <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 24.01.2003 15:01 Please respond to jboss-user To: [EMAIL PROTECTED] cc: Subject:Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client Which jboss? What does h

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sentback to the client

2003-01-24 Thread Jonathan . O'Connor
e: +353 1 872 3305 Mobile: +353 86 824 0736 David Jencks <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 24.01.2003 15:01 Please respond to jboss-user To: [EMAIL PROTECTED] cc: Subject: Re: [JBoss-user] Session Bean (Txn Required) commit error not being s

Re: [JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client

2003-01-24 Thread David Jencks
Which jboss? What does happen? Do you know the spec required behavior? I think it should be TransactionRolledBackException or TransactionRolledBackLocalException, but I haven't looked in the spec recently. david jencks On Friday, January 24, 2003, at 07:22 AM, Jonathan.O'[EMAIL PROTECTED]

Re: [JBoss-user] Session Bean (Txn Required) commit error not beingsent back to the client

2003-01-24 Thread Rod Macpherson
[JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client > Yesterday, we got bitten by the same bug that bit us last November. Here's > what happens: > 1. A client app (JUnit tester) calls a method in a session bean (via > remote interface).

[JBoss-user] Session Bean (Txn Required) commit error not being sent back to the client

2003-01-24 Thread Jonathan . O'Connor
Yesterday, we got bitten by the same bug that bit us last November. Here's what happens: 1. A client app (JUnit tester) calls a method in a session bean (via remote interface). The method is marked as Transaction required. 1a. A transaction is started automatically by JBoss. 2. The session bean m

Re: [JBoss-user] Session Id not reinitialized

2003-01-23 Thread kiuma
Thank you very very much! Your solution perfectly solved the problem Kiuma Jules Gosnell ha scritto: kiuma wrote: Would you try replacing your jbossweb.sar with this one and trying again... - I know that a session handling problem crept into 3.0.5, I think this release fixed it - if not Jet

Re: [JBoss-user] Session Id not reinitialized

2003-01-23 Thread Jules Gosnell
kiuma wrote: Would you try replacing your jbossweb.sar with this one and trying again... - I know that a session handling problem crept into 3.0.5, I think this release fixed it - if not Jetty-4.2.6 (which will be in 3.0.6) will do so. Jules jbossweb-3.0.5-4.2.5.sar

Re: [JBoss-user] Session Id not reinitialized

2003-01-23 Thread kiuma
Ok, now I can be more precise. ;-) First I want to point out that installing my app to my customer pc works pretty well! The problem is on my network in the following test: Box1: Linux PC with jboss-3.0.5 running. Browser is Mozilla IP: 192.168.100.3 Box2: Windows 2000 with I.E. IP: 192.168.10

Re: [JBoss-user] Session Id not reinitialized

2003-01-22 Thread Jules Gosnell
3.0.6 will be out soon (early next week?) Please repeat the test in that and if the problm persists, mail again with more detail - i.e. a blow-by-blow account of exactly what you did from both boxes and what behaviour you observed. Jules kiuma wrote: Hello, I'm having the following problem:

[JBoss-user] Session Id not reinitialized

2003-01-22 Thread kiuma
Hello, I'm having the following problem: I'm using JBoss 3.0.4 with Jetty my login.jsp is: <%@page language="java" contentType="text/html;charset=UTF-8" session="true" isThreadSafe="true" isErrorPage="false" import="javax.naming.*, com.wingstech.webappointments.interfaces

Re: [JBoss-user] Session

2003-01-20 Thread Meyer-Willner, Bernhard
2003 19:18 An: [EMAIL PROTECTED] Betreff: [JBoss-user] Session Is it possible to call a local stateful session bean from a remote statefull session bean? Is there any restriction? Thanks Gabriel -- Gabriel Esteves Marques Pinto Diretor de TI [EMAIL PROTECTED

Re: [JBoss-user] Session

2003-01-20 Thread Eric Klimas
You should be able to that, as long as your local object stays on the server side. In other words don't return it from a remote method call or as part of another object like a Collection or something so that it ends up on the client machine. -Eric On Mon, 2003-01-20 at 13:18, Gabriel Pinto wr

[JBoss-user] Session

2003-01-20 Thread Gabriel Pinto
Is it possible to call a local stateful session bean from a remote statefull session bean? Is there any restriction? Thanks Gabriel -- Gabriel Esteves Marques Pinto Diretor de TI [EMAIL PROTECTED] www.brainweb.com.br (19)3287-7060 Ramal:253 Núcleo SOFTEX-Cam

[JBoss-user] session counting....

2003-01-14 Thread Jules Gosnell
Is there a non-intrusive way to maintain a count of the number of instances of a given session bean within JBoss. I'v had a look around at the various Metric, Statistic and Count gathering components but could not find anything specific and lightweight enough. Before I take the plunge, I wond

[JBoss-user] Session Bean calling in application/servlets

2002-09-06 Thread Chris Chen
Hi, I'm wondering how you guys solve the following problem (or maybe not even a problem): 1) In my servlet/application, I lookup the session bean and store the home interface. This is only done once in the init() or the startup. 2) Then every time I need to access the bean, I simply call the

[JBoss-user] session bean through an applet

2002-08-01 Thread Ionel Gardais
Hi, How to override the security exception trown when accessing to an SLSB through an applet ? thanks, ionel --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf __

Re: [JBoss-user] Session bean (client and server side) security question

2002-07-31 Thread Scott M Stark
- Original Message - From: "Fee Ling Chin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 31, 2002 2:13 PM Subject: [JBoss-user] Session bean (client and server side) security question > Hi, > > What is the best way

[JBoss-user] Session bean (client and server side) security question

2002-07-31 Thread Fee Ling Chin
Hi, What is the best way to access a session bean with 2 different security domains? Let's say I want external clients to authenticate and get authorization to call a session bean method but I don't want to impose any security for other server components to access the same session bean. Basicall

RE: [JBoss-user] session timeout

2002-06-03 Thread JD Brennan
Title: RE: [JBoss-user] session timeout Another possible solution is to change the UI on your web app that queries the db to tell the user to wait for the query or provide some animated progress bar to occupy them so they don't realize it's taking a long time. JD -Origin

Re: [JBoss-user] session timeout

2002-06-02 Thread Guy Rouillier
you want. Then you can use connections the way they were designed to be used. - Original Message - From: "Tia Haenni" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, June 01, 2002 11:27 PM Subject: Re: [JBoss-user] session timeout > My network admin

Re: [JBoss-user] session timeout

2002-06-02 Thread David Jencks
gh > CPU usage. I think the best solution here is to set the timeout for web > users only (the app using JBoss is not a web app). > > Where do you set the pool timeout value? > > Thanks for the reply. > > > From: "Guy Rouillier" <[EMAIL PROTECTED]> &

Re: [JBoss-user] session timeout

2002-06-01 Thread Tia Haenni
h CPU usage. I think the best solution here is to set the timeout for web users only (the app using JBoss is not a web app). Where do you set the pool timeout value? Thanks for the reply. From: "Guy Rouillier" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: Re: [

Re: [JBoss-user] session timeout

2002-05-31 Thread Guy Rouillier
each method? That negates the purpose of pooled connections, and I don't see what it buys you. - Original Message - From: "Tia Haenni" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 31, 2002 3:08 PM Subject: [JBoss-user] session timeout >

RE: [JBoss-user] session timeout

2002-05-31 Thread Bill Burke
To: [EMAIL PROTECTED] > Subject: [JBoss-user] session timeout > > > Does anyone know of a way to configure JBoss 2.4.3 to close it's > database connection between EJB invocations? I am dealing with Oracle > 8.1.5. Tx > > > ___

[JBoss-user] session timeout

2002-05-31 Thread Tia Haenni
Does anyone know of a way to configure JBoss 2.4.3 to close it's database connection between EJB invocations? I am dealing with Oracle 8.1.5. Tx ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in La

[JBoss-user] Session problem - Tomcat JSP Examples

2002-04-16 Thread Mark Wolfe
I have just downloaded the JBOSS RC1+Tomcat from sourceforge and tried to use the jsp examples at http://localhost:8080. The jsp examples demonstrating session attributes don't work for some reason. The basic symptom is that the session seems to be recreated for every request that I make. The ma

Re: [JBoss-user] Session timeout

2001-11-28 Thread Sternagel Annegret (PN-SYS/PE)
Annegret Ursprungliche Nachricht- Von: Andrew [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 28. September 2001 15:41 An: JBoss-user Betreff: [JBoss-user] Session timeout Hi, how I can set session timeout for JBoss for web container sync purposes. If web container session is expiered than

[JBoss-user] Session timeout

2001-11-28 Thread Andrew
Hi, how I can set session timeout for JBoss for web container sync purposes. If web container session is expiered than client bean stubs is not valid anymore( references on remote objects retain for web session lifetime) . Is this right? Thanks

[JBoss-user] Session timeout

2001-11-28 Thread Andrew
Hi, how I can set session timeout for JBoss for web container sync purposes. If web container session is expiered than client bean stubs is not valid anymore( references on remote objects retain for web session lifetime) . Is this right? Thanks _

[JBoss-user] Session data lost between request using Navigator 4.08

2001-11-21 Thread Robert Finneran
Hello, I'm running JBoss-2.4.3_Jetty-3.1.3-1 on both RedHat 7.1 and Win2000. It appears that I'm having problems with saving data in the session between HTTP requests when using Netscape Navigator 4.08 as my browser (The browser I also tested on both Windows and Linux). This problem does not occu

[JBoss-user] Session Create serialization error

2001-11-16 Thread Lucas McGregor
I am running JBoss-2.4.1_Tomcat-3.2.3 on Solaris on Intel, using JVM 1.3.0_02. Periodically, a call to a stateless session bean called com.novalogic.ejb.controller.SessionController's createSession method results in the following stack trace. And subsequent call to this method will fail with the

[JBoss-user] Session bean removal

2001-08-07 Thread Nick Taylor
I've playing around with the , , and values to allow session beans created for clients to be cleanly reclaimed. I've noticed that after the bean is not accessible any more but the bean's ejbRemove method doesn't get called by the container. Is this the correct behaviour or should the container

Re: [JBoss-user] Session Bean could not passivate Exception

2001-08-01 Thread David Jencks
Judging from the stack trace, you have an instance variable holding a Connection. Connections aren't serializalbe, thus the error on passivation. Don't have a instance variable for your connection: just get it, use it, and close it within one method call. david jencks On 2001.07.31 19:09:55 -04

RE: [JBoss-user] Session Bean could not passivate Exception

2001-07-31 Thread yan fan
t; > Are you trying to pass an object to the client that > is not serializable such > as an Enumeration? Can you post the code? > > -Original Message- > From: yan fan [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 31, 2001 4:10 PM > To: [EMAIL PROTECTED] > S

RE: [JBoss-user] Session Bean could not passivate Exception

2001-07-31 Thread King, Tom
PROTECTED] Subject: [JBoss-user] Session Bean could not passivate Exception Hi! I am sorry , when I use session bean and jdbc , I meet a exception like following: [Container factory] java.rmi.ServerException: Could not passivate; nested exception is: [Container factory

[JBoss-user] Session Bean could not passivate Exception

2001-07-31 Thread yan fan
Hi! I am sorry , when I use session bean and jdbc , I meet a exception like following: [Container factory] java.rmi.ServerException: Could not passivate; nested exception is: [Container factory] java.io.NotSerializableException: org.opentools.minerva.jdbc.xa.wrapper.XAClientConnection [Co

[JBoss-user] session bean cant passivate Exception

2001-07-31 Thread yan fan
__ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.yahoo.com/ ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/li

Re: [JBoss-user] Session - Entity Beans binding

2001-07-17 Thread laurent . broudoux
oudoux/LME/PCC/PHILIPS) Subject: Re: [JBoss-user] Session - Entity Beans binding Classification: Hi, have you done a: http://localhost:8082/InvokeAction//DefaultDomain%3Aservice%3DJNDIView/actio n=list?action=list¶m0%2Bboolean=true what is the entry for EruditReference, what does the entry for the

Re: [JBoss-user] Session - Entity Beans binding

2001-07-17 Thread Burkhard Vogel
- or a ClassNotFoundException? Burkhard - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 16, 2001 4:16 PM Subject: [JBoss-user] Session - Entity Beans binding > Hi to all, > > i'm a newbye to J2EE deployment and i have

Re: [JBoss-user] Session - Entity Beans binding

2001-07-16 Thread laurent . broudoux
PROTECTED]>@lists.sourceforge.net on 16/07/2001 17:17:06 Please respond to [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> cc: (bcc: Laurent Broudoux/LME/PCC/PHILIPS) Subject: Re: [JBoss-user] Session - Entity Beans binding Classification: Add

Re: [JBoss-user] Session - Entity Beans binding

2001-07-16 Thread laurent . broudoux
<[EMAIL PROTECTED]> cc: (bcc: Laurent Broudoux/LME/PCC/PHILIPS) Subject: Re: [JBoss-user] Session - Entity Beans binding Classification: Add tag your entity beanz name. --hermann - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent

Re: [JBoss-user] Session - Entity Beans binding

2001-07-16 Thread Hermann RANGAMANA
Add tag your entity beanz name. --hermann - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 16, 2001 4:16 PM Subject: [JBoss-user] Session - Entity Beans binding > Hi to all, > > i'm a newbye to J2EE deployment and

[JBoss-user] Session - Entity Beans binding

2001-07-16 Thread laurent . broudoux
Hi to all, i'm a newbye to J2EE deployment and i have some problems with session - entity beans bindings. i try to write a session bean which is using an enity bean packaged in a different jar archive. i have definied an ejb-ref in the deployement descriptor (ejb-jar) of my session bean like

RE: [JBoss-user] session statefull destruction

2001-07-10 Thread Bordet, Simone
Hi ! > I 'd like to known how a session statefull is destoyed when a > client disconnect. No. >From JBoss 2.4 you can set a timeout for the life of stateful beans. When it expires the bean is removed. Simon ___ JBoss-user mailing list [EMAIL PROT

[JBoss-user] session statefull destruction

2001-07-10 Thread dominique . paolini
I 'd like to known how a session statefull is destoyed when a client disconnect. thanks NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Une gamme d'outils gratuits et performants à votre service. Web/W

RE: [JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Bordet, Simone
Hi ! > Great! > Thanks...Do we have an approximate ETA for a 2.4 stable release yet? Already out. Donwload it from SourceForge :) Since the minor release is even, then it's a stable release. Simon ___ JBoss-user mailing list [EMAIL PROTECTED] http://

RE: [JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Nanda, Sameer (AT-Atlanta)
11:15 AM To: '[EMAIL PROTECTED]' Subject: RE: [JBoss-user] Session Bean Serialization Fun Hi ! The feature you need is present and configurable in JBoss 2.4. Simon > -Original Message- > From: Nanda, Sameer (AT-Atlanta) [mailto:[EMAIL PROTECTED]] > Sent: venerdì

RE: [JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Bordet, Simone
ginal Message - > From: "Nanda, Sameer (AT-Atlanta)" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Friday, July 06, 2001 4:50 PM > Subject: [JBoss-user] Session Bean Serialization Fun > > > > I am having a problem with the number of serilized

Re: [JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Burkhard Vogel
Hi, is this OS specific? Running on Linux 2.2.16 (SuSE Distribution) there is no such thing as a db/session dir? Burkhard - Original Message - From: "Nanda, Sameer (AT-Atlanta)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 4:50 PM Subject

RE: [JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Bordet, Simone
Hi ! The feature you need is present and configurable in JBoss 2.4. Simon > -Original Message- > From: Nanda, Sameer (AT-Atlanta) [mailto:[EMAIL PROTECTED]] > Sent: venerdì 6 luglio 2001 16:51 > To: [EMAIL PROTECTED] > Subject: [JBoss-user] Session Bean Serialization F

[JBoss-user] Session Bean Serialization Fun

2001-07-06 Thread Nanda, Sameer (AT-Atlanta)
I am having a problem with the number of serilized Session Beans jboss is creating on our server. JBoss seems to be serializing to disk all active Session Beans every 10 minutes but does not remove any. We have typically 50 to 100 serialized every 10 min., causing tens of thousands of files (all i

Re: [JBoss-user] Session bean instead of entity bean

2001-06-24 Thread Zobel, Stefan
Hi Marek, > Using stateless session beans for database querying gave the best > performance results. The worst results I reached with CMP Entity bean. We got the same results (though we did no tests with JBoss). > We have quite complex database entity model (about 200 tables) and we almost > al

[JBoss-user] Session bean instead of entity bean

2001-06-24 Thread Marek Sedliak
Hi all EJB guru's I am currently working on the enterprise application, where the performance is one of the most important factors. I have made some simple performance tests with JBoss-Tomcat installation and I have found this: Using stateless session beans for database querying gave the best pe

[JBoss-user] Session Validation

2001-04-19 Thread Simphoukham, Southin
Hi, Is there a way to check if a user's session is valid in JBoss? Is there a JBossmethod or function that I can call. Outside of that there is always the session time out. Southin ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourcefo

Re: [JBoss-user] session wraps entity pattern in jboss

2001-04-09 Thread danch
This should work. Most likely you need to take a look at your ejb-ref tag. If the beans are in separate jars, you'll also need to do a bit in jboss.xml. Take a look at the manual on the site, there's a section on "Declaring an EJB reference". -danch Rich Warren wrote: > am running jboss 2.1

[JBoss-user] session wraps entity pattern in jboss

2001-04-08 Thread Rich Warren
am running jboss 2.1 w/ embeded tcat and trying to migrate a couple of ejb's over from a weblogic container. I have a session bean that 'wraps' or allocates an entity bean. The session bean is instantiated from a tag extension. The tag extension classes are under the tomcat/webapps dir. So tomcat