load-on-startup

2001-11-14 Thread Namor Taror
It seems that orion loads a servlet only when load-on-start in the web.xml is present and also the load-on-startup is set to true in the default-web-site.xml file. My understanding was that it should be sufficient to set the load-on-startup in the web.xml. Has anybody has a similar experience

load-on-startup

2001-11-14 Thread Namor Taror
romen, have you ever resolved the load-on-startup problem (message below)?. My server freezes all together. -rr ello, If I use the load-on-startup in web.xml under my startup servlet, orion will correctly start it up automatically. What I found strange was that when this is done I cannot

SV: load-on-startup

2001-11-14 Thread Magnus Rydin
. WR -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]För Namor Taror Skickat: den 15 november 2001 04:12 Till: Orion-Interest Ämne: load-on-startup It seems that orion loads a servlet only when load-on-start in the web.xml is present and also the load

servlet load-on-startup and orion shutdown

2001-10-23 Thread Romen Law
ello, If I use the load-on-startup in web.xml under my startup servlet, orion will correctly start it up automatically. What I found strange was that when this is done I cannot shutdown orion any more by using admin.jar or ctrl-C. If I comment out the load-on-startup line, everything

Re: SV: load-on-startup is not working

2001-03-31 Thread Daniel Lopez
Okey guys, The load-on-startup="true" inside the web-app tag in the web-site.xml file did the trick so now everything works as expected. Now that I know where to look, I found the reference in the documentation even though it is not very intuitive. Thank you very much to all who resp

RE: SV: load-on-startup is not working

2001-03-30 Thread Jason Smith
]]On Behalf Of Daniel Lopez Sent: Friday, March 30, 2001 4:29 AM To: Orion-Interest Subject: Re: SV: load-on-startup is not working Hi Patrick, My problem is not that my servlet doesn't work. The servlet works but it is initialised when I perform the first request. It has to open database

Re: SV: load-on-startup is not working

2001-03-30 Thread Aniket V U
Hi Dan, try putting in a load-on-startup tag for the application itself. I have noticed that making a servlet load-on-startup causes it to get invoked on the first request but making the application itself load-on-startup causes the servlet to get invoked on initialization itself. To make

RE: SV: load-on-startup is not working

2001-03-30 Thread Jason Smith
Thanks Johan! I hadn't specified load-on-startup="true" in default-web-site.xml. After I put that in everything starts up fine. -jason

RE: SV: load-on-startup is not working

2001-03-30 Thread Kesav Kumar
lto:[EMAIL PROTECTED]] Sent: Friday, March 30, 2001 4:29 AM To: Orion-Interest Subject: Re: SV: load-on-startup is not working Hi Patrick, My problem is not that my servlet doesn't work. The servlet works but it is initialised when I perform the first request. It has to open database connections, pars

problem with load-on-startup SunOs

2001-01-24 Thread Marco Isella
I have a problem with load-on-startup on my SunOS machine.. in the init() of my HttpServlet i have DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance(); DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder(); File temp = new File(xmlFile

Re: load-on-startup

2001-01-05 Thread Johan Fredriksson
If I'm not completely mistaken is the load order for servlets. Meaning if load-on-startup is 1, that is the first servlet to load, 2 second to load. to load - being loaded by Orion. //Johan - Original Message - From: "Neal Kaiser" [EMAIL PROTECTED] To: "Orion-I

Classpath.class and load-on-startup, Can't start Orion

2001-01-04 Thread Neal Kaiser
param-namedefaultContentType/param-name param-valuetext/html/param-value /init-param load-on-startup1/load-on-startup /servlet And the Classpath.class is in /usr/local/orion/lib I think it has to do

RE: Classpath.class and load-on-startup, Can't start Orion

2001-01-04 Thread Tony Wilson
The load on startup number is what ranking to startup. It basically means that lower numbers start up first. SO... if you wanted servlets A,B,C,D to start up in that order, A=10, B=200, C=316, D=445 Doesn't matter what the numbers are, as long as they are in the correct order. I usually

load-on-startup doesn't work

2000-11-06 Thread Aleksi Kallio
/display-name servlet-classfoo.bar.Software/servlet-class load-on-startup1/load-on-startup init-param param-nameapplication-directory/param-name param-valueapplications/software/param-value /init-param /servlet What could be the problem? Any suggestions how

RE: load-on-startup doesn't work

2000-11-06 Thread Patrik Andersson
Title: RE: load-on-startup doesn't work Hi, Problems might be: - init does not take an instance of ServletContext, it takes ServletConfig, but maybee you misstyped in the mail. - The servlet won't load if it has compiletime errors or throws an exception in init (I think). -Original

Re: load-on-startup moving around and breaking things

2000-08-23 Thread Karl Avedal
-param load-on-startup1/load-on-startup /servlet which works great, as expected. However, when I startup orion, it changes it to servlet servlet-namemcInit/servlet-name display-namemcInit/display-name servlet-classuo.mc.MissionControlInitServlet/servlet-class load-on-startup1/load

Re: load-on-startup moving around and breaking things

2000-08-23 Thread Magnus Stenman
to be the case due to lack of response at times, but it is. As an example, the last bug you reported (sent to bugs@ on the 22nd), titled "load-on-startup initialization called twice" was found thanks to your report and fixed is in the latest internal build (which will pop up at http://www.orionserver

RE: load-on-startup moving around and breaking things

2000-08-23 Thread Neville Burnell
I would love to see your bug/rfe tracker as an Orion J2EE sample app! -Original Message- From: Magnus Stenman [mailto:[EMAIL PROTECTED]] Sent: Thursday, 24 August 2000 12:21 PM To: Orion-Interest Subject: Re: load-on-startup moving around and breaking things Hi, we're as you migth

load-on-startup initialization called twice

2000-08-21 Thread Christian Sell
in addition to the previous mail, I observed that classes are also loaded twice, i.e. on server startup AND AGAIN when the app is first accessed. Makes me wonder what load-on-startup in web-site.xml is good for. Christian Sell

Re: load-on-startup initialization called twice

2000-08-21 Thread Jason von Nieda
;Orion-Interest" [EMAIL PROTECTED] Sent: Monday, August 21, 2000 12:32 PM Subject: load-on-startup initialization called twice Hello, I have load-on-startup specified both in default-web-site.xml for the web-app and in web.xml for a servlet within the web-app. Now the init() method of the