RE: Admin, remove me please!!! -- I just can't do it myself.

2001-03-13 Thread Morahg, Yoav
Read the following excerpt from the mailing program's welcome note to see how to remove an email address other than the one you are sending from. I'm not sure if this will work if you can't get the e-mail the system sends to your old address, but it's worth a try. Good luck, -Yoav

RE: confused

2001-02-28 Thread Morahg, Yoav
Make sure WEB-INF is all in caps -- it has to be. -Yoav -Original Message- From: Lori Edelen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 28, 2001 12:28 PM To: [EMAIL PROTECTED] Subject: Re: confused Okay, I did that but it is not finding the classes in the /Web-inf/classes.

RE: halcyonsoft iasp

2001-02-26 Thread Morahg, Yoav
Actually, the web.xml file in conf is ignored in 3.2 and is back in use in 4.x Yoav -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Monday, February 26, 2001 10:12 AM To: [EMAIL PROTECTED] Subject: RE: halcyonsoft iasp For Tomcat 3.2: In the conf

RE: R: Problem with a new version of JSP pages

2001-02-21 Thread Morahg, Yoav
Are the pages which aren't reloading by chance included on another .jsp page with the %@include directive? If so, this is your problem. The @include directive is a static include which is simply inserted into the calling .jsp page at compile time (as opposed to a dynamic include in which the

RE: JSP and standard Java Beans

2001-02-15 Thread Morahg, Yoav
I'm not a Tomcat guru -- so someone please correct me if I'm wrong, but you should be able to put your beans in the WEB-INF/classes directory. JSPs can go under your webapp, but not in the WEB-INF directory as this directory is forbidden for client access. Hope this helps. -Yoav -Original

RE: Time exceeded

2001-02-09 Thread Morahg, Yoav
I ran into this problem when I was doing something that required a longer time than the standard timeout. The solution was to change the Timout directive in the Apache httpd.conf file. I think the default is 300 -- this is in seconds so it means 5 minutes, so I changed mine to 600 and

RE: Speeding up database accesses

2001-02-06 Thread Morahg, Yoav
An excellent db connection pooling system is available at www.javaexchange.com We have been using it for over a year and haven't had any trouble with it. It's also fairly simple to use. Check it out. -Yoav -Original Message- From: John Coonrod [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: Unable to read more than 1 init param

2001-02-06 Thread Morahg, Yoav
You need init-param/init-param tags to enclose each param-nameparam-value/param-value/param-name set. So the init-param portion of your web.xml would look like this: init-param param-namebar/param-name param-value sadsadasda

RE: checking and recompiling JSPs

2001-02-01 Thread Morahg, Yoav
Does the reloadable flag have anything to do with recompiling jsps or is it just related to reloading classes when they change? -Yoav -Original Message- From: Stefan Langer [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 3:10 PM To: [EMAIL PROTECTED] Subject: RE: checking

RE: problem with classpath and .jar files

2001-01-23 Thread Morahg, Yoav
.jars go in the WEB-INF/lib directory, not WEB-INF/classes. -Yoav -Original Message- From: Andr Alves [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 1:18 PM To: [EMAIL PROTECTED] Subject: Re: problem with classpath and .jar files In winnt I placed .jar below of the

RE: problem in running startup.bat

2001-01-16 Thread Morahg, Yoav
Perhaps the current directory (.) is not in your path? Try ./startup.bat -Y -Original Message- From: Ezhil M [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 3:40 PM To: [EMAIL PROTECTED] Subject: problem in running startup.bat Hi, Can anyone help me out.When i tried to

RE: problem in running startup.bat

2001-01-16 Thread Morahg, Yoav
Sorry... .\startup.bat if you're on Windows -Original Message- From: Morahg, Yoav [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 3:48 PM To: '[EMAIL PROTECTED]' Subject: RE: problem in running startup.bat Perhaps the current directory (.) is not in your path? Try

RE: Compile Error in JSP generated servlet

2000-12-20 Thread Morahg, Yoav
You are declaring the String array twice in your code. The first one is okay... String [] _tmpS = new String[7]; but you can't do this again in your code. If you want to create a new String array for _tmpS after already declaring _tmpS you should do it without declaring it... _tmpS = new

RE: Tomcat - Fresh data not brought forward

2000-11-28 Thread Morahg, Yoav
Try using the Oracle commit command to commit your changes to the database. -Y -Original Message- From: ann patil [mailto:[EMAIL PROTECTED]] Sent: Monday, November 27, 2000 9:41 PM To: [EMAIL PROTECTED] Subject: Tomcat - Fresh data not brought forward Hi, I have developed an