unsubscribe!!

2001-10-31 Thread Carey Parker

I have attempted to unsubscribe twice now and I'm still getting emails!
Someone PLEASE take me off this list.

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: unsubscribe!!

2001-10-31 Thread Carey Parker

Yes, that's what I'm saying - I've sent email to that address twice now
(actually three times) and it's been over 24 hours and I'm still getting
these emails.  I thought maybe posting here would catch the attention of a
moderator.

Carey


-Original Message-
From: Elm Gysel [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, October 31, 2001 9:58 AM
To: Tomcat Users List
Subject: Re: unsubscribe!!


You silly person
have you never looked at the the bottom of a message?

let me show it to you again :

To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]

that is : TO UNSUBSCRIBE, E-MAIL
MAILTO:[EMAIL PROTECTED]

I hope you got this one now...


 I have attempted to unsubscribe twice now and I'm still getting emails!
 Someone PLEASE take me off this list.

 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




init parameters and ServletConfig

2001-10-28 Thread Carey Parker

I'm creating a simple servlet engine, and I'm confused about which init
parameters are made available via the ServletConfig object.

In the DTD for web.xml, there are two sets of parameters: context-param and
init-param.  The context-param's are in the web-app scope and the
init-params are in the servlet element scope.

So, when the servlet engine invokes the init() method on the servlet with a
ServletConfig object, and the servlet invokes
ServletConfig.getParameterNames(), which parameters does it see?

Let's say we have the following web.xml snippet...

web-app
context-paramfoo/context-param
servlet
   servlet-nameboo1/servlet-name
   init-paramfoo1/init-param
/servlet
servlet
   servlet-nameboo2/servlet-name
   init-paramfoo2/init-param
/servlet
/web-app

So, there are three parameters here: foo, foo1, and foo2.  When servlet boo1
does a ServletConfig.getParameterNames(), does it get...

- just foo1?  
- foo and foo1?
- foo, foo1 and foo2?

Thanks!
Carey

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]