Question about startup...

2001-06-07 Thread Skidmore, Walt
Title: Question about startup... I'm trying to start Tomcat 3.2.2 up without using the included batch files, but instead using the following line: java -Dtomcat.home=/usr/local/tomcat org.apache.tomcat.startup.Tomcat -start I'm getting this error, though: Exception in thread main

RE: Simple question

2001-06-04 Thread Skidmore, Walt
Title: RE: Simple question I know it's not Tomcat, but I was working with WebLogic, and it didn't have the capability to disable directory browsing. So, I put in a redirect page (index.html) into each directory and that took care of it. Kinda tedious, but necessary at times. -Original

Introspection Problem?

2001-06-04 Thread Skidmore, Walt
Title: Introspection Problem? I'm getting the following stack trace: --- ERROR HAS OCCURRED:Can't find a method to write property 'company' in a bean of type 'medinex.web.demographics.InsurancePolicyBean' STACKTRACE: org.apache.jasper.JasperException: Can't find a method

FW: Introspection Problem?

2001-06-04 Thread Skidmore, Walt
Title: FW: Introspection Problem? Nevermind. After months, I've figured out the problem, and it has nothing to do with Tomcat. Please disregard my previous message. -Original Message- From: Skidmore, Walt Sent: Monday, June 04, 2001 9:08 AM To: '[EMAIL PROTECTED]' Subject

RE: Upgrading tomcat 3.2.1 to 3.2.2

2001-06-01 Thread Skidmore, Walt
Title: RE: Upgrading tomcat 3.2.1 to 3.2.2 I just saved all my necessary conf files and other files (jsps, classes, libs, etc), and put it over the top... Then I put them back in... So, it wasn't very difficult for me. I'm running standalone, though. -Original Message- From: Brandon

RE: Tomcat/JSP Question

2001-06-01 Thread Skidmore, Walt
Title: RE: Tomcat/JSP Question Try putting in get/set methods for the object, then getting them that way, e.g.: -- public Object getMyObject() { return myObject; } public void setMyObject(Object _o) { myObject = _o; } % Object myObject = EX.getMyObject(); % --