RE: [JBoss-user] July 2003 news

2003-08-08 Thread Schnitzer, Jeff
 From: Bill Burke [mailto:[EMAIL PROTECTED]
 
 JBoss Group is committed to bringing in as many
 developers as possible that want to make their living on
 open-source.

This is the kind of thing I like to hear, but I'm having a difficult
time reconciling that with the fact that there are now several fewer
developers making contributions to JBoss (the code, not the LLC).  Is
anyone who contributes to a competing project going to get kicked out of
the clubhouse?

Jeff Schnitzer
[EMAIL PROTECTED]
The Sims Online


---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-dev] Re: [JBoss-user] July 2003 news

2003-08-08 Thread robert
 Yes, I'd like to know as well.  We will address this issues if it is
 so.


GPL licensed files
#grep -R under GPL *
jetty/src/main/org/jboss/jetty/JBossWebApplicationContext.java: *
Distributable under GPL license.
jetty/src/main/org/jboss/jetty/Jetty.java: * Distributable under GPL license.
jetty/src/main/org/jboss/jetty/JettyMBean.java: * Distributable under GPL
license.
jetty/src/main/org/jboss/jetty/JettyService.java: * Distributable under GPL
license.
jetty/src/main/org/jboss/jetty/log/JBossLogSink.java: * Distributable under
GPL license.
jetty/src/main/org/jboss/jetty/security/JBossUserRealm.java: * Distributable
under GPL license.
(


 Regards,

 Bill

 
 Bill Burke
 Chief Architect
 JBoss Group, LLC
 

 Cast your vote for JBoss as JDJ Best App Server

 http://www.sys-con.com/java/readerschoice2003/vote.cfm


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of
 Brian Wallis
 Sent: Wednesday, August 06, 2003 7:52 PM
 To: [EMAIL PROTECTED]; Vladyslav Kosulin
 Cc: [EMAIL PROTECTED]
 Subject: [JBoss-dev] Re: [JBoss-user] July 2003 news


 On Thu, 7 Aug 2003 05:15, Vladyslav Kosulin wrote:
  P.S. Do you know that there are java source files licensed under GPL
  (not LGPL) in the latest JBoss 3.2.1 and 3.2.2 distributions and
  even in the CVS HEAD? Are you surprised?

 This statement worries me.

 Vlad, can you name one or more specific files that are GPL rather than
 LGPL?

 If these do exist what is the plan to rectify what to me seems to be a
 serious
 problem. Something like this could prevent me from using JBoss at all.
 This
 is serious if true!

 brian wallis...



 ---
 This SF.Net email sponsored by: Free pre-built ASP.NET sites including
 Data Reports, E-commerce, Portals, and Forums are available now.
 Download today and enter to win an XBOX or Visual Studio .NET.
 http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072
 303_01/01
 ___
 JBoss-Development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development



 ---
 This SF.Net email sponsored by: Free pre-built ASP.NET sites including
 Data Reports, E-commerce, Portals, and Forums are available now.
 Download today and enter to win an XBOX or Visual Studio .NET.
 http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user





---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] JMS question

2003-08-08 Thread Adrian Brock
What tx attribute do you have?
If there is no EJB tx, the message is acknowledged before it hits
onMessage()
You should not throw exceptions from onMessage() it is part of the JMS
spec not the EJB spec.

Regards,
Adrian

On Thu, 2003-08-07 at 16:11, Magesh Prabhu wrote:
 Hi Guys,
 
 I've configured JMS to use JDBC persistence and I send JMS messages in 
 DUPS_OK_ACKNOWLEDGE mode to make sure that the messages are guaranteed. I use the 
 following code to enforce this when I send the message.
 
 queueConnection.createQueueSession(true, Session.DUPS_OK_ACKNOWLEDGE);
 queueSender.setDeliveryMode(DeliveryMode.PERSISTENT);
 
 The deployment descriptor for my Message Driven Bean is as follows:
 message-driven 
   description![CDATA[This is reponsible for prioritising requests and dispatching 
 them accordingly.]]/description
   ejb-nameQueueDispatcherMDBBean/ejb-name
   
 ejb-classcom.pindartech.imageprocessing.manager.queuemanager.QueueDispatcherBean/ejb-class
   message-selector/message-selector
   transaction-typeContainer/transaction-type
   acknowledge-modeDups-ok-acknowledge/acknowledge-mode
   message-driven-destination
  destination-typejavax.jms.Queue/destination-type
   /message-driven-destination
 /message-driven
 
 I have absolutely no complains in this configuration and it works fine when things 
 happen normally. But when I abruptly bounce JBoss using (Ctrl + C) and restart it 
 again, some times (not always), I tend to loose one JMS message per abrupt restart. 
 Since I've configured in DUPS_OK_ACKNOWLEDGE mode, I expect app server to resend the 
 notification even in exceptional scenarios. In my MDB, I do the following.
 
 public void onMessage(javax.jms.Message message) {
 
   try {
 
  // do the business...
 
   } catch(Exception e) {
  this.messageContext.setRollbackOnly();
   }
 
 }
 
 Should I propagate the exception up the onMessage() call instead of just rolling 
 back the Transaction in my MDB ?
 Is there another way to shutdown JBoss other then (Ctrl + C) so that abnormal 
 scenarios in my application does not happen ?
 
 Your advice is much appreciated. Thanks in advance,
 Magesh
 
 
 
 **
 This email and its attachments are intended for the above 
 named only and may be confidential.  If they have come to 
 you in error, you must take no action based on them, nor 
 must you copy or show them to anyone; please reply to this 
 email and highlight the error.
 Security Warning: Please note that this email has been 
 created in the knowledge that the internet email is not a 
 100% secure communications medium.  We advise that you 
 understand and observe this lack of security when emailing us.
 Viruses:  Although we have taken steps to ensure that this 
 email and attachments are free from any virus, we advise 
 that in keeping with good computing practice the recipient 
 should ensure they are actually virus free.
 If you have received this email in error please notify:
 [EMAIL PROTECTED]
 **
 
 
 
 ---
 This SF.Net email sponsored by: Free pre-built ASP.NET sites including
 Data Reports, E-commerce, Portals, and Forums are available now.
 Download today and enter to win an XBOX or Visual Studio .NET.
 http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] July 2003 news

2003-08-08 Thread Juha Lindfors
On Wed, 6 Aug 2003, Andreas Kuckartz wrote:

  FYI, Marc was not angry and he did not make the decision alone. All the
  project administrators agreed to it. Ad hominem attacks will get you
  nowhere.

 I would like to have a list of these people.

Project administrators are listed at the sourceforge project page.

-- Juha



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Deploying an MBean in a cluster

2003-08-08 Thread Mauricio De Diana
Thanks, Kevin. Thanks, Scott.

I think I´ll have to figure out a simpler way to have
the MBean state synchronized. Maybe I can store the
MBean state in an EJB (statefull session bean or an
entity bean).

Thanks,

Mauricio De Diana

 --- Scott M Stark [EMAIL PROTECTED] escreveu: 
 Yes, mbeans dropped into farm are just independently
 distributed instances. They 
 wouold have to be XMBeans with a clustered
 persistence manager with custom 
 interceptors to snych changes.
 
 -- 
 
 Scott Stark
 Chief Technology Officer
 JBoss Group, LLC
 
 
 Mauricio De Diana wrote:
 
  Thanks, Kevin. Just upgrading my JBoss has solved
 the
  farm problem.
  
  But now I have another one:
  I copy a sar file (with a jboss-service.xml
 inside) to
  the farm directory and it is correctly deployed in
 the
  nodes of my cluster.
  Then I use the jmx-console in node 1 to set an
 MBean
  attribute.
  When I go to the jmx-console in node 2, the
 attribute
  is still with the old value. I was expecting that
 the
  state of the MBean was updated in node 2 too.
  Is it the expected behavior?
  
  Thanks in advance,
  
  Mauricio De Diana
  
 
 
 
 
 

---
 This SF.Net email sponsored by: Free pre-built
 ASP.NET sites including
 Data Reports, E-commerce, Portals, and Forums are
 available now.
 Download today and enter to win an XBOX or Visual
 Studio .NET.

http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]

https://lists.sourceforge.net/lists/listinfo/jboss-user 

___
Conheça o novo Cadê? - Mais rápido, mais fácil e mais preciso.
Toda a web, 42 milhões de páginas brasileiras e nova busca por imagens!
http://www.cade.com.br


---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] JMS question

2003-08-08 Thread Magesh Prabhu
Thanks for your comments,

I'm still working on this issue and I guess I'm consuming an Exception which is why 
I'm missing out this JMS message.

On 8/7/03 4:57 PM, [EMAIL PROTECTED] wrote:

On the sending side, the fact that you use a transacted session (true 
for
the first argument of the createQueueSession) makes the second arguments
(Session.DUPS_OK_ACKNOWLEDGE) useless. This argument is ignored in 
case of
transacted session. The message is guaranteed to be delivered as 
soon as
your client sending the message will do a successful commit on the
QueueSession.

On the MDB side, it is the same thing. Since you use Container managed
transaction, the acknowledge-mode is ignored. I do believe that if 
onMessage
is throwing an exception or if setRollbackOnly is called, the message 
will
be redelivered (according to EJB spec both should behave exactly 
the same
way).

So, for my point of view and according to the description of your 
problem,
either there is more configuration to do on the JDBC persistence 
side to
make sure that no messages can be lost either there is a bug somewhere.
Which database are you using through JDBC for the JMS message persistence?

Thomas Cherel


-Original Message-
From: Magesh Prabhu [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 07, 2003 11:11 AM
To: jboss-user
Subject: [JBoss-user] JMS question

Hi Guys,

I've configured JMS to use JDBC persistence and I send JMS messages 
in
DUPS_OK_ACKNOWLEDGE mode to make sure that the messages are guaranteed. 
I
use the following code to enforce this when I send the message.

queueConnection.createQueueSession(true, Session.DUPS_OK_ACKNOWLEDGE);
queueSender.setDeliveryMode(DeliveryMode.PERSISTENT);

The deployment descriptor for my Message Driven Bean is as follows:
message-driven 
  description![CDATA[This is reponsible for prioritising requests 
and
dispatching them accordingly.]]/description
  ejb-nameQueueDispatcherMDBBean/ejb-name
 
ejb-classcom.pindartech.imageprocessing.manager.queuemanager.QueueDispatch
erBean/ejb-class
  message-selector/message-selector
  transaction-typeContainer/transaction-type
  acknowledge-modeDups-ok-acknowledge/acknowledge-mode
  message-driven-destination
 destination-typejavax.jms.Queue/destination-type
  /message-driven-destination
/message-driven

I have absolutely no complains in this configuration and it works 
fine when
things happen normally. But when I abruptly bounce JBoss using (Ctrl 
+ C)
and restart it again, some times (not always), I tend to loose one 
JMS
message per abrupt restart. Since I've configured in DUPS_OK_ACKNOWLEDGE
mode, I expect app server to resend the notification even in exceptional
scenarios. In my MDB, I do the following.

public void onMessage(javax.jms.Message message) {

  try {

 // do the business...

  } catch(Exception e) {
 this.messageContext.setRollbackOnly();
  }

}

Should I propagate the exception up the onMessage() call instead 
of just
rolling back the Transaction in my MDB ?
Is there another way to shutdown JBoss other then (Ctrl + C) so that
abnormal scenarios in my application does not happen ?

Your advice is much appreciated. Thanks in advance,
Magesh



**
This email and its attachments are intended for the above 
named only and may be confidential.  If they have come to 
you in error, you must take no action based on them, nor 
must you copy or show them to anyone; please reply to this 
email and highlight the error.
Security Warning: Please note that this email has been 
created in the knowledge that the internet email is not a 
100% secure communications medium.  We advise that you 
understand and observe this lack of security when emailing us.
Viruses:  Although we have taken steps to ensure that this 
email and attachments are free from any virus, we advise 
that in keeping with good computing practice the recipient 
should ensure they are actually virus free.
If you have received this email in error please notify:
[EMAIL PROTECTED]
**



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___

Re: [JBoss-user] could not run Hypersonyc database manager

2003-08-08 Thread Marcos Dione

 On Thursday, Aug 7, 2003, at 19:25 Europe/Stockholm, Marcos Dione wrote:

 a) does anybody know what's wrong and how to fix it?

 Yes

  ... and the solution is ...?

