Re: [JBoss-user] JBoss Took a Nap!

2004-02-19 Thread Roy Britten
Hi Peter,

I've occasionally seen something similar happen in my
development server (also JBoss 3.2.1 with Jetty). Oddly, hitting
the Enter key while in the console frees it up again (and
releases a backlog of Log4j messages from on-hold requests).

No idea why it happens, and cannot replicate at will. It doesn't
appear to be using any significant number of CPU cycles during
that time, and with little activity on a server that is usually
only up for a few hours I cannot imagine that there would have
been any significant GC activity.

Cheers,
Roy.

On Thu, 19 Feb 2004 at 10:23am, Peter Luttrell wrote:

 We experienced an odd problem last night in one of our
 production servers running JBoss3.2.1 (with Jetty). The entire
 things simply stopped responding for ~3 minutes! It didn't
 complete any of it's web requests nor write anything to the
 log for the entire period - something i've never seen before.

 The only thing that we can think of is that the VM was doing
 GC for that period. Does anyone have any other ideas on what
 could have caused the little nap it took?

My opinions, not my employer's.

-- 
Roy Britten
National Institute of Water and Atmospheric Research
PO Box 8602, Christchurch, New Zealand
P: +64-3-343-7818
F: +64-3-348-5548
http://www.niwa.co.nz


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] JBoss Took a Nap!

2004-02-19 Thread Roy Britten
Nice. Thanks Adrian.

On Fri, 20 Feb 2004 at 5:37am, Adrian Brock wrote:

 Right click the title bar on your console and turn off
 quick edit mode.

-- 
Usual disclaimer.

Roy Britten
National Institute of Water and Atmospheric Research
PO Box 8602, Christchurch, New Zealand
P: +64-3-343-7818
F: +64-3-348-5548
http://www.niwa.co.nz


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] USING FORUMS INSTEAD OF LISTS

2004-02-11 Thread Roy Britten
Hi,

I didn't see this thread for a couple of days; it was buried in
hundreds of forum postings that read like:

 Subject: [JBoss-user] [HTTPD, Servlets  JSP] - Re: configuring jboss-3.2.3 for 
 servlet

 View the original post :
 http://www.jboss.org/index.html?module=bbop=viewtopicp=3820946#3820946

 Reply to the post :
 http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3820946

 LOL

As others have already noted, the current model breaks MUA
threading and (unless you have the luxury of a high resolution
screen) gives subject headings that display as (random example):

[JBoss-user] [Installation  Configuration] - Isap

Sadly, I barely have time to skim relevant postings (if I can
find them now), let alone write some better code to manage
this problem. So, sadly I can't offer a solution; I merely note
that moving the list away from the successful model used for
other open projects to one that better suits the JBoss
developers has made it pretty much unusable for many of us.

Cheers all,
Roy.

On Sun, 8 Feb 2004 at 12:15pm, Rupp, Heiko wrote:

 Marc,
  ML at the moment have the advantage for me that I can
 read/answer them offline (e.g. while being on a plane or at
 the airport. But then, I am from Old Europe (TM) :-)

My opinions, not my employer's.

-- 
Roy Britten
National Institute of Water and Atmospheric Research
PO Box 8602, Christchurch, New Zealand
P: +64-3-343-7818
F: +64-3-348-5548
http://www.niwa.co.nz


---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] mailing list and forums

2004-02-10 Thread Roy Britten
Agreed. The list has become flooded with unstructured
context-less content and is practically unusable.

Roy.

On Tue, 10 Feb 2004 at 2:42pm, Vladyslav Kosulin wrote:

 Hi all,
 After we united forums with mailing list, the mailing list
 became almost unreadable. No quotes, not tree structures. It
 is very hard to follow discussions for those who use mail
 clients.

 Is it possible to modify the forum software so it preserves
 the traditional mailing list attributes, such as quote and
 correct header info for reply?

My opinions, not my employer's.

-- 
Roy Britten
National Institute of Water and Atmospheric Research
PO Box 8602, Christchurch, New Zealand
P: +64-3-343-7818
F: +64-3-348-5548
http://www.niwa.co.nz


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Unable to passivate due to ctx lock

2004-02-04 Thread Roy Britten
Hi,

I've had a search through this list's archives, and haven't found a
definite resolution to this issue.

We're seeing this warning on a very low-traffic site, and while it hasn't
caused any significant issues so far I don't want to run into the memory
leakage problems reported elsewhere.

A rummage through the (v3.2.1) source code has caused me to post the
following, in the hope that someone more familiar with the source can
comment:

BeanLockManager.getLock() is documented with the warning:
* WARNING: All access to this method MUST have an equivalent removeLockRef
* cleanup call, or this will create a leak in the map,

Now, JDBCStoreManager.fieldStateEventCallback() and
JDBCStoreManager.getOptimisticLock() both call BeanLockManager.getLock()
*without* calling BeanLockManager.removeLockRef(); instead they call
removeRef() directly on the lock. Is it possible that this is causing the
map of locks in the lock manager to grow?

Someone more familiar with the processes and server state when these
methods are called may be able to assert whether or not this is
in fact the case. Anyone?

Cheers,
Roy.

On Wed, 4 Feb 2004 at 3:20pm, Marek Lange wrote:

 After switching from 3.0.6 to 3.2.3 we experience warning messages in
 our logfiles:

 WARN [org.jboss.ejb.plugins.AbstractInstanceCache] Unable to passivate
 due to ctx lock, id=127.0.0.1:1099:dq6o9s7q-x

-- 
Roy Britten
National Institute of Water and Atmospheric Research
PO Box 8602, Christchurch, New Zealand
P: +64-3-343-7818
F: +64-3-348-5548
http://www.niwa.co.nz


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Informix datasource not working in Jboss 3.2.3

2004-01-30 Thread Roy Britten
Hi Martin,

I recently had a similar problem; it stemmed from, if I recall
correctly, a createStatement() call that was returning a
ResultSet that didn't have the properties specified in the
JavaDocs [perhaps one day we'll have an Informix JDBC driver
that meets the JDBC specs].

Using createStatement(int resultSetType, int resultSetConcurrency)
did the trick in that case.

Cheers,
Roy.

On Thursday, 29 January 2004 at 11:13am, Martin Thomas wrote:

 We have been successfully using Jboss version 3.2.1 and a datasource to
 Informix 9.3. Following upgrading Jboss to 3.2.3 we now get the
 following error:

 SQLException: Read only mode not supported

 Is there a change in the way that datasources are obtained between these
 2 versions and if so how can I specify the connection type to be read
 and write.

My opinions, not my employer's.

-- 
Roy Britten
National Institute of Water and Atmospheric Research
PO Box 8602, Christchurch, New Zealand
P: +64-3-343-7818
F: +64-3-348-5548
http://www.niwa.co.nz


---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user