Re: [JBoss-user] Jetty Integration

2002-09-21 Thread Jules Gosnell
Peter, I have just posted a response to this in the HTTP/Web forum. We think we have a fix. You will need Jetty-4.1.0RC7 - hopefully out today. We would appreciate your confirmation that this fixes the problem. Jules Luttrell, Peter wrote: I just switched from using Tomcat to Jetty with

[JBoss-user] Classloader issue with Jboss 3.02 and Struts

2002-09-21 Thread manish sharan
Hi all, I am trying to port my application from Jboss 2.4.4+ Catalina+ MVCSoft Persisnstence Manaager to Jboss 3.02. The following problem happens with default(Jetty) web container as well as when using Tomcat 4.03( from instructions in forums) The problem is that I can only partially

[JBoss-user] Help on Linux Msg Throughput vs. Window's Msg Throughput

2002-09-21 Thread Sheng Zou
Title: Help on Linux Msg Throughput vs. Window's Msg Throughput Hi, I found out that message throughput on linux is about one magnitude slower that that on windows. This result holds for both JBoss2.4.x and JBoss3.0.0 (where JBoss3.0.0 has TCP_NODELAY enabled by default). This result also

[JBoss-user] Autoreply: JBoss-user digest, Vol 1 #3072 - 1 msg

2002-09-21 Thread stefan . billeb
Laut Insolvenzbeschluss vom 01. September 2002 wurde der Geschäftsbetrieb der Telesens KSCL AG eingestellt. Bei Fragen wenden Sie sich bitte an den Insolvenzverwalter. --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven.

[JBoss-user] Autoreply: JBoss-user digest, Vol 1 #3073 - 1 msg

2002-09-21 Thread stefan . billeb
Laut Insolvenzbeschluss vom 01. September 2002 wurde der Geschäftsbetrieb der Telesens KSCL AG eingestellt. Bei Fragen wenden Sie sich bitte an den Insolvenzverwalter. --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven.

[JBoss-user] help w/ mbean deployment

2002-09-21 Thread G.L. Grobe
Ok, after a few more found errorsand fixes, still not able to deploy this mbean. Can anyone look this over to see where I'm going wrong? I have it packaged as a normal class file in my apps ejb.jar which is in the *.ear and the service file is below. Any help much appreciated. 19:14:04,140

Re: [JBoss-user] help w/ mbean deployment

2002-09-21 Thread David Jencks
Is the .ear already deployed when you deploy this *-service.xml file? Is this the complete log at debug level? I think the mbean waits for its class dependency only works in jboss 4. david jencks On 2002.09.21 18:55:16 -0400 G.L. Grobe wrote: Ok, after a few more found errors and fixes, still

Re: [JBoss-user] help w/ mbean deployment

2002-09-21 Thread G.L. Grobe
Is this a requirement? Or should it work as included in my *.ear? Why not try and package the xml file, the Scheduler.class and SchedulerMBean.class, into a *.sar file ? --- This sf.net email is sponsored by:ThinkGeek Welcome to geek

Re: [JBoss-user] Re: Can an ejb function as a daemon?

2002-09-21 Thread Kevin O'Neill
What I did to replace an rmi server for now is have session beans access a singleton. It seems the safest way to set up a service right now and still be somewhat portable... Isn't accessing threading facilities a no no in session beans? If you have a deamon like service then I assume that

Re: [JBoss-user] help w/ mbean deployment

2002-09-21 Thread David Jencks
You don't have to package your classes + mbean dd (*-service.xml file) in a sar, but it makes sure the classes are available before the mbean is created. Otherwise you have to use jboss 4 or arrange that the classes are available when the *-service.xml file is processed. What happens if you

Re: [JBoss-user] Re: Can an ejb function as a daemon?

2002-09-21 Thread David Jencks
a jca adapter for your file based content store should be fine. jca really deals with expensive connections that involve transactions and security. If none of these apply you may be able to get away with something simpler such as an mbean. david jencks On 2002.09.21 22:55:21 -0400 Kevin