RE: System parameters

1999-12-14 Thread Colin Burroughs
Hi, >I'm not quite sure what you mean by non-standard system parameters - so I'll >leave that for someone else. ermmm this kind of thing... java.util.Properties prop = System.getProperties(); java.util.Enumeration en = prop.propertyNames(); for (int i=0; en.hasM

RE: System parameters

1999-12-14 Thread Mike Cannon-Brookes
I'm not quite sure what you mean by non-standard system parameters - so I'll leave that for someone else. To start a Java class at startup, make it a servlet and set it to autoload. This way you can also govern the startup order (see the docs for details) if you want to startup many

System parameters

1999-12-13 Thread Colin Burroughs
Hi, Is there a quick and easy way of setting non-standard system parameters under the Orion environment. I have a need to setup Java deployment parameters which I can access from Java, .jsp etc... Can this be done through the .xml setup files? Is there a way of starting a Java class on Orion