Re: How can I reload (stop/start) an application-client with startup="true" property set? (New E-mail Address)

2002-03-11 Thread Stephen Davidson
Ganasen went to the website a few hours ago to unsubscribe himself. So why the listserv is still trying to send him messages is not a good thing. -Steve Ganasen Gounden wrote: > Please be informed that I no long reside in South Africa, but in Canada. > Please forwad all future e-mail to me at

How can I reload (stop/start) an application-client with startup="true" property set?

2002-03-11 Thread Alex Paransky
I have an application client which starts up when server is started. This client is a timer which causes certain session to execute every 30 seconds or so. The problem occurs when I redeploy my application by dropping a new .EAR file. While the application is re-deployed, the old client continu

RE: what happens at startup?

2002-03-05 Thread Greg Davis
ce it with the Orion documentation for those files. Hope this helps. -Original Message- From: daniele rizzi [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 1:00 AM To: Orion-Interest Subject: what happens at startup? hi all, this morning I've tried to restart my own orion se

what happens at startup?

2002-03-05 Thread daniele rizzi
hi all, this morning I've tried to restart my own orion server, with bad result: this is an extract from server.log 05/03/02 8.35 9.0.2.0.0 Stopped (Shutdown executed by admin from 192.168.237.159 (lspd31.largesys.pd)) 05/03/02 8.35 9.0.2.0.0 Started 05/03/02 8.35 Internal error in HttpServ

RE: does orionsupport startup and shut down classes

2002-01-10 Thread The elephantwalker
startup and shut down classes hai   Does ORION support startup and shutdown classes? Here is the scenario, in order to have access to the system resources (file system, legacy applications) from an EJB, it is the violation of EJB spec. However, one can write a java class that

RE: does orionsupport startup and shut down classes

2002-01-09 Thread Alex Paransky
Similar to a startup class, your application could have a client module.  Then in the orion-application.xml, you indicate that orion should autostart the client module.  Your client module, is a standard application with the public static void main(...) method defined in one of the classes

does orionsupport startup and shut down classes

2002-01-09 Thread meera krishnaraja bhat
hai   Does ORION support startup and shutdown classes? Here is the scenario, in order to have access to the system resources (file system, legacy applications) from an EJB, it is the violation of EJB spec. However, one can write a java class that accesses system resources and deployed this class

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 >

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

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

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 will be

Startup script for HP-UX

2001-07-10 Thread Joni Suominen
Hi! Does any of you have a proper Orion startup script for HP-UX? I found a one from Orion support which works fine in Linux but not in HP-UX. I also have problems to shutdown Orion in HP-UX. Nothing happens when I issue: /opt/java1.3/bin/java -jar admin.jar ormi://localhost admin passwd

Re: Running a Class at Server Startup

2001-05-17 Thread Florin Manolache
9:59 AM Subject: Running a Class at Server Startup > Hi > > Is it possible to run a class when the orion server initially starts up? > > I am looking for something like the following using Weblogic: > weblogic.system.startupClass.initialise= > weblogic.system.startupArgs.initi

RE: Running a Class at Server Startup

2001-05-17 Thread Jason Smith
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Randahl Fink Isaksen Sent: Thursday, May 17, 2001 8:01 AM To: Orion-Interest Subject: RE: Running a Class at Server Startup Well, Magnus, that is a constructive suggestion, but what if he wanted to do something

SV: Running a Class at Server Startup

2001-05-17 Thread Magnus Rydin
Title: SV: Running a Class at Server Startup Well, Randahl, he could always turn it into a application-client. Or he could use a Servlet to start a single instance of a regular java application. Dont be so sour when I only try to help. -Ursprungligt meddelande-Från: Randahl Fink

RE: Running a Class at Server Startup

2001-05-17 Thread Bruno Baloi
M To: Orion-Interest Cc: Subject:SV: Running a Class at Server Startup You could autostart a Servlet that kicks another class? > -Ursprungligt meddelande- > Från: S.Badrinarayanan [mailto:[EMAIL PROTECTED]] > Skickat: den 17 maj 2001 00:59 > Till: Orion-Interest

RE: Running a Class at Server Startup

2001-05-17 Thread Randahl Fink Isaksen
Title: SV: Running a Class at Server Startup Well, Magnus, that is a constructive suggestion, but what if he wanted to do something which a servlet is restricted from doing? Is there a way to simply startup a regular java application allong with Orion?     Randahl -Original Message

Re: Running a Class at Server Startup

2001-05-17 Thread Dragonchick
Hi, You can use servlet for start-up task. See web.xml.html load-on-startup tag description. - Original Message - From: "S.Badrinarayanan" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Thursday, May 17, 2001 11:58 AM Subject: Running

SV: Running a Class at Server Startup

2001-05-17 Thread Magnus Rydin
Title: SV: Running a Class at Server Startup You could autostart a Servlet that kicks another class? > -Ursprungligt meddelande- > Från: S.Badrinarayanan [mailto:[EMAIL PROTECTED]] > Skickat: den 17 maj 2001 00:59 > Till: Orion-Interest > Ämne: Running a Class at

Running a Class at Server Startup

2001-05-17 Thread S.Badrinarayanan
Hi Is it possible to run a class when the orion server initially starts up? I am looking for something like the following using Weblogic: weblogic.system.startupClass.initialise= weblogic.system.startupArgs.initialise= thx sb Chequemail.com - a free web based e-mail service that also pays!!!

Running a Class at Server Startup

2001-05-17 Thread S.Badrinarayanan
Hi Is it possible to run a class when the orion server initially starts up? I am looking for something like the following using Weblogic: weblogic.system.startupClass.initialise= weblogic.system.startupArgs.initialise= thx sb Chequemail.com - a free web based e-mail service that also pays!!!

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 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, pa

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 Johan Fredriksson
I've got it working perfectly, my servlet caches alot in the database at startup time, before Orion gets initialized... in default-web-site.xml and in web.xml BBStartUp BBStartUp servlets.BBStartUpServlet 1 - Original Message - From: "Jason Smith" <[EM

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 the

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

2001-03-30 Thread Jason Smith
to:[EMAIL PROTECTED]]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

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

