Re: TomCat Does not recognize my servelt

2008-03-02 Thread Steve R Burrus
why did you have to misspell the word servlet anyway? Before u can get any help with your problem you must spell the subject of your e-mail correctly. - Original Message - From: Mark Thomas [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Sunday, March 02, 2008 4:28

Re: Configuring tomcat, servlet not found error

2007-12-23 Thread Steve R Burrus
hi. you say that you added the servlet/servlet tag to the * bottom * of your Deployment Descriptor file, the web.xml. Now I hope that you know -- u should know -- that that it is the very * first * thing contained in a web.xml file and you also need the servlet-mapping tag right under that. It

Re: How to increate memory resonably with Tomcat6, java 1.6..system: winxp , help appreciated.

2007-03-18 Thread Steve R Burrus
well what exactly is your problem anyway? U have just said : i m tomcat newer please be more specific!! - Original Message - From: Rashmi Rubdi [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Sunday, March 18, 2007 12:32 PM Subject: Re: How to increate memory

Re: problem starting Tomcat

2006-12-29 Thread Steve R Burrus
well boris what with this java exception in the server error msg. : java.lang.ClassNotFoundException you must not have placed/put the 2 jar files, servlet-api.jar and jsp-api.jar into your system's classpath yet. Goykhman, Boris wrote: Hi I have just installed Tomcat 5.0.28 on my XP

Re: How do I ........?

2006-11-15 Thread Steve R Burrus
just a tiny correction for you Chris, and that is that the code ought to be if(in = = null) not as u had it if(null = = in). Am I right or not? Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve, Steve R Burrus wrote: hi chris this is steve Burrus

Re: How do I ........?

2006-11-13 Thread Steve R Burrus
, Steve R Burrus wrote: here is the entire code for the image servlet which I seem to be repeatedly getting that NullPointerException java exception. Any ideas what the problem is ? : What line of code does the NPE show? Please give us the line of code and not just the line number. I'm

How do I ........?

2006-11-12 Thread Steve R Burrus
I know that this question of mine has been asked/answered in this group, but I was wondering how do I go about checking for a null value? I feel the need to do this in a servlet file that incorporates an image into it. -

Re: How do I ........?

2006-11-12 Thread Steve R Burrus
- From: Steve R Burrus [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Sunday, November 12, 2006 5:52 PM Subject: How do I ? I know that this question of mine has been asked/answered in this group, but I was wondering how do I go about checking for a null value? I feel the need

Re: Apache Tomcat\Windows XP\page not found error

2006-09-28 Thread Steve R Burrus
you might also try, in addition to of course setting the env. variable JAVA_HOME correctly, to point your PATH to the bin folder of your Tomcat installation and put both the servlet-api.jar and the jsp-api.jar into the CLASSPATH env. variable. Hope that helps you. Frank J Murray wrote:

Re: how to use tomcat libraries

2006-09-27 Thread Steve R Burrus
Michele my gut feeling initially is that you certainly cannot fail to put them into the lib folder of your web app. but I could be wrong I don't know! There is a lot about Tomcat that I really don't know about. Michele Mazzucco wrote: Hi all, how can I use the tomcat libraries (i.e. the

Re: Need Help w. Servlets And The JDBC.

2006-09-21 Thread Steve R Burrus
for whatever database you are connecting to. -Sameer --- Steve R Burrus [EMAIL PROTECTED] wrote: Hi all. I am an admitted newbie when it comes to using a database connection for a servlet to access. So can someone please tell me the basics about how exactly I should go about doing this?? I

Re: Need Help w. Servlets And The JDBC.

2006-09-21 Thread Steve R Burrus
to connect to a SQL Server 2000 or 2005, this is a good driver. On 9/21/06, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Steve R Burrus [mailto:[EMAIL PROTECTED] Subject: Re: Need Help w. Servlets And The JDBC. I don't suppose that on the Tomcat site there is a Type 4 database driver

Need Help w. Servlets And The JDBC.

2006-09-20 Thread Steve R Burrus
Hi all. I am an admitted newbie when it comes to using a database connection for a servlet to access. So can someone please tell me the basics about how exactly I should go about doing this?? I have been very much stumped about how I should do this for quite a long time now! I just know that I

Re: Too many problems. Need help.

2006-09-18 Thread Steve R Burrus
Kevin you need to submit please your Deployment Descrtiptor file, i.e., the web.xml, for the I assume a servlet kind of a web application! Yeah you are right about the server error msg., it never indicates exactly which line in that file has a problem in it. Kevin Mullin wrote: I just

Re: jsvc + Tomcat vs Apache + Tomcat

2006-09-11 Thread Steve R Burrus
I am sorry but I need to know what exactly this jsvc technolology is?? I have frankly never heard of it ever before. I await your anticipated response. Greg Johnson wrote: If I put Apache in front of Tomcat, can I run Tomcat on port 8080, yet have Apache serve the content on port 80? My

Re: decompiling classes

2006-09-07 Thread Steve R Burrus
Me thinks that Mr. Nicholas Irving is talking a bit tongue-in-cheek what with his 2 consecutive posts mentioning some money! You all agree? Filip Hanik - Dev Lists wrote: gee, this is so BS, you don't have to go through all that effort. download all the source in a single package from

Re: Tomcat startup error

2006-09-06 Thread Steve R Burrus
Socio_pal I might suggest that you maybe see that all of your env. variables are set correctly especially the classpath since you are getting the java.lang.ClassNotFoundException Java exception. socio_pal wrote: I am new to tomcat and I am using tomcat version 5.5.16. After deplying the

Re: Ang. Need Help w. Null Pointer Exception.

2006-08-30 Thread Steve R Burrus
yes the while loop is on line number 19 okay. Please forgive me for my ignorance about this, but I was wondering how I should go about doing that check for a non-null value?? [EMAIL PROTECTED] wrote: Is the while... line number 19? If so make atest that is != null before you continue.

Need Help w. A UnsupportedClassVersionError.

2006-08-30 Thread Steve R Burrus
I was trying to see a simple servlet when I got the following server error! What does that mean, a UnsupportedClassVersionError and how do I go about fixing this problem in hopefully the quickest way possible?? HTTP Status 500 -

Need Help w. Null Pointer Exception.

2006-08-29 Thread Steve R Burrus
I need some pretty immediate help/assistance with always getting a NullPointerException Java exception when I try to view a particular image in my favorite web browser!!! The line of text in my servlet file which is, I think, problemmatic is a while loop. Well here is my entire servlet file

Re. FileInputStream Class.

2006-08-26 Thread Steve R Burrus
Hi all. I was just wondering what were the methods that I should be using with the FileInputStream Class to be able to see/view an image in a servlet??

how to use the mod_jk2?

2006-08-20 Thread Steve R Burrus
hi I have ocassionally gotten/obtained the Apache http server to supposedly use with tomcat. I say supposedly because I have never been able to even start to connect the 2 servers thru the mod_jk2! Can someone please walk me through the whole procedure for doing this? Much thanx to anyone who

Re: how to use the mod_jk2?

2006-08-20 Thread Steve R Burrus
Okay you are right. So how do I go about setting up the mod_jk to be the connector between Tomcat and the Apache HTTP Server anyway? Mark Thomas wrote: Steve R Burrus wrote: hi I have ocassionally gotten/obtained the Apache http server to supposedly use with tomcat. I say supposedly

Re: Tomcat Crashed - Please Help.

2006-08-17 Thread Steve R Burrus
I assume that you have an entry in your System's classpath settings for every single jar file that the error indicates were not found for your jvm? Uday Bhaskar wrote: Hi, When I start tomcat following is th error message: Starting tomcat5: /usr/bin/rebuild-jar-repository: error: could not

Re: NullPointerException

2006-08-14 Thread Steve R Burrus
Please forgive my rather dumb naivete but what exactly is OpenEdit supposed to be anyway? I don't believe that I have ever heard of it before!! Antonio F. Tornisiello wrote: Hi, I'm facing a very strange problem trying to install OpenEdit as a WAR archive. If I extract it under the main

Re. Tomcat v. 5.5.17

2006-07-24 Thread Mr. Steve R. Burrus
Hello all. I have been having/encountering some difficulties in being able to activate the 5.5.17 version of the Tomcat server! Now at the top of the DOS window it is indicated that I don't have the proper Library path installed for Tomcat activation. Here is part of the error message : INFO: