Re: where to keep class files - newbie

2002-08-21 Thread Anoop Kumar V
vtr, wait let me get this correct.. Have you created the jspchar.java file and compiled it and it is in the web-inf/classes folder?? And are you sure of the package name "import javaside.rbl.*;" because it is case sensitive..may be it is Rbl or whatever. And i hope u hv recompiled the jspchar.ja

Re: Off topic: Apache Problem!

2002-08-21 Thread Dayanand
Hi, Over-writing files should be possible. I have not faced a similar situation, and sorry I don't have an answer to this issue. But, if your requirement is urgent. I just want to suggest another solution / alternative. I am assuming the crystal reports scheduler will be running only once daily

Off topic: Apache Problem!

2002-08-21 Thread It, Cockpit (CAP, Contractor)
Dear Friends, I have a problem in my IBM HTTP server which has been built on top of Apache web server. My problem is like this I have a virtual folder which has been mapped to Crystal Report's sechduler. This scheduler will generate files and put them in to this folder... Then our users will

Re: where to keep class files - newbie

2002-08-21 Thread Anoop Kumar V
vtr, u have given import jchart.*. This u might have done becoz of the jchart.jar u hv in ur lib folder. But it is not necessary that the name of the jar file be related to the package structure of ur class files. u can check out the package structure if u hv the java source files or else u can u

Re: where to keep class files - newbie

2002-08-21 Thread Anoop Kumar V
Can you give us more info, as to which version of Tomcat and what are the exact messages u get on the Tomcat console or in log files.. is it ClassNotFoundException or ?? and where exactly is ur web-inf and what is the url u are giving to access these classes?? -anoop -Original Message- F

Re: where to keep class files - newbie

2002-08-21 Thread Shawn Bayern
On Thu, 22 Aug 2002, vtr wrote: > Hi I have Tomcat running over apache on a unix machine. When I have > some class file kept in the WEB-INF/classes/ folder the server is > unable to detect it whereas the tomcat mannuals say that if you have > class files keep in classes and if you have jar file k

where to keep class files - newbie

2002-08-21 Thread vtr
Hi I have Tomcat running over apache on a unix machine. When I have some class file kept in the WEB-INF/classes/ folder the server is unable to detect it whereas the tomcat mannuals say that if you have class files keep in classes and if you have jar file keep in lib. Please help me regard

Re: Applet-XML-JSP

2002-08-21 Thread Lakshmeenarayana G G
My XML is generated programmatically during runtime. I need to make sure it follows the pattern which is defined in Schema or DTD unless I trust the program generating the XML completely. So If I use Schema or DTD for validation, will it go to the client side where parsing is done? Cheers. L G Go

Re: File upload

2002-08-21 Thread Daniel
Very Good question zip your files and upload. Daniel Jayapaul.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some

A special new website

2002-08-21 Thread listserv
The University of Washington's email anti-virus scanners detected the virus W32/Klez.h@MM in attachment unknown in a message sent from <[EMAIL PROTECTED]> to <[EMAIL PROTECTED]> . The following action was taken: Deleted and Quarantined. Please contact your local computer support or help@cac fo

Re: Applet-XML-JSP

2002-08-21 Thread Martin Gainty
If you are already able to parse the XML why do you need a XML Schema or DTD?? Curious,-Martin >From: Lakshmeenarayana G G <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: Applet-XML-JSP >Date: Wed, 21 Aug 2002 15:33:11 +0530 >MIME-Version: 1.0 >Received: from

Re: File upload

2002-08-21 Thread Bhangale, Bhushan
I guess u need to use an applet to do that as the normal file input tag of a form can upload only files and not directory. -Original Message- From: subbu [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 1:46 AM To: [EMAIL PROTECTED] Subject: File upload How to upload a direct

Re: JSTL quick reference

2002-08-21 Thread Zahid Rahman
you wrote :- > This may be a dumb question, but can someone provide a really quick synopsis > explaining WHY JSTL tags are preferable to regular JSP 1.1 tags. > what are the benefits / advantages ? You can find a brief description and the aims at this page. http://www.theserverside.com/resour

Re: Bug ?

2002-08-21 Thread Martin Gainty
Hello Robert: 0)Ok-Lets assume you have all the libraries (see the dump for the listing of all the Libraries) on your path or relatively pathed  to the current folder. (for example CurrentFolder/Lib)1)It would STILL be great if there was a Stack Trace that way you could see the native call your Ja

Re: JSTL quick reference

2002-08-21 Thread Zahid Rahman
you wrote :- > This may be a dumb question, but can someone provide a really quick synopsis > explaining WHY JSTL tags are preferable to regular JSP 1.1 tags. > what are the benefits / advantages ? You can find a brief description and the aims at this page. http://www.theserverside.com/resour

Re: Bug ?

2002-08-21 Thread Robert Misior
Hello, Thank you for your reply. My application is very simple. It is used to maintain a email mailing lists stored in flat files. It is written fully in java. The error happens when the application is most likely idol (very late at night or early in the morning). So far I can't find any way

Re: Connection Pooling

2002-08-21 Thread Gene Chuang
There is a one-to-one relationship between connections and transactions in your container. Not knowing your architecture, whether each of your request will spawn one txn, multiple serial txns, or multiple nested txns, I think the best rule-of-thumb is to set the max number of txns to be at lea

Re: lists won't get refreshed?!

2002-08-21 Thread David Castro
> I have some (ActionForward) servlets getting executed when jumping from > one page to another, retrieving data from a database and putting them in > an ArrayList which I put as an Attribute to my HttpSession. My next jsp > gets these entries from the ArrayList and displays them. > When I retrie

Re: JSTL quick reference

2002-08-21 Thread Shawn Bayern
On Tue, 20 Aug 2002, M. Simms wrote: > This may be a dumb question, but can someone provide a really quick > synopsis explaining WHY JSTL tags are preferable to regular JSP 1.1 > tags. what are the benefits / advantages ? To me it seems like > just another software layer (XPath) to learn, mas

Bug ?

2002-08-21 Thread Robert Misior
Hello, I'm having a very strange problem. I'm not sure if it is caused by Tomcat, JVM or my application. At first I was using Blackdown-1.3.1_02b-FCS jvm and tomcat 4.0, later I have upgraded to Sun's JVM build 1.4.0_01-b03 but the same thing happen. Now I have upgraded Tomcat to version 4.0.4

Applet-XML-JSP

2002-08-21 Thread Lakshmeenarayana G G
Hi, I have XML file which is on the server. I am rendering a Tree using JTree on the client side through applet. I am using the XML file to feed the applet tree by parsing the XML through one of the method in the applet. If I use DTD or SCHEMA for the XML file, Does this comes to client side?? sin