Re: 2 many messages - News Server needed. - Or we could split the list

2000-10-18 Thread Miles Daffin
Actually, I think the mail list is fine. I use a filter to move these messages into their own folder. Good idea. However, I do feel that some improvement is possible. I recomend splitting the list into a few other lists. Yes - create 2 news groups. The main point of this is the automatic

Re: JSP-Compiled Servlets ??

2000-10-18 Thread Miles Daffin
Look in this directory (assuming your app's name is test1): orion root\application-deployments\test1\test1-web\persistence\jsp - Original Message - From: Santosh Kumar To: Orion-Interest Sent: Wednesday, October 18, 2000 10:48 AM Subject: JSP-Compiled

2 many messages - News Server needed.

2000-10-17 Thread Miles Daffin
Hi Folks, I have not picked up my email for 2 days and have just downloaded 108 Orion-Interest messages. Imagine what would have happened if I had left this job until Friday. I think it is time to turn this thing into a news group. It would also make it easier to see,follow, save

Re: Orion 1.3.8 and Servlets

2000-10-17 Thread Miles Daffin
Title: RE: Orion 1.3.8 and Servlets Are core classes reloaded too? I have found that if I change recompile utility classes used by a Servlet or JSP these are not updatedif they are already loaded. Servlets and JSPs are (development ="true"). What do you mean by a 'core class'? -

Re: orionsupport.com

2000-10-17 Thread Miles Daffin
I think better sources of information then the standard documentation is great and very helpful for people using Orion. I have sometimes great difficulties getting things sorted out to the extend I'm wondering whether I'm on the right track. Assuming I'm not the only one in that situation, I

Re: displaying xml

2000-10-17 Thread Miles Daffin
How about something like-a-this as well: http://www.c2.com/cgi/wiki?WikiWikiWeb - Original Message - From: Hani Suleiman To: Orion-Interest Sent: Tuesday, October 17, 2000 2:57 AM Subject: RE: displaying xml Or how about a faq-o-matic? Seems ideal for this

Re: displaying xml

2000-10-17 Thread Miles Daffin
If Orion included documentation that was half as decent as their most excellent server then perhaps the volume of confused, didn't read the readme.txt file, newbie questions would decrease. Where are the bird's-eye view diagrams - server architecture, topology, relationships between xml files

Library path.

2000-10-12 Thread Miles Daffin
Hi People, The /config/application.xml definesa general library path for theServer. library path="../lib" / Is it possible to: 1) Add to this. If so what is the syntax? (';' as a path separator within the same quotes?) 2) I would like to have custom lib paths for each app. Can this be

Re: NEWBIE QUESTION: How do I shut this thing down

2000-10-12 Thread Miles Daffin
See the 'orion/Readme.txt' (should be renamed to README_FIRST.txt - I missed it for days). Follow the instructions. General ACL stuff is set in /config/principals.xml. * To shutdown:java -jar admin.jar ormi://localhost/ adminID adminPass -shutdown * To restart:java -jar admin.jar

Re: NEWBIE QUESTION:Configuring a web application, that is not contained in a WAR file

2000-10-12 Thread Miles Daffin
Can you give me a brief overview of how to get Orion to serve this application. 1) Have you go the thing to serve the default website and its default application? 2) If 1 look at the supplied docs - the How-To's section. 3) Then look at: http://www.znerd.demon.nl/orion-primer/ Summary of

Re: NEWBIE QUESTION:Configuring a web application, that is not contained in a WAR file

2000-10-12 Thread Miles Daffin
Can you give me a brief overview of how to get Orion to serve this application. 1) Have you go the thing to serve the default website and its default application? 2) If 1 look at the supplied docs - the How-To's section. 3) Then look at: http://www.znerd.demon.nl/orion-primer/ Summary of

Re: New 2 Orion.

2000-10-11 Thread Miles Daffin
mand: java -jar admin.jar ormi://yourservername admin youradminpw -shutdown Or, you can use the Orion console by right-clicking on the Server and choosing Shutdown from the Context-sensitive menu. 2.) See http://www.znerd.demon.nl/orion-primer/ -Original Message-From: Mi

Re: hi all

2000-10-11 Thread Miles Daffin
Question 1. The doubt is about System.out.println() System is a class and out is a variable in System class. Yes - a public static one, which means: a) The world can use it. b) When the world wants to use it they prefix the name of the owning class rather than an instance reference. a.how

Re: Getting all messages twice today

2000-10-11 Thread Miles Daffin
Hi; I am receiving all messages from the Orion interest group twice. Is anyone else having this problem today? Cathy Dull You certainly aren't ;-)) Me 2! Me 2! Me 2! Me 2! Me 2! Me 2! Me 2! Me 2! Me 2! Me 2!

Re: Getting all messages twice today

2000-10-11 Thread Miles Daffin
Hi; I am receiving all messages from the Orion interest group twice. Is anyone else having this problem today? Cathy Dull You certainly aren't ;- Me 2! Me 2! Me 2! Me 2! Me 2! Me 2! Me 2! Me 2! Me 2! Me 2!

Re: how to capture stdout ?

2000-10-09 Thread Miles Daffin
; FileOutputStream fErr = new FileOutputStream(errFile); PrintStream sysErr = new PrintStream(fErr); // System.setOut(sysOut); System.setErr(sysErr); // System.out.println("System.out.println()"); System.err.println("System.err.println()"); -- Miles Daffin Java Deve

Re: New 2 Orion.

2000-10-09 Thread Miles Daffin
I have now got all 3 basic commands to work from bat files. See attachments. The key thing was omitting the port number from the ormi://host argument (thanks shailesh j). -- Miles Daffin Java Developer, Netherlands. Land: +31 (0)10 476 2412 Mobile: +31 (0)6 2959 1423 Permanent email: [EMAIL

Re: EJB vs Servlets

2000-10-09 Thread Miles Daffin
I thought the main idea was that once you had creaed your J2EE deployable App you could pick it up (in the form of one neat package/jar) and dump it into any J2EE compliant container - W.O.R.A. la! Your EJBs implement all the necessary interfaces to allow any J2EE container to manage them in a

Restart.

2000-10-09 Thread Miles Daffin
The only time I get this particular 'java.net.ConnectException' on a -restart is if the server is not actually running. I guess it has something to do with the port that the 'ormi://servername' argument ends up picking. Try not specifying a port (worked for me) or specifying the default rmi port

New 2 Orion.

2000-10-07 Thread Miles Daffin
Hi, I have 2 questions for the Community: 1) I can start Orion (1.3.8) usinga batch file but I cannot believe that the only way to stop it is 'Ctrl - c'. Is it? 2) I find the instructions for creating a new application a little scanty - does anyone know where I can find a real idiots',