2001-03-30 Thread Daniel Lopez
tries to compile the servlet? > > regards, > Patrik Andersson > > -Ursprungligt meddelande- > Från: Daniel Lopez [mailto:[EMAIL PROTECTED]] > Skickat: den 30 mars 2001 10:54 > Till: Orion-Interest > Ämne: load-on-startup is not working > > Hi, > > I

SV: load-on-startup is not working

2001-03-30 Thread Patrik Andersson
Title: SV: load-on-startup is not working Check your error log for compile time errors. is development="true" in orion-web.xml so that Orion even tries to compile the servlet? regards, Patrik Andersson -Ursprungligt meddelande- Från: Daniel Lopez [mailto:[EMAIL PROTECTED

load-on-startup is not working

2001-03-30 Thread Daniel Lopez
Hi, I don't seem to find how to get the load-on-startup attribute to work. This is the web.xml snippet where I use it: ... GuiaController org.leaf.LEAFManager 1 ... I've also tried with , but to no avail. This has been w

Startup without login

2001-01-22 Thread Tim Squires
Probably something simple I've missed... How do I stop the little login window from popping up when beans are first accessed? I've tried: auto-start="true" in the application tag of service.xml I'm not sure how to use the client-module tag of the orion-application.xml with a jsp tag library. D

RE: Servlet startup in Orion?

2001-01-17 Thread Juan Lorandi (Chile)
in web.xml there's a 1 that you must add to the servlet tag... HTH JP -Original Message- From: Robert S. Sfeir [mailto:[EMAIL PROTECTED]] Sent: Miércoles, 17 de Enero de 2001 14:16 To: Orion-Interest Subject: Servlet startup in Orion? I have a servlet which allows us to upload

RE: Servlet startup in Orion?

2001-01-17 Thread Kesav Kumar
Sfeir [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 17, 2001 9:16 AM To: Orion-Interest Subject: Servlet startup in Orion? I have a servlet which allows us to upload files to the Oracle DB. Right now when I run it, I do this: java percepticon.freedom.BlobUpServer -db /u01/home/robert/db.pro

Servlet startup in Orion?

2001-01-17 Thread Robert S. Sfeir
I have a servlet which allows us to upload files to the Oracle DB. Right now when I run it, I do this: java percepticon.freedom.BlobUpServer -db /u01/home/robert/db.props -p 8124 I know that in Weblogic there's a way to start this servlet within weblogic so that we don't have to worry about w

RE: Application Client startup synchronization

2001-01-09 Thread John D'Ausilio
Title: SV: Application Client startup synchronization well, there's no gross error ... my client tries to do a JNDI lookup and hangs, and the server never finished starting (at least it never gives the normal 'started' message)   jd -Original Message-From: [

RE: Application Client startup synchronization

2001-01-09 Thread Mike Fontenot
John, I had this occur with servlets that started up and tried to work with Orion EJBs immediately. Orion itself had not finished its own initialization. The calling servlet would hang, and so would orion. I put a thread delay into my startup application servlet #init method, on the advice of

SV: Application Client startup synchronization

2001-01-09 Thread Magnus Rydin
Title: SV: Application Client startup synchronization John, is this a test app? i.e. not confidential code? If so, could you please include it for replication of error? WR > -Ursprungligt meddelande- > Från: John D'Ausilio [mailto:[EMAIL PROTECTED]] > Skickat: den 9 j

Application Client startup synchronization

2001-01-09 Thread John D'Ausilio
After playing for a few hours, I figured out how to have an Application Client class start up with the server .. but it seems that the server fires off the client before it has finished starting itself up! Anyone deal with this yet? Is there a safe way to detect from the client when the server is

Re: Compile JSP at orion startup

2001-01-08 Thread Stan Ng
I believe that JSP pages are pre-compiled by Orion at start-up if the JSP is specified in the web.xml of the web-app and the load-on-startup element is present. For example, it would look something like: precompiledPageTest myPage.jsp 0 BTW, I haven't actually _trie

Compile JSP at orion startup

2001-01-08 Thread Daniel Mårtensson
Is it possible to compile all JSP pages att orion startup? /Daniel

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: &qu

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 us

load-on-startup

2001-01-04 Thread Neal Kaiser
What are the possible values for ? I thought it was just 0 or 1. I have a Servlet which I wanted to be auto loaded and have a value of 1 in there. It wouldn't start up. I bumped it up to 4 and it works. Weird, I know

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

2001-01-04 Thread Neal Kaiser
ary 04, 2001 12:33 PM > To: Orion-Interest > Subject: RE: Classpath.class and load-on-startup, Can't start Orion > > > Neal, > > Try putting Classpath.class in /usr/local/orion/lib/classpath. > > If your classes change on a regular basis, you might want to

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

2001-01-04 Thread Darren Gibbons
to:[EMAIL PROTECTED]]On Behalf Of Neal Kaiser > Sent: Thursday, January 04, 2001 8:40 AM > To: Orion-Interest > Subject: Classpath.class and load-on-startup, Can't start Orion > > > All of a sudden I get this error in my global-application.log: > > /4/01

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

2001-01-04 Thread Neal Kaiser
text/html 1 And the Classpath.class is in /usr/local/orion/lib I think it has to do with the load-on-startup not working? I had a similar problem with a webapp I installed which had 1 but it wasn't loading it. I changed the 1 to a 2 (just gues

Re: Orion slow startup

2000-12-01 Thread Mike Atkin
- Original Message - From: "Ismael Blesa Part" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Friday, December 01, 2000 9:17 AM Subject: Re: Orion slow startup > But which version of jdk are you testing versus Jikes? jdk 1.3 fr

Re: Orion slow startup

2000-12-01 Thread Ismael Blesa Part
But which version of jdk are you testing versus Jikes? Mike Atkin wrote: > - Original Message - > From: "Ismael Blesa Part" <[EMAIL PROTECTED]> > To: "Orion-Interest" <[EMAIL PROTECTED]> > Sent: Thursday, November 30, 2000 5:34 PM > Subject

Re: Orion slow startup

2000-11-30 Thread Mike Atkin
- Original Message - From: "Ismael Blesa Part" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Thursday, November 30, 2000 5:34 PM Subject: Re: Orion slow startup > I am using javac from jdk 1.3 and Jikes (last version) and I have

Re: Orion slow startup

2000-11-30 Thread Ismael Blesa Part
November 29, 2000 3:24 PM Subject: Orion slow startup > I've been experiencing extremely slow startup times for the Orion server. > It takes at least a few minutes to start the server.  I've only been using > Orion for a few weeks, but this seems a little excessive.  I'm run

Re: Orion slow startup

2000-11-30 Thread Lars Heller
> Orion for a few weeks, but this seems a little excessive. I'm running > it on a laptop with a PII/300 and 128MB ram, so I don't think it's the > machine. Aren't laptop hard disks a lot slower than normal ones?

Re: Orion slow startup

2000-11-30 Thread David Smith
Message - From: <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Wednesday, November 29, 2000 3:24 PM Subject: Orion slow startup > I've been experiencing extremely slow startup times for the Orion server. > It takes at least a few minutes to start

Re: Orion slow startup

2000-11-30 Thread Mike Atkin
- Original Message - From: <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Wednesday, November 29, 2000 3:24 PM Subject: Orion slow startup > I've been experiencing extremely slow startup times for the Orion server. > It takes at

Re: Orion slow startup

2000-11-30 Thread Ismael Blesa Part
How do you check if > you are using SSL? > > I forgot to mention that I'm on Windows 95. > > Scott > > Ismael Blesa Part [SMTP:[EMAIL PROTECTED]] wrote: > > > Maybe you are using SSL. > > > > [EMAIL PROTECTED] wrote: > > > >

RE: Orion slow startup

2000-11-29 Thread scott . elmer
> I've been experiencing extremely slow startup times for the Orion > server. > > It takes at least a few minutes to start the server. I've only been > using > > Orion for a few weeks, but this seems a little excessive. I'm running > it on > > a la

Re: Orion slow startup

2000-11-29 Thread Rafael Alvarez
Hello scott, Check how many EJB are being deployed. Orion slows down startup when it's deploying EJB, because it involves generating the java sources of the skel and stub for the home and remote, and compiling them. -- Best regards, Rafaelmailto:[EMAIL PROTECTED]

Re: Orion slow startup

2000-11-29 Thread Ismael Blesa Part
Maybe you are using SSL. [EMAIL PROTECTED] wrote: > I've been experiencing extremely slow startup times for the Orion server. > It takes at least a few minutes to start the server. I've only been using > Orion for a few weeks, but this seems a little excessive. I'm

Orion slow startup

2000-11-29 Thread scott . elmer
I've been experiencing extremely slow startup times for the Orion server. It takes at least a few minutes to start the server. I've only been using Orion for a few weeks, but this seems a little excessive. I'm running it on a laptop with a PII/300 and 128MB ram, so I don&#

RE: startup & shutdown classes

2000-11-08 Thread Russ White
Simple solution, write a servlet that is loaded on startup and load/run the classes you need from the init mehod. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Edmund Cheung > Sent: Wednesday, November 08, 2000 9:54 AM > To:

startup & shutdown classes

2000-11-08 Thread Edmund Cheung
In weblogic's properties file, I can register classes that are laoded into WL server and execute each time WL is tarted or shut down. Can I do something similar in Orion ? Thanks, Edmund *** Edmund Cheung Ka

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 ini

load-on-startup doesn't work

2000-11-06 Thread Aleksi Kallio
I have a servlet that starts up my application when Orion (1.0.3 - yes, a very old one) is started. The problem is that nothing happens - init(ServletContext) doesn't get called. I have this in global-web-application.xml: Software Software foo.bar.Software 1 applic

RE: startup classes?

2000-11-05 Thread Andy_Frank/UDIG
Andrej,I would try to avoid using a startup class like Weblogic's statup class because it ties your solution to an application server.I would recommend create a getService() method for you service so that when it is called from another EJBor servlet it checks to see if the service is runnin

RE: startup classes?

2000-10-28 Thread Mike Cannon-Brookes
Title: RE: startup classes? Why not just make a little app client that calls your class and starts it, then make the client auto load? This is how I do this all the time.   Mike -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Andrej

RE: startup classes?

2000-10-28 Thread Andrej Gabara
Title: RE: startup classes? Thank's, but I meant startup classes in the EJB server. Maybe it's immaterial if its web application or ejb server. I've scanned through the mail archive, but did not find a similar question. Thank'

Re: startup classes?

2000-10-28 Thread Christian Sell
this has been asked a few times before (last time only a few days ago, see list archive). Basically you will need to handle this in a servlet which has load-on-startup configured. If you really need you services to start when the server is started, you will have to configure the same for the web

startup classes?

2000-10-28 Thread Andrej Gabara
Title: startup classes? Hi, our server needs to run some services internally. Those services are implemented as threads and should be started when the server is started. How do you do this in Orion? Weblogic allows you to define some classes to run in its properties file. How does this

RE: startup / monitor script?

2000-10-17 Thread Frank Eggink
little, > you could grab JMeter from java.apache.org and wrap a daemon around that? > (It's a very good multithreaded load tester) > > Thanks, > Mike > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]]On Behalf Of Robe

Re: startup / monitor script?

2000-10-16 Thread Mike Atkin
From: "Robert Krueger" <[EMAIL PROTECTED]> > At 20:22 15.10.00 , you wrote: > >Klaus - thanks I'll try that. > > > >On my other point, has anyone written a shell or perl script to do the > >following on Linux/Unix: > > > >1) Start Orion > >2) Monitor that the Java process Orion is running in is ru

RE: startup / monitor script?

2000-10-15 Thread Mike Cannon-Brookes
:43 PM > To: Orion-Interest > Subject: Re: startup / monitor script? > > > At 20:22 15.10.00 , you wrote: > >Klaus - thanks I'll try that. > > > >On my other point, has anyone written a shell or perl script to do the > >following on Linux/Unix: > > &g

Re: startup / monitor script?

2000-10-15 Thread Alex S.
nagability, > > > > > > etc) - mainly of the underlying platform, not orion. > > > > Perfect, we've never had any problems with the OS or the DB (Sybase > > > > 11.0.3.3). Our only problem now is twofold: > > > > 1) Finding a way fo

Re: startup / monitor script?

2000-10-15 Thread Robert Krueger
> 11.0.3.3). Our only problem now is twofold: > > > 1) Finding a way for Orion effectively to run as something > > other than root. > > > > some time ago there was a nice tip from a guy on this list: > > > > Linux kernel configuration: > > Networking options -

