Re: [JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-27 Thread Julian Gosnell

1. The tests are pretty incomplete - it is very
possible that you have found a hole in them.

2. if you sync yourself with the cvs tree you will get
an upgrade to Jetty4. I am much happier with the
Security integration in this version. If the problem
lies with Jetty itself ask Greg whether the fix has
gone into Jetty4 - Greg ? You really should sync, if
you can - because lots of stuff has gone into my
integration since 3.0alpha was released.

3. ClassLoaders are a problem at the moment. I am
waiting for a new ClassLoader strategy to finally get
checked in, then they should be sorted. For the
moment, if you are trying to compile JSPs on the fly
(You'd be better of precompiling them) you will be OK
if, you only reference jars that you ship in your war.
Jars referenced from the ear will not be found, J2EE
stuff (except servlet and jasper itself) will not be
found.

Let me know how you get on.

Jules

P.S.

CVS JBoss seems pretty broken at the moment (I can't
even run the web integration tests). so you may want
to hold of for a couple of days.



 --- Allen Fogleson [EMAIL PROTECTED] wrote: 
Jules,
 
 I didnt get a chance to dig into the code yet, but I
 tried my app
 quickly on the CVS code, and I am getting jasper
 exceptions about not
 being able to import classes.
 (ClassNotFoundExceptions) Which is better
 than a HTML error 403 I guess heh. Im planning on
 looking at it more
 tomorrow and seeing if it is just my setup or if
 there is some problem.
 
 I admit that the app I made really kind of pushes
 jboss. It is an ASP
 sort of model where. More of a webappcabaret model
 kind of ASP than a
 real ASP so it is almost as likely that it is my
 code too. (or at least
 my setup in Jboss)
 
 I had problems with  the security not properly being
 propogated in the
 Jboss-3alpha/jetty on the web site but I can get
 around that by dropping
 in older Jetty jars.
 
 I am going to try to find some time today to look at
 my code and the CVS
 code and see where the problem lies. Im assuming
 since it passes the
 webIntegration tests it is in my setup of jboss and
 not in the
 integration but one never knows.
 
 Al
 
 
 
 [EMAIL PROTECTED] wrote:
 
  Adam,
  
  Have you tried the Jetty integration ?
  
  If so, and you didn't like it, would you let me
 know what was broken, 
 so it can
  be fixed.
  
  Any feedback at all would be useful, otherwise I
 am working in a vacuum.
  
  JBoss 3 cvs now contains Jetty4 which is Servlet
 2.3 and JSP 1.2 
 (Jasper - same
  as Catalina).
  
  As far as the user is concerned this should be a
 drop in replacement for
  Catalina. If it isn't we need to know.
  
  Thanks,
  
  
  
  Jules
  
  
  marc fleury wrote:
  
  |-Original Message-
  |From:
 [EMAIL PROTECTED]
 

|[mailto:[EMAIL PROTECTED]]On
 Behalf Of Adam
  |Heath
  |Sent: Sunday, November 25, 2001 1:23 AM
  |To: marc fleury
  |Cc: Jboss-Development@Lists. Sourceforge. Net
  |Subject: Re: [JBoss-dev] [ANN] JBoss 3.0 alpha
 is out
  |
  |
  |On Wed, 21 Nov 2001, marc fleury wrote:
  |
  | This is it!
  |
  |

http://prdownloads.sourceforge.net/jboss/jboss-3.0.0alpha.zip
  |
  | we will have the link on www.jboss.org shortly
  |
  | so go gentlemen, you know what is in there,
 clustering, EJB 2.0, 
 sar, cl
  | microkernel, the future.
  |
  |Where is tomcat integration?  Is this just an
 oversite?  JBoss 2.4.3 had
  |Tomcat integration(both 3.x and 4.x), yet I see
 nothing in JBoss cvs 
 that
  |mention this.
  
  Where is your code, Adam?  If you care so much
 about it, get your 
 keyboard
  and code that integration it should be fairly
 simple just drop the 
 code from
  2.x with 4.0 mods.  You got a big mouth, let's
 hope your hands are as 
 big,
  otherwise you will rapidly fall in the
 crocodile category (you 
 figure it
  out).
  
  |Was this on purpose, or an honest oversite?  I
 hope it is not the 
 former,
  |seeing as how Tomcat is the reference
 implementation for java servlets.
  
  bullshit. Tomcat is just an implementation. 
 Jetty is just an
  implementation.  The main reason right now is 1-
 the 3.0 release is about
  CMP 2.0 so get that going, 2- no-one has really
 contributed the 
 integration
  3- I don't care about it I would rather wait to
 see, but if you care go
  ahead!
  
  You know what to do, come back when you are done.
  
  marcf
  
  |
  |
  |___
  |Jboss-development mailing list
  |[EMAIL PROTECTED]
 

|https://lists.sourceforge.net/lists/listinfo/jboss-development
  
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
 

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

_
  Do You Yahoo!?
  Get your free @yahoo.com address at
 http://mail.yahoo.com
  
  
  ___
  Jboss-development mailing list
  [EMAIL PROTECTED]
 

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

Re: [JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-27 Thread Greg Wilkins


I'm just going to agree with Jules here... try to get
onto the cvs HEAD as lots has changed here.

You will probably still have some JSP compilation problems,
but you can hack around those in the short term by
either precompiling JSPs (better yet just don't use them:-)
or you can set the classpath initparam of the JspServlet
in the defaultweb.xml file.  You will have to list all the
jars that you need to compile the JSPs.

cheers




Julian Gosnell wrote:

 1. The tests are pretty incomplete - it is very
 possible that you have found a hole in them.
 
 2. if you sync yourself with the cvs tree you will get
 an upgrade to Jetty4. I am much happier with the
 Security integration in this version. If the problem
 lies with Jetty itself ask Greg whether the fix has
 gone into Jetty4 - Greg ? You really should sync, if
 you can - because lots of stuff has gone into my
 integration since 3.0alpha was released.
 
 3. ClassLoaders are a problem at the moment. I am
 waiting for a new ClassLoader strategy to finally get
 checked in, then they should be sorted. For the
 moment, if you are trying to compile JSPs on the fly
 (You'd be better of precompiling them) you will be OK
 if, you only reference jars that you ship in your war.
 Jars referenced from the ear will not be found, J2EE
 stuff (except servlet and jasper itself) will not be
 found.
 
 Let me know how you get on.
 
 Jules
 
 P.S.
 
 CVS JBoss seems pretty broken at the moment (I can't
 even run the web integration tests). so you may want
 to hold of for a couple of days.
 
 
 
  --- Allen Fogleson [EMAIL PROTECTED] wrote: 
 Jules,
 
I didnt get a chance to dig into the code yet, but I
tried my app
quickly on the CVS code, and I am getting jasper
exceptions about not
being able to import classes.
(ClassNotFoundExceptions) Which is better
than a HTML error 403 I guess heh. Im planning on
looking at it more
tomorrow and seeing if it is just my setup or if
there is some problem.

I admit that the app I made really kind of pushes
jboss. It is an ASP
sort of model where. More of a webappcabaret model
kind of ASP than a
real ASP so it is almost as likely that it is my
code too. (or at least
my setup in Jboss)

I had problems with  the security not properly being
propogated in the
Jboss-3alpha/jetty on the web site but I can get
around that by dropping
in older Jetty jars.

I am going to try to find some time today to look at
my code and the CVS
code and see where the problem lies. Im assuming
since it passes the
webIntegration tests it is in my setup of jboss and
not in the
integration but one never knows.

Al



[EMAIL PROTECTED] wrote:

 Adam,
 
 Have you tried the Jetty integration ?
 
 If so, and you didn't like it, would you let me
know what was broken, 
so it can
 be fixed.
 
 Any feedback at all would be useful, otherwise I
am working in a vacuum.
 
 JBoss 3 cvs now contains Jetty4 which is Servlet
2.3 and JSP 1.2 
(Jasper - same
 as Catalina).
 
 As far as the user is concerned this should be a
drop in replacement for
 Catalina. If it isn't we need to know.
 
 Thanks,
 
 
 
 Jules
 
 
 marc fleury wrote:
 
 |-Original Message-
 |From:
[EMAIL PROTECTED]



|[mailto:[EMAIL PROTECTED]]On

Behalf Of Adam
 |Heath
 |Sent: Sunday, November 25, 2001 1:23 AM
 |To: marc fleury
 |Cc: Jboss-Development@Lists. Sourceforge. Net
 |Subject: Re: [JBoss-dev] [ANN] JBoss 3.0 alpha
is out
 |
 |
 |On Wed, 21 Nov 2001, marc fleury wrote:
 |
 | This is it!
 |
 |

 http://prdownloads.sourceforge.net/jboss/jboss-3.0.0alpha.zip
 
 |
 | we will have the link on www.jboss.org shortly
 |
 | so go gentlemen, you know what is in there,
clustering, EJB 2.0, 
sar, cl
 | microkernel, the future.
 |
 |Where is tomcat integration?  Is this just an
oversite?  JBoss 2.4.3 had
 |Tomcat integration(both 3.x and 4.x), yet I see
nothing in JBoss cvs 
that
 |mention this.
 
 Where is your code, Adam?  If you care so much
about it, get your 
keyboard
 and code that integration it should be fairly
simple just drop the 
code from
 2.x with 4.0 mods.  You got a big mouth, let's
hope your hands are as 
big,
 otherwise you will rapidly fall in the
crocodile category (you 
figure it
 out).
 
 |Was this on purpose, or an honest oversite?  I
hope it is not the 
former,
 |seeing as how Tomcat is the reference
implementation for java servlets.
 
 bullshit. Tomcat is just an implementation. 
Jetty is just an
 implementation.  The main reason right now is 1-
the 3.0 release is about
 CMP 2.0 so get that going, 2- no-one has really
contributed the 
integration
 3- I don't care about it I would rather wait to
see, but if you care go
 ahead!
 
 You know what to do, come back when you are done.
 
 marcf
 
 |
 |
 |___
 |Jboss-development mailing list
 |[EMAIL PROTECTED]



|https://lists.sourceforge.net/lists/listinfo/jboss-development

 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]



https

Re: [JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-27 Thread Allen Fogleson

Actually the latest works fine. I didnt even get a chance to look at the
src before it was fixed :)

[EMAIL PROTECTED] wrote:

 2. if you sync yourself with the cvs tree you will get
 an upgrade to Jetty4. I am much happier with the
 Security integration in this version. If the problem
 lies with Jetty itself ask Greg whether the fix has
 gone into Jetty4 - Greg ? You really should sync, if
 you can - because lots of stuff has gone into my
 integration since 3.0alpha was released.
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 
 https://lists.sourceforge.net/lists/listinfo/jboss-development
 
 __
 Do You Yahoo!?
 Everything you'll ever need on one web page from News and Sport to 
Email and Music Charts
 http://uk.my.yahoo.com
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development
 




___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



Re: [JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-26 Thread Allen Fogleson

Jules,

I didnt get a chance to dig into the code yet, but I tried my app
quickly on the CVS code, and I am getting jasper exceptions about not
being able to import classes. (ClassNotFoundExceptions) Which is better
than a HTML error 403 I guess heh. Im planning on looking at it more
tomorrow and seeing if it is just my setup or if there is some problem.

I admit that the app I made really kind of pushes jboss. It is an ASP
sort of model where. More of a webappcabaret model kind of ASP than a
real ASP so it is almost as likely that it is my code too. (or at least
my setup in Jboss)

I had problems with  the security not properly being propogated in the
Jboss-3alpha/jetty on the web site but I can get around that by dropping
in older Jetty jars.

I am going to try to find some time today to look at my code and the CVS
code and see where the problem lies. Im assuming since it passes the
webIntegration tests it is in my setup of jboss and not in the
integration but one never knows.

Al



[EMAIL PROTECTED] wrote:

 Adam,
 
 Have you tried the Jetty integration ?
 
 If so, and you didn't like it, would you let me know what was broken, 
so it can
 be fixed.
 
 Any feedback at all would be useful, otherwise I am working in a vacuum.
 
 JBoss 3 cvs now contains Jetty4 which is Servlet 2.3 and JSP 1.2 
(Jasper - same
 as Catalina).
 
 As far as the user is concerned this should be a drop in replacement for
 Catalina. If it isn't we need to know.
 
 Thanks,
 
 
 
 Jules
 
 
 marc fleury wrote:
 
 |-Original Message-
 |From: [EMAIL PROTECTED]
 |[mailto:[EMAIL PROTECTED]]On Behalf Of Adam
 |Heath
 |Sent: Sunday, November 25, 2001 1:23 AM
 |To: marc fleury
 |Cc: Jboss-Development@Lists. Sourceforge. Net
 |Subject: Re: [JBoss-dev] [ANN] JBoss 3.0 alpha is out
 |
 |
 |On Wed, 21 Nov 2001, marc fleury wrote:
 |
 | This is it!
 |
 | http://prdownloads.sourceforge.net/jboss/jboss-3.0.0alpha.zip
 |
 | we will have the link on www.jboss.org shortly
 |
 | so go gentlemen, you know what is in there, clustering, EJB 2.0, 
sar, cl
 | microkernel, the future.
 |
 |Where is tomcat integration?  Is this just an oversite?  JBoss 2.4.3 had
 |Tomcat integration(both 3.x and 4.x), yet I see nothing in JBoss cvs 
that
 |mention this.
 
 Where is your code, Adam?  If you care so much about it, get your 
keyboard
 and code that integration it should be fairly simple just drop the 
code from
 2.x with 4.0 mods.  You got a big mouth, let's hope your hands are as 
big,
 otherwise you will rapidly fall in the crocodile category (you 
figure it
 out).
 
 |Was this on purpose, or an honest oversite?  I hope it is not the 
former,
 |seeing as how Tomcat is the reference implementation for java servlets.
 
 bullshit. Tomcat is just an implementation.  Jetty is just an
 implementation.  The main reason right now is 1- the 3.0 release is about
 CMP 2.0 so get that going, 2- no-one has really contributed the 
integration
 3- I don't care about it I would rather wait to see, but if you care go
 ahead!
 
 You know what to do, come back when you are done.
 
 marcf
 
 |
 |
 |___
 |Jboss-development mailing list
 |[EMAIL PROTECTED]
 |https://lists.sourceforge.net/lists/listinfo/jboss-development
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development
 
 
 
 _
 Do You Yahoo!?
 Get your free @yahoo.com address at http://mail.yahoo.com
 
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development
 




___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-25 Thread marc fleury



|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of Adam
|Heath
|Sent: Sunday, November 25, 2001 1:23 AM
|To: marc fleury
|Cc: Jboss-Development@Lists. Sourceforge. Net
|Subject: Re: [JBoss-dev] [ANN] JBoss 3.0 alpha is out
|
|
|On Wed, 21 Nov 2001, marc fleury wrote:
|
| This is it!
|
| http://prdownloads.sourceforge.net/jboss/jboss-3.0.0alpha.zip
|
| we will have the link on www.jboss.org shortly
|
| so go gentlemen, you know what is in there, clustering, EJB 2.0, sar, cl
| microkernel, the future.
|
|Where is tomcat integration?  Is this just an oversite?  JBoss 2.4.3 had
|Tomcat integration(both 3.x and 4.x), yet I see nothing in JBoss cvs that
|mention this.

Where is your code, Adam?  If you care so much about it, get your keyboard
and code that integration it should be fairly simple just drop the code from
2.x with 4.0 mods.  You got a big mouth, let's hope your hands are as big,
otherwise you will rapidly fall in the crocodile category (you figure it
out).

|Was this on purpose, or an honest oversite?  I hope it is not the former,
|seeing as how Tomcat is the reference implementation for java servlets.

bullshit. Tomcat is just an implementation.  Jetty is just an
implementation.  The main reason right now is 1- the 3.0 release is about
CMP 2.0 so get that going, 2- no-one has really contributed the integration
3- I don't care about it I would rather wait to see, but if you care go
ahead!

You know what to do, come back when you are done.

marcf

|
|
|___
|Jboss-development mailing list
|[EMAIL PROTECTED]
|https://lists.sourceforge.net/lists/listinfo/jboss-development


___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-25 Thread Adam Heath

On Sun, 25 Nov 2001, marc fleury wrote:

 |Where is tomcat integration?  Is this just an oversite?  JBoss 2.4.3 had
 |Tomcat integration(both 3.x and 4.x), yet I see nothing in JBoss cvs that
 |mention this.

 Where is your code, Adam?  If you care so much about it, get your keyboard
 and code that integration it should be fairly simple just drop the code from
 2.x with 4.0 mods.  You got a big mouth, let's hope your hands are as big,
 otherwise you will rapidly fall in the crocodile category (you figure it
 out).

Gee, how nice of an email this is.  All you should have said was No, it isn't
in 3.0, because some things changed, and no one made sure it worked, as there
were more important things to do.  Yet, you instead decided to jump down my
throat, and put me down before I even did any work.

 |Was this on purpose, or an honest oversite?  I hope it is not the former,
 |seeing as how Tomcat is the reference implementation for java servlets.

 bullshit. Tomcat is just an implementation.  Jetty is just an
 implementation.  The main reason right now is 1- the 3.0 release is about
 CMP 2.0 so get that going, 2- no-one has really contributed the integration
 3- I don't care about it I would rather wait to see, but if you care go
 ahead!

Again, answering It was done on purpose, because no one felt took ownership
of the tomcat integration. is a much more polite answer.

Um, sun calls tomcat the reference servlet implementation.  That is not just
me spewing bullshit.

 You know what to do, come back when you are done.

Such nice, friendly emails from you.  Makes one just want to pitch in and
help.

These kinds of emails are not the ones that make people want to flock to
program for JBoss.


___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



RE: [JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-25 Thread marc fleury

|These kinds of emails are not the ones that make people want to flock to
|program for JBoss.

Talk is cheap, emails are a dime a dozen, we have seen a quarter of it from
you,

can we get your 2c in code? We are pretty lax in giving RW, so code
something relevant and you are in, talk some more and I remove you from this
list, okay? this is how it works it is that simple.


code you are in talk you are out
it is that simple you got 1 week
Get tomcat 4 integrated in stack
Go next sunday I check up on you


This is when we see if you are for real, cause kids like you are a dime a
dozen on this list and I just REALLY don't like the tone of your emails.

marcf


___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



Re: [JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-25 Thread Luke Taylor

Adam Heath wrote:

 On Sun, 25 Nov 2001, marc fleury wrote:
 
 

 
 Such nice, friendly emails from you.  Makes one just want to pitch in and
 help.
 


Hmmm. Perhaps you should take a look back at your own emails over the 
last week or so. You sound like a spoilt child stamping his feet and 
demanding stuff. First all that business with the build and debian and now

Where is the tomcat integration? I hope that's just an honest oversite 
sic on your part,

followed by a rather smug reference to it's being the reference 
implementation for java servlets which I'm sure everyone is already 
aware of ...


 These kinds of emails are not the ones that make people want to flock to
 program for JBoss.
 

Given previous form, I'd say you got off lightly :-).

Luke.



___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



Re: [JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-25 Thread Julian Gosnell

Adam,

Have you tried the Jetty integration ?

If so, and you didn't like it, would you let me know what was broken, so it can
be fixed.

Any feedback at all would be useful, otherwise I am working in a vacuum.

JBoss 3 cvs now contains Jetty4 which is Servlet 2.3 and JSP 1.2 (Jasper - same
as Catalina).

As far as the user is concerned this should be a drop in replacement for
Catalina. If it isn't we need to know.

Thanks,



Jules


marc fleury wrote:

 |-Original Message-
 |From: [EMAIL PROTECTED]
 |[mailto:[EMAIL PROTECTED]]On Behalf Of Adam
 |Heath
 |Sent: Sunday, November 25, 2001 1:23 AM
 |To: marc fleury
 |Cc: Jboss-Development@Lists. Sourceforge. Net
 |Subject: Re: [JBoss-dev] [ANN] JBoss 3.0 alpha is out
 |
 |
 |On Wed, 21 Nov 2001, marc fleury wrote:
 |
 | This is it!
 |
 | http://prdownloads.sourceforge.net/jboss/jboss-3.0.0alpha.zip
 |
 | we will have the link on www.jboss.org shortly
 |
 | so go gentlemen, you know what is in there, clustering, EJB 2.0, sar, cl
 | microkernel, the future.
 |
 |Where is tomcat integration?  Is this just an oversite?  JBoss 2.4.3 had
 |Tomcat integration(both 3.x and 4.x), yet I see nothing in JBoss cvs that
 |mention this.

 Where is your code, Adam?  If you care so much about it, get your keyboard
 and code that integration it should be fairly simple just drop the code from
 2.x with 4.0 mods.  You got a big mouth, let's hope your hands are as big,
 otherwise you will rapidly fall in the crocodile category (you figure it
 out).

 |Was this on purpose, or an honest oversite?  I hope it is not the former,
 |seeing as how Tomcat is the reference implementation for java servlets.

 bullshit. Tomcat is just an implementation.  Jetty is just an
 implementation.  The main reason right now is 1- the 3.0 release is about
 CMP 2.0 so get that going, 2- no-one has really contributed the integration
 3- I don't care about it I would rather wait to see, but if you care go
 ahead!

 You know what to do, come back when you are done.

 marcf

 |
 |
 |___
 |Jboss-development mailing list
 |[EMAIL PROTECTED]
 |https://lists.sourceforge.net/lists/listinfo/jboss-development

 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



Re: [JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-24 Thread Adam Heath

On Wed, 21 Nov 2001, marc fleury wrote:

 This is it!

 http://prdownloads.sourceforge.net/jboss/jboss-3.0.0alpha.zip

 we will have the link on www.jboss.org shortly

 so go gentlemen, you know what is in there, clustering, EJB 2.0, sar, cl
 microkernel, the future.

Where is tomcat integration?  Is this just an oversite?  JBoss 2.4.3 had
Tomcat integration(both 3.x and 4.x), yet I see nothing in JBoss cvs that
mention this.

Was this on purpose, or an honest oversite?  I hope it is not the former,
seeing as how Tomcat is the reference implementation for java servlets.


___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] [ANN] JBoss 3.0 alpha is out

2001-11-21 Thread marc fleury

This is it!

http://prdownloads.sourceforge.net/jboss/jboss-3.0.0alpha.zip

we will have the link on www.jboss.org shortly

so go gentlemen, you know what is in there, clustering, EJB 2.0, sar, cl
microkernel, the future.

Can you hear those gun shots in the distance? that is us slugging it with
the big boys,  that is us beating the crap out them, we believe, we believe
in it, we believe in it more than they do.

Come help us, we need you.

We need you to download the stuff, we need you to buy the documentation from
Dain on EJB 2.0 CMP, we need you to test and debug, we need you to strech it
we need you to push it in your own vincinity, this is how we play the game.
Play your part, help us establish JBoss as the Open Monopoly for web-app
server infrastructure.

we need you to code, pick up your keyboards and join our legions.

We need you dude.

And remember we love you too,

PLgC
marcf


Marc Fleury
President
JBoss Group, LLC



___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development