Re: [JBoss-dev] JSR-77 and Jetty

2002-06-21 Thread Greg Wilkins
Contexts, filters and servlets can all be individually stopped and started in Jetty, with the following results: A stopped context will not be given any new requests. All components (servlets/filters) of a context will be stopped when stop is called on the context However, there may be an issue

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-21 Thread Greg Wilkins
ct. > > > Scott Stark > Chief Technology Officer > JBoss Group, LLC > > - Original Message - > From: "Andreas Schaefer" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, Jun

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Scott M Stark
, LLC - Original Message - From: "Andreas Schaefer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 20, 2002 5:43 PM Subject: Re: [JBoss-dev] JSR-77 and Jetty > Hi Scott > > > At a minimum at the AbstractWe

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Jules Gosnell
Andreas Schaefer wrote: > Hi Jules > > >>1. Are you sure that JSR77 talks at the granularity of Servlets - or is >>it WebApplications - or both. A Servlet is not the unit of deployment, >>the WebApplication is. A WebApplication may contain 0-n Servlets. > > > JSR-77 have an application (EAR) w

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Andreas Schaefer
Hi Scott > At a minimum at the AbstractWebContainer level we define the hooks to obtain > the required Servlet[] management objects needed to make up the WebModule > management object. There may not be much to this other than a simple > template method that defines the requirements for obtaining

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Andreas Schaefer
Hi Jules > No problem - you specify the interface, and I shall implement the Jetty > side. > The problem is there is no interface. That is what I need to have: - WebModule (represents WAR) - web.xml content - List of Servlets per WebModule Both WebModule can emits Notifications, manage

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Andreas Schaefer
Hi Jules > 1. Are you sure that JSR77 talks at the granularity of Servlets - or is > it WebApplications - or both. A Servlet is not the unit of deployment, > the WebApplication is. A WebApplication may contain 0-n Servlets. JSR-77 have an application (EAR) with one or more modules (WAR,JAR,RAR)

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Scott M Stark
Officer JBoss Group, LLC - Original Message - From: "Andreas Schaefer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "Scott M Stark" <[EMAIL PROTECTED]> Sent: Thursday, June 20, 2002 5:08 PM Subject: Re: [JBoss-dev] JSR-77 and Jetty

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Jules Gosnell
MAIL PROTECTED]> > Sent: Thursday, June 20, 2002 3:59 PM > Subject: [JBoss-dev] JSR-77 and Jetty > > > >>Hi Greg >> >>To make JSR-77 implementation (a J2EE management >>API) complete I need to support the web-service and >>I wills start with Jett

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Jules Gosnell
Andreas, I think that you will find that Jetty already exposes all this to JBoss via JMX (perhaps not the list of current deployments - but that's not a problem - I will sort it). However a few points. 1. Are you sure that JSR77 talks at the granularity of Servlets - or is it WebApplications

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Andreas Schaefer
Hi Scott > As much of this as possible should be handled at the > org.jboss.web.AbstractWebContainer > or else we will have to duplicate this for every web container service. I would like that but how are we going to expose attributes and methods dynamically in the Abstract- WebContainer ? Andy

Re: [JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Scott M Stark
- From: "Andreas Schaefer" <[EMAIL PROTECTED]> To: "Greg Wilkins" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, June 20, 2002 3:59 PM Subject: [JBoss-dev] JSR-77 and Jetty > Hi Greg > > To make JSR-77 implementation (a J2EE management > A

[JBoss-dev] JSR-77 and Jetty

2002-06-20 Thread Andreas Schaefer
Hi Greg To make JSR-77 implementation (a J2EE management API) complete I need to support the web-service and I wills start with Jetty (it seems to be tough enough). To start with I need a place where I can create a WebModule (represents a WAR file) and each Servlet (for now the once defined in w