startup / monitor script?

2000-10-15 Thread Mike Cannon-Brookes
g > other than root. > > some time ago there was a nice tip from a guy on this list: > > Linux kernel configuration: > Networking options ---> > [*] IP: firewalling > [*] IP: transparent proxy support > > and then a small startup-script: >[...] >star

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

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

2000-08-23 Thread Magnus Stenman
seem 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://

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

2000-08-23 Thread Christian Sell
Avedal <[EMAIL PROTECTED]> To: Orion-Interest <[EMAIL PROTECTED]> Cc: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Donnerstag, 24. August 2000 02:30 Subject: Re: load-on-startup moving around and breaking things >Hello Duane, > >Please send suspected bugs to [EMAIL PROTECTED],

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

2000-08-23 Thread Karl Avedal
l Avedal Duane Fields wrote: > Ok, in my expanded war's web.xml I have... > > > mcInit > mcInit > uo.mc.MissionControlInitServlet > >verifyApplication >true > > 1 > > > which works great, as expected. However, when I

load-on-startup moving around and breaking things

2000-08-23 Thread Duane Fields
Ok, in my expanded war's web.xml I have... mcInit mcInit uo.mc.MissionControlInitServlet verifyApplication true 1 which works great, as expected. However, when I startup orion, it changes it to mcInit mcInit uo.mc.MissionControlInitServle