-- 
#! /bin/bash

echo [EMAIL PROTECTED],vialibre}.org,hal.famaf.unc.edu}.ar




---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] MOD_JK2 PROBLEM - SETTING UP STICKY SESSIONS

2003-08-08 Thread Surajit Bhattacharjee
Hi Vlad!

I got the build thru, but I am still not getting stick session behavior.
Will I need to do some additional config ?

httpd -l does NOT show prefork.c anymore (below is the listing):

home/surajit/sms/lb/apache/apache/new-install/binhttpd -l
Compiled in modules:
  core.c
  mod_access.c
  mod_auth.c
  mod_include.c
  mod_log_config.c
  mod_env.c
  mod_setenvif.c
  worker.c
  http_core.c
  mod_mime.c
  mod_status.c
  mod_autoindex.c
  mod_asis.c
  mod_cgid.c
  mod_negotiation.c
  mod_dir.c
  mod_imap.c
  mod_actions.c
  mod_userdir.c
  mod_alias.c
  mod_so.c
/home/surajit/sms/lb/apache/apache/new-install/bin

Appreciate your help!

Best Regards,
Surajit

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Surajit
Bhattacharjee
Sent: Friday, August 08, 2003 12:57 PM
To: [EMAIL PROTECTED]
Subject: RE: [JBoss-user] MOD_JK2 PROBLEM - SETTING UP STICKY SESSIONS


Hi Vlad!

I tried to build Apache with 'MPM worker' on Solaris but got an error.

I ran the following to build:
1.
./configure --prefix=/home/surajit/sms/lb/apache/apache/new-build --with-mpm
=worker
2. make
3. make install

Now, the build fails at step 2 with the following messages:

