Re: OT: Mucha gente hablaespañol, era: Re: una pregunta

2001-06-27 Thread evan . light


Y yo tambien pero solamente un poquito.  Aprendi en collegio antes de diez
años.
---
To design, to implement, to maintain, and not to kluge.


   

Tomeu  

BennàssarTo: [EMAIL PROTECTED]

  Subject: Re: OT: Mucha gente habla 
español, era: Re: unapregunta  
   

06/27/01   

11:50 AM   

Please 

respond to 

tomcat-user

   

   





i és de Mallorca (exactament de La Vila)

Antoni Reus wrote:

> Pues yo tambien.
>
> Saludos
>
> -- Antoni Reus
>
> - Original Message -
> From: "Julio Cesar Perez Jerez" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, June 27, 2001 3:42 PM
> Subject: RE: una pregunta
>
> Mucha gente habla español, INCREIBLE ...
>
> Saludos a Todos !!!
>
> -Original Message-
> From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, June 27, 2001 8:30 AM
> To: '[EMAIL PROTECTED]'
> Subject: RE: una pregunta
>
> Si muchos mas de los que parece.. :)
>
> Si quereis hablar de Java en Español..
>
> http://es.egroups.com/group/JugAnd
> http://es.egroups.com/group/JavaSpain
>
> Saludos ,
> Ignacio J. Ortega
>
> > -Mensaje original-
> > De: alex chang [mailto:[EMAIL PROTECTED]]
> > Enviado el: miércoles 27 de junio de 2001 15:23
> > Para: [EMAIL PROTECTED]
> > Asunto: Re: una pregunta
> >
> >
> > si yo tambien hablo espanol. Naci en Ecuador.
> > -alex
> >
> > --- Martin Mauri <[EMAIL PROTECTED]> wrote:
> > > Bueno,
> > >
> > > increible la cantidad de personas que hablan español en la lista, de
> > > haber
> > > sabido nunca hubiera escrito en ingles.
> > >
> > > BTW, I also need to know something about that RFC cause
> > I've been facing
> > > some problems with IE5.
> > >
> > > regards.
> >
> >
> > __
> > Do You Yahoo!?
> > Get personalized email addresses from Yahoo! Mail
> > http://personal.mail.yahoo.com/
> >








Re: How to specify a startup servlet for an application (CONTEXT)?

2001-06-27 Thread evan . light


 If you want a servlet to init as part of your web app then you should
define it in your web app's WEB-INF/web.xml file with the following syntax:


 
  put your servlet's name here
  servlet.class.name.here
  

nameOfParamMappingToMutatorOnServlet
   put the value of the parameter
here
  
 

etc., ...

I believe that this will result in the execution of the servlet's init()
method.  Incidentally, "mutator" is synonymous for "setter" (e.g., setFoo(
String val)) if that's unclear.  You can also have any number of init-param
elements.

Evan

---
To design, to implement, to maintain, and not to kluge.


   
 
"Julia Kuznetsov"  
 
  
media.com>cc:  
 
  Subject: How to specify a 
startup servlet for an application  
06/27/01 01:34 PM (CONTEXT)?   
 
Please respond to  
 
tomcat-user
 
   
 
   
 




I need to load couple xml files into memory and store them in
ServletContext
when my application starts. I created a servlet to do that, but I can't
figure out how to make this servlet run automatically whem the app starts.
Is there smthg in server.xml that I can define to run this servlet?

Please help!

Julia Kuznetsov