Re: load-on-startup initialization called twice

2000-08-21 Thread Jason von Nieda
I have noticed this same behaviour even with the servlet specified only in one place. The init() method is always called on server startup and then called again the first time the servlet is accessed. - Original Message - From: "Christian Sell" <[EMAIL PROTECTED]> To:

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

load-on-startup initialization called twice

2000-08-21 Thread Christian Sell
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 servlet gets called twice - once when the app is loaded at server startup, and once when the app is first accessed from the browser

RE: REPOST: Running application code at startup

2000-08-15 Thread Andre Vanha
not figure out why this call always returned, so I built this hack to monitor if there were any active threads in orion's thread pool, and shut down once all of orion's threads were closed. This was very cumbersome and I decided to resturcture my application to eliminate

REPOST: Running application code at startup

2000-08-13 Thread Vidur Dhanda
Sorry for reposting this, but it has become absolutely critical and I would appreciate any help. -- Hello, Could someone please point out what I'm doing wrong. I'm sure I'm missing something really simple here. I can't get an Orion server to run under program control and do some

Download Ok: Startup Ok: How to stop?

2000-08-10 Thread John Pashley
I've downloaded the freebee and started the server. Everything seems to work ok. Q: How to stop the server after starting with java -jar orion.jar? Brgds John Pashley Information must be free --- Remember When ... A computer was something on TV fro