--
ld: fatal: symbol `ap_mpm_pod_open' is multiply-defined:
(file server/mpm/worker/.libs/libworker.al(pod.lo) and file
server/.libs/libmain.al(mpm_common.lo));
ld: fatal: symbol `ap_mpm_pod_signal' is multiply-defined:
(file server/mpm/worker/.libs/libworker.al(pod.lo) and file
server/.libs/libmain.al(mpm_common.lo));
ld: fatal: symbol `ap_mpm_pod_close' is multiply-defined:
(file server/mpm/worker/.libs/libworker.al(pod.lo) and file
server/.libs/libmain.al(mpm_common.lo));
ld: fatal: symbol `ap_mpm_pod_killpg' is multiply-defined:
(file server/mpm/worker/.libs/libworker.al(pod.lo) and file
server/.libs/libmain.al(mpm_common.lo));
ld: fatal: symbol `ap_mpm_pod_check' is multiply-defined:
(file server/mpm/worker/.libs/libworker.al(pod.lo) and file
server/.libs/libmain.al(mpm_common.lo));
ld: fatal: File processing errors. No output written to .libs/httpd
collect2: ld returned 1 exit status
*** Error code 1
make: Fatal error: Command failed for target `httpd'
Current working directory /home/surajit/sms/lb/apache/apache/httpd-2.0.43
*** Error code 1
make: Fatal error: Command failed for target `all-recursive'
--

AM I DOING SOMETHING WRONG HERE ? I also read
http://www.mail-archive.com/[EMAIL PROTECTED]/msg97888.html and
it says the the MPM worker build for Apache 2 does not go thru on Solaris.
Is this right ?

Any help will be deeply appreciated!!!

Regards,
Surajit


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Surajit
Bhattacharjee
Sent: Thursday, August 07, 2003 10:38 PM
To: [EMAIL PROTECTED]
Subject: RE: [JBoss-user] MOD_JK2 PROBLEM - SETTING UP STICKY SESSIONS


Hi Vlad!

Thanks a lot! I did a httpd -l and found prefork.c in it. I will rebuild
Apache as suggested and try - but before I do that, I just wanted to
reiterate that this is mod_jk2 and NOT mod_jk. Would like to confirm
with you that rebuilding Apache ALONE will do the trick. Do I need
to build MOD_JK2 as well ?

Thanks once again!

Best Regards,
Surajit

---
I guess you have the prefork MPM enabled in your Apache (this is default
MPM for UNIX). It does not work with mod_jk sticky sessions.
Please chech that you do not use prefork MPM and use the worker MPM in
your Apache installation:
httpd -l
If you see prefork.c you should build Apache with worker MPM enabled
instead of default prefork using
configure --with-mpm=worker ...

Vlad



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user





---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user





---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter 

[JBoss-user] Classloaders in JBoss

2003-08-08 Thread Klaus Richarz
Hello,

I'm having a problem in using JBoss and it's classloaders.

I'm using the jakarta digester and java reflection a lot. When I try to instanciate 
classes with Class.forName(...) I always get a ClassNotFoundException. But those 
classes actually are in the deployed web archive (testet both in the WEB-INF/classes 
directory or packed in a jar file in the WEB-INF/lib directory).

Any help would be appreciated.

Thank in advance,

  Klaus Richarz
  Hamburg, Germany


---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] Exception from JBoss 3.2.2RC2

2003-08-08 Thread Jon Barnett
It's a fault in the IBM LinkedList implementation.

Regards,

JonB

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Rafal
 Kedziorski
 Sent: Saturday, 9 August 2003 1:02 AM
 To: [EMAIL PROTECTED]
 Subject: [JBoss-user] Exception from JBoss 3.2.2RC2


 hi,

 what menas this Expcetion:

 java.lang.NullPointerException
   at java.util.LinkedList$ListItr.previous(LinkedList.java:523)
   at
 org.jboss.resource.connectionmanager.InternalManagedConnectionPool
 .removeTimedOut(InternalManagedConnectionPool.java:299)
   at
 org.jboss.resource.connectionmanager.IdleRemover$1.run(IdleRemover
 .java:70)
   at java.lang.Thread.run(Thread.java:568)
 2003-08-08 16:34:55,490
 WARN  [org.jboss.resource.connectionmanager.IdleRemover] run:
IdleRemover
 ignored unexpected runtime exception
 java.lang.NullPointerException
   at java.util.LinkedList$ListItr.previous(LinkedList.java:523)
   at
 org.jboss.resource.connectionmanager.InternalManagedConnectionPool
 .removeTimedOut(InternalManagedConnectionPool.java:299)
   at
 org.jboss.resource.connectionmanager.IdleRemover$1.run(IdleRemover
 .java:70)
   at java.lang.Thread.run(Thread.java:568)
 2003-08-08 16:42:25,500
 WARN  [org.jboss.resource.connectionmanager.IdleRemover] run:
IdleRemover
 ignored unexpected runtime exception
 java.lang.NullPointerException
   at java.util.LinkedList$ListItr.previous(LinkedList.java:523)
   at
 org.jboss.resource.connectionmanager.InternalManagedConnectionPool
 .removeTimedOut(InternalManagedConnectionPool.java:299)
   at
 org.jboss.resource.connectionmanager.IdleRemover$1.run(IdleRemover
 .java:70)
   at java.lang.Thread.run(Thread.java:568)
 2003-08-08 16:49:55,510
 WARN  [org.jboss.resource.connectionmanager.IdleRemover] run:
IdleRemover
 ignored unexpected runtime exception
 java.lang.NullPointerException
   at java.util.LinkedList$ListItr.previous(LinkedList.java:523)
   at
 org.jboss.resource.connectionmanager.InternalManagedConnectionPool
 .removeTimedOut(InternalManagedConnectionPool.java:299)
   at
 org.jboss.resource.connectionmanager.IdleRemover$1.run(IdleRemover
 .java:70)
   at java.lang.Thread.run(Thread.java:568)
 2003-08-08 16:57:25,523
 WARN  [org.jboss.resource.connectionmanager.IdleRemover] run:
IdleRemover
 ignored unexpected runtime exception
 java.lang.NullPointerException
   at java.util.LinkedList$ListItr.previous(LinkedList.java:523)
   at
 org.jboss.resource.connectionmanager.InternalManagedConnectionPool
 .removeTimedOut(InternalManagedConnectionPool.java:299)
   at
 org.jboss.resource.connectionmanager.IdleRemover$1.run(IdleRemover
 .java:70)
   at java.lang.Thread.run(Thread.java:568)

 We are working with JBoss 3.2.2RC2 and IBM 1.4.1 unter Red Hat.


 Best Regards,
 Rafal



 ---
 This SF.Net email sponsored by: Free pre-built ASP.NET sites including
 Data Reports, E-commerce, Portals, and Forums are available now.
 Download today and enter to win an XBOX or Visual Studio .NET.
 http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072
303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


smime.p7s
Description: S/MIME cryptographic signature


Re: [JBoss-user] MOD_JK2 PROBLEM - SETTING UP STICKY SESSIONS

2003-08-08 Thread Vladyslav Kosulin
Surajit Bhattacharjee wrote:

Hi Vlad!

Thanks a lot! I did a httpd -l and found prefork.c in it. I will rebuild
Apache as suggested and try - but before I do that, I just wanted to 
reiterate that this is mod_jk2 and NOT mod_jk. Would like to confirm 
with you that rebuilding Apache ALONE will do the trick. Do I need
to build MOD_JK2 as well ?
Yes I meant mod_jk2 (as well as mod_jk). And I rebuild mod_jk2 also, but 
don't think this is required.

Vlad



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Recent CVS removals

2003-08-08 Thread Brian Wallis
On Thu, 7 Aug 2003 08:49, Bill Burke wrote:
 2. More importantly, we have learned that they have forked JBoss.  We also
 believe they are preparing to submit it, or some derivation, to the new
 Apache Geronimo project which would violate copyright and LGPL.  Our proof?

 http://sourceforge.net/projects/elba

I had a look (at one randomly selected file) and it is a direct copy with the 
line JBoss, the OpenSource EJB server removed from the top.

Shit. Back to the unix wars of my youth. And that is the thing that really 
damaged unix and gave MS an unassailable head start.



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] OT: Precompile JSPs

2003-08-08 Thread Bruyn, Bill
I know this is a little off-topic, but I saw a few posts on the subject the
other day, so I thought I'd give it a try.

With even this simple ant target:

  target name=compile
jspc destdir=.
  srcdir=.
  package=foo.bar
  verbose=9
  include name=test*.jsp /   
/jspc
  /target

I'm unable to get past the following error (run with -debug).  Has anyone
seen this, or know what my problem is?  Any feedback greatly appreciated.

Bill


C:\Temp\testcompileant -debug compile
Apache Ant version 1.5.1 compiled on October 2 2002
Buildfile: build.xml
Detected Java version: 1.4 in: c:\progra~1\java\j2sdk1.4.1_01\jre
Detected OS: Windows 2000
 +User task: propertyfile
org.apache.tools.ant.taskdefs.optional.PropertyFile
 +User task: vsscheckin
org.apache.tools.ant.taskdefs.optional.vss.MSVSSCHECKIN
 +User task: sql org.apache.tools.ant.taskdefs.SQLExec
 +User task: cvspass org.apache.tools.ant.taskdefs.CVSPass
 +User task: p4reopen
org.apache.tools.ant.taskdefs.optional.perforce.P4Reopen
 +User task: csc org.apache.tools.ant.taskdefs.optional.dotnet.CSharp
 +User task: dirname org.apache.tools.ant.taskdefs.Dirname
 +User task: wlrun org.apache.tools.ant.taskdefs.optional.ejb.WLRun
 +User task: p4label
org.apache.tools.ant.taskdefs.optional.perforce.P4Label
 +User task: p4revert
org.apache.tools.ant.taskdefs.optional.perforce.P4Revert
 +User task: replaceregexp
org.apache.tools.ant.taskdefs.optional.ReplaceRegExp
 +User task: get org.apache.tools.ant.taskdefs.Get
 +User task: jjtree org.apache.tools.ant.taskdefs.optional.javacc.JJTree
 +User task: sleep org.apache.tools.ant.taskdefs.Sleep
 +User task: jarlib-display
org.apache.tools.ant.taskdefs.optional.extension.JarLibDisplayTask
 +User task: dependset org.apache.tools.ant.taskdefs.DependSet
 +User task: zip org.apache.tools.ant.taskdefs.Zip
 +User task: patch org.apache.tools.ant.taskdefs.Patch
 +User task: jspc org.apache.tools.ant.taskdefs.optional.jsp.JspC
 +User task: style org.apache.tools.ant.taskdefs.XSLTProcess
 +User task: test org.apache.tools.ant.taskdefs.optional.Test
 +User task: tstamp org.apache.tools.ant.taskdefs.Tstamp
 +User task: unwar org.apache.tools.ant.taskdefs.Expand
 +User task: vsshistory
org.apache.tools.ant.taskdefs.optional.vss.MSVSSHISTORY
 +User task: icontract org.apache.tools.ant.taskdefs.optional.IContract
 +User task: cvschangelog
org.apache.tools.ant.taskdefs.cvslib.ChangeLogTask
 +User task: p4submit
org.apache.tools.ant.taskdefs.optional.perforce.P4Submit
 +User task: ccmcheckin
org.apache.tools.ant.taskdefs.optional.ccm.CCMCheckin
 +User task: p4change
org.apache.tools.ant.taskdefs.optional.perforce.P4Change
 +User task: bzip2 org.apache.tools.ant.taskdefs.BZip2
 +User task: p4delete
org.apache.tools.ant.taskdefs.optional.perforce.P4Delete
 +User task: vssadd org.apache.tools.ant.taskdefs.optional.vss.MSVSSADD
 +User task: javadoc org.apache.tools.ant.taskdefs.Javadoc
 +User task: translate
org.apache.tools.ant.taskdefs.optional.i18n.Translate
 +User task: signjar org.apache.tools.ant.taskdefs.SignJar
 +User task: vajload
org.apache.tools.ant.taskdefs.optional.ide.VAJLoadProjects
 +User task: jarlib-available
org.apache.tools.ant.taskdefs.optional.extension.JarLibAvailableTask
 +User task: WsdlToDotnet
org.apache.tools.ant.taskdefs.optional.dotnet.WsdlToDotnet
 +User task: buildnumber org.apache.tools.ant.taskdefs.BuildNumber
 +User task: jpcovmerge
org.apache.tools.ant.taskdefs.optional.sitraka.CovMerge
 +User task: ejbjar org.apache.tools.ant.taskdefs.optional.ejb.EjbJar
 +User task: war org.apache.tools.ant.taskdefs.War
Could not load a dependent class (com/starbase/starteam/Item) for task
stlist
 +User task: rename org.apache.tools.ant.taskdefs.Rename
 +User task: sequential org.apache.tools.ant.taskdefs.Sequential
 +User task: serverdeploy
org.apache.tools.ant.taskdefs.optional.j2ee.ServerDeploy
 +User task: property org.apache.tools.ant.taskdefs.Property
 +User task: move org.apache.tools.ant.taskdefs.Move
 +User task: copydir org.apache.tools.ant.taskdefs.Copydir
 +User task: cccheckin
org.apache.tools.ant.taskdefs.optional.clearcase.CCCheckin
 +User task: wljspc org.apache.tools.ant.taskdefs.optional.jsp.WLJspc
 +User task: fixcrlf org.apache.tools.ant.taskdefs.FixCRLF
 +User task: telnet
org.apache.tools.ant.taskdefs.optional.net.TelnetTask
 +User task: sosget org.apache.tools.ant.taskdefs.optional.sos.SOSGet
 +User task: pathconvert org.apache.tools.ant.taskdefs.PathConvert
 +User task: record org.apache.tools.ant.taskdefs.Recorder
 +User task: p4sync
org.apache.tools.ant.taskdefs.optional.perforce.P4Sync
 +User task: exec org.apache.tools.ant.taskdefs.ExecTask
 +User task: p4edit

Re: [JBoss-user] could not run Hypersonyc database manager

2003-08-08 Thread viktor
On Thursday, Aug 7, 2003, at 19:25 Europe/Stockholm, Marcos Dione wrote:

a) does anybody know what's wrong and how to fix it?
Yes

b) is there a
better searcher for this mailinglist? (hmmm, maybe google with site:)
No

c)
is there any place where I can download the entire archive for local
searching? if not, does anyone have a (as complete as possible) archive
of this list that could handle it to me?
Talk to the sf.net beancounters - I am willing to bet that they can 
help You ... if  show some ...

xo



---
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] pls. help me

2003-08-08 Thread maryamacha
My Dear,

A Very Good day to you. 

This letter may come to you with lot of surprise but patiently go through it for your 
kind understanding.I got your contact from a discrete search for a trusted and 
reliable foreigner or company who can be of this great help to me and my family. 

I am Mrs Maryam Abacha, the wife of the former Nigerian Head of State who died on the 
sit as a result of cadiac arrest in 1998. Following the sudden death of my husband 
General Sani Abacha the late Former Head of State of Nigeria in 1998,I have been 
thrown into a state of utter confusion, frustration and hopelessness by the present 
civilian administration,I have been subjected to physical and psychological torture by 
the security agents in the country. 

As a widow that is so traumatized, I have lost confidence with anybody within the 
country. 

You must have heard over the media reports and the internet on the recovery of various 
huge sums of money deposited by my husband in different security firms abroad,some 
companies willingly give up their secrets and disclosed our money confidently lodged 
there or many outright blackmail. 

In fact the total sum discovered by the Government so far is in the tune of 
$700.Million dollars. And they are not relenting to make me poor for life. I will give 
you more information as to this regard as soon as you reply. 

I repose great confidence in you hence my approach to you due to security network 
placed on me day to day affairs I cannot afford to visit the embassy so that is why I 
decided to contact you and I hope you will not betray my confidence in you. I have 
deposited the sum of US$75 million dollars with a security firmabroad whose name is 
withheld for now until we open communication. 

I shall be grateful if you could receive this fund into your account for 
safekeeping.This arrangement is known to you and my family lawyer who shall deal 
directly with you as I am still under house arrest. I am seriously considering to 
settle down abroad as soon as this fund get into your account so that I can start all 
over again if only you wish, but if it is possible, just help me in diverting this 
funds into your bank account which will accrue you 20% of this fund. Please honesty is 
the watchword in this transaction. I am still under house arrest been monitored by the 
security agents day-in day-out.

And should you accept my terms, kindly send me an email signifying your 
interest to help me out through my above email box  as this is only safe for me now so 
that we can commence communication immediately. And upon receipt of your message of 
interest, I shall give you a more detailed picture of things. 

In case you don't accept please do not let me out to the security as I am giving you 
this information in total trust and confidence. I will greatly appreciate if you 
accept my proposal in good faith. Please expedite action. 


Sincerely Yours 

Hajia Maryam Abacha.