Re: Debugging JSP

2001-11-28 Thread Scott Farquhar
Herman, A quick search on the knowledge base reveals a few pages that may be of interest: http://kb.atlassian.com/search.jsp?query=debugging One in particular is: http://kb.atlassian.com/content/orion/docs/debugging.html which has links to:

RuntimeException in threads

2001-11-28 Thread Namor Taror
I've been trying to catch a runtime exception thrown by one of my user threads, before the orion server gets it. One of the solutions I thought would work was to create a ThreadGroup as a parent of the thread in question and have it to catch the exception. It doesn't seem to work. Any ideas?

JSP1.0 Support ??

2001-11-28 Thread Herman Rashid
Hi, Does Orion support JSP1.0? I'm porting an application from IBM WebSphere App Server and it was coded in JSP1.0. Also would love to hear from people in the list who knows the difference btw JSP1.0 and JSP1.1 or has experience porting it. Thanks.

RE: Debugging JSP

2001-11-28 Thread geoff
Wow, some of those debugging pages have a lot more information on debugging under Orion than I previously thought was available. Nice to know. When I tried this about six months ago, it seemed to work under javac, but not jikes. Anyone know if that's still the case, or if it was just a fluke

JAAS?

2001-11-28 Thread Hashim Merchant
Does Orion 1.5.2 support JAAS? Thanks Hash

RE: Attaching a Web App to root context

2001-11-28 Thread peter_saurugger
Herman, I have a servlet redirecting to a JSP, no problem. Must be some problem in the deployment or address that you redirect to. I am simply using an application root based path, e.g. RequestDispatcher rd = request.getRequestDispatcher(/upload.jsp); rd.forward(request,

Help: Out of Memory Error...

2001-11-28 Thread Arjen Schoneveld
Hi All, We are about to deploy a new application for our client that is built on Orion. The application consists of some Servlets, statefull and stateless session beans and CM entity beans. We have been testing the application for a month now and did not experience any problems. However today

finder queries

2001-11-28 Thread DPietro
Can some one help me out on this? I want to implement a findByName. I've looked at findquery.html and finders.html and am still having trouble. I want a findByName but I dont want to edit the orio-ejb-jar.xml file, I want to put the string into the Bean. Where? In the bean, the home, or the

Re: RuntimeException in threads

2001-11-28 Thread Greg Matthews
if by user threads you mean a thread that you're manually starting (i.e. not a worker thead) then maybe put a try/catch block in the run method? public void run() { while(!stopped) { try { // do stuff } catch(Exception e) { // handle error }

Error Parsing XXX.xml Error

2001-11-28 Thread Nimmons, Buster
I keep getting a parsing error when I make changes to the orion xml files (such as orion-application.xml) and the server tries to pick up the changes with the following error Document root element is missing this happens sporadically and usually I simply keep doing a save till the document

JNDI RMI clustering problem

2001-11-28 Thread Akshat Bhargava
Hello, I am trying to accomplish RMI clustering and seem to be having JNDI problems in the process. I have performed the following changes to my deployment settings. 1) orion-application.xml Changed all bean remote=false to remote=true 2) rmi.xml Added rmi-server host=localhost port=9091 and

RE: Help: Out of Memory Error...

2001-11-28 Thread Vipul Mehta
java -ms128M -mx800M -jar orion.jar use this jvm setting where 128M is the minimum memory and 800M is the maximum memory jvm will use it to start orion. vipul -Original Message- From: Arjen Schoneveld [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 28, 2001 12:02 PM To:

RE: Help: Out of Memory Error...

2001-11-28 Thread Trujillo, Kris
What are you setting for your VM min/max heap settings? -Original Message- From: Arjen Schoneveld [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 28, 2001 1:02 PM To: Orion-Interest Cc: Arjen Schoneveld Subject: Help: Out of Memory Error... Hi All, We are about to deploy a new