startup

2000-08-10 Thread Khan Kamran
Title: startup Hi All , I want to run a servlet at startup of orion server for one of my application. Please tell me how to achieve it? Thanks Kamran

Orion startup and shutdown (help)

2000-08-07 Thread Khan Kamran
Title: Orion startup and shutdown (help) Hi All , I need some urgent help from you. I have three query . 1. I want to run a servlet at Orion server startup (for initialization    such as connection pooling. and other tasks) 2. I want to run a servlet at Orion server

Orion startup and shutdown (help)

2000-08-07 Thread Khan Kamran
Title: Orion startup and shutdown (help) Hi All , I need some urgent help from you. I have three query . 1. I want to run a servlet at Orion server startup (for initialization    such as connection pooling. and other tasks) 2. I want to run a servlet at Orion server shutdown (for

NullPointer on startup

2000-07-15 Thread tshell
I just installed orion1.0.3b and received the following error running java -jar orion.jar -config /path/to/server.xml java.lang.NullPointerException at com.evermind.server.XMLServerConfig.lj(JAX) at com.evermind.server.XMLApplicationServerConfig.lj(JAX) at com.evermind.

RE: how to get a web application to startup automatically?

2000-07-13 Thread Dave Smith
In your default-web-site.xml, or whichever config file you load you web site in, change the load-on-statup value e.g. The web app will be loaded when orion is started, and your load-on-startup servlet will start. Dave Smith Senior Team Leader Aristocrat Technologies Australia Pty Ltd

how to get a web application to startup automatically?

2000-07-13 Thread Ari Halberstadt
I've got a web application that needs to spawn a background thread as soon as it is started up (the background thread is used to schedule things at specific times). Adding a load-on-startup value to the web.xml file does not load the corresponding servlet until a URL from the enclosin

Orion startup scenarios

2000-06-26 Thread Brian Cunningham
reate everything, just like it tried to do in (A) and did not try to do in (B). That is, I want to have the opportunity to "fix things" and then retry the whole startup. Touching various files did not seem to change anything. I still got scenario (B). Removing and adding apps gave me variati

RE: (loading servlet at startup) No performance using internet explorer

2000-06-08 Thread Patrik Andersson
Title: RE: (loading servlet at startup) No performance using internet explorer I solved the problem. I downloaded the web-app.dtd from java.sun.com. :) regards, Patrik Andersson -Original Message- From: Kit Cragin [mailto:[EMAIL PROTECTED]] Sent: den 7 juni 2000 22:02 To: Orion

RE: (loading servlet at startup) No performance using internet explorer

2000-06-07 Thread Kit Cragin
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Patrik Andersson Sent: Wednesday, June 07, 2000 9:18 AM To: Orion-Interest Subject: No performance using internet explorer How do I have orion load a servlet on startup. I can't seem to get the tag work. I've tried placing it i

Re: latest 9.2 startup not parsing files correctly - help

2000-02-24 Thread Karl Avedal
Hello, I would guess that there is something like The last version to work with my app was orion 9.1q. When I first started > using 9.1q I get the following error when trying to communicate with a EJB > from a client: > > Communication error: ejb-ref-type tag is missing from ejb-ref tag > 'Pro

Re: latest 9.2 startup not parsing files correctly - help

2000-02-24 Thread Shachor Gal
I had the same error message with 0.9.2, my ejb-jar.xml started with a after removing this line the message was gone. Gal Shachor On Thu, 24 Feb 2000, Mike Fontenot wrote: > The last version to work with my app was orion 9.1q. When I first started > using 9.1q I get the following er

latest 9.2 startup not parsing files correctly - help

2000-02-24 Thread Mike Fontenot
The last version to work with my app was orion 9.1q. When I first started using 9.1q I get the following error when trying to communicate with a EJB from a client: Communication error: ejb-ref-type tag is missing from ejb-ref tag 'ProductCatalogEJBApplicationS tartupBean' Adding a line in the a

JSP startup-compilation

1999-10-22 Thread Kevin Duffey
Hi there, Anyone know if there is a way I can have all the jsp pages compiled right away, rather than when each one is accessed for the first time? Is there some setting somewhere that can do this? Thanks. Kevin Duffey [EMAIL PROTECTED]

Servlet Startup and getServlet

1999-10-22 Thread Neal Kaiser
I have a database pooling servlet which I need to load at startup time then reference many times later. I've switched from JRun and am trying out OrionServer, but can't seem to get it to work. Here's my web-application.xml snippet: --- GlobalC