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: Anyone using Forte + JPDA + Orion

2000-10-26 Thread Lars Heller
Hi Rob, java -Djava.compiler=NONE -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5000 com.evermind.server.ApplicationServer From Sun's JPDA doc / Connection and Invocation Deatils: "The -Xnoagent and -Djava.compiler=NONE options are not required; however, for

Anyone using Forte + JPDA + Orion

2000-10-25 Thread Lars Heller
I'm using Forte for Java 2.0 beta Internet Edition and I'm trying to debug code running under orion. I started orion with java -jar -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=7070,suspend=n orion.jar and was able to attach to its vm with forte. but when setting breakpoints, it doesn't

Re: Calling Servlet from another servlet error using orion

2000-09-06 Thread Lars Heller
getServletConfig().getServletContext() .getServlet("bookstore.BookDBServlet"); The method ServletContext.getServlet(String) is deprecated since version 2.1. In the spec it is stated, that servlet engines should always return null. Instead (for forwarding to this servlet), use the