RE: Newbie question

2001-09-03 Thread Peter Shankey
try http://yourhostname:8080/ if using with apache and you have gone through the setup http://yourhostname/examples/ Mark Gargan [EMAIL PROTECTED] wrote: Hi folks, I've just recently started using Tomcat and so far it's been giving me a bit of hassle. At first it couldn't find a class in

Re: Newbie question

2001-09-03 Thread asheesh
try http://localhost:8080/ or http://127.0.0.1:8080/ or http://yourmachineIP:8080/ cheers asheesh - Original Message - From: Mark Gargan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 03, 2001 5:49 PM Subject: Newbie question Hi folks, I've just recently

Re: Yet another newbie question

2001-08-29 Thread Mihai Gheorghiu
PROTECTED]' [EMAIL PROTECTED] Date: Wednesday, August 29, 2001 2:18 AM Subject: AW: Yet another newbie question Hi there, this is not a tomcat-problem. Your browser comes with Microsoft Java VM which is not able to handle any stuff from the javax.swing package. Furthermore it does not recognize

Yet another newbie question

2001-08-28 Thread Mihai Gheorghiu
I created (with NetBeans) a test applet that includes one JLabel field. I load it under Tomcat3.2.2 on RH7.0 and the browser (IE5.5) on another machine displays the html page with header Applet HTML Page and footer Generated by NetBeans IDE, but I get only a grey rectangle instead of the actual

Re: Yet another newbie question

2001-08-28 Thread Dmitri Colebatch
On Tue, 28 Aug 2001, Mihai Gheorghiu wrote: Tomcat generates an error message in the terminal window it was started from: 2001-08-28 12:12:00 - Ctx( /development ): 404 R( /development + /javax/swing/JApplet.class + null) null What should I do? firstly, if you want those messages to go

AW: Yet another newbie question

2001-08-28 Thread Amthauer, Heiner
well. Hope this helps. regards Heiner -Ursprüngliche Nachricht- Von: Mihai Gheorghiu [mailto:[EMAIL PROTECTED]] Gesendet am: Dienstag, 28. August 2001 18:23 An: [EMAIL PROTECTED] Betreff: Yet another newbie question I created (with NetBeans) a test applet that includes one JLabel

Re: Newbie question re .war files

2001-08-25 Thread Richard Draucker
Yes, .war files are archives. In fact they use the standard? zip format. So, if Tomcat doesn't open them automatically, you can do it manually with any unzipping program like winzip or gzip. - Richard On Friday 24 August 2001 10:12 am, you wrote: Hi, I'm pretty new to Tomcat and a

Newbie question re .war files

2001-08-24 Thread Jon Taylor
Hi, I'm pretty new to Tomcat and a designer not a developer so sorry if this is a dum one, but... I'm trying to get the Dreamweaver UltraDev TagLib extensions flying with our Tomcat 3.2.1 install. I've added 2 .war files to the $TOMCAT_HOME/webapps dir as per install notes but restarting

Re: Newbie question re '.war' files

2001-08-24 Thread Rob S.
I've added 2 .war files to the $TOMCAT_HOME/webapps dir as per install notes but restarting tomcat doesn't affect them and I can't find (yet) any other info on what I have to do to extract them (they are archives right?). Restarting Tomcat should have expanded them into their

Tomcat and Apache, very newbie question !

2001-08-01 Thread Gustavo Mejia
Hello, Could some one, give a brief explanation about why to use Apache and Tomcat Together ?? what is the main difference between them ? Thanks in advance! -- Gustavo Mejía Mora INFOTEC Tel: 5624 28 00 Ext: 253

RE: Tomcat and Apache, very newbie question !

2001-08-01 Thread Jeff Rancier
Apache is an HTTPD, where Tomcat is a servlet container (engine). -Original Message- From: Gustavo Mejia [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 2:31 PM To: [EMAIL PROTECTED] Subject: Tomcat and Apache, very newbie question ! Hello, Could some one, give a brief

RE: Tomcat and Apache, very newbie question !

2001-08-01 Thread Michael Wentzel
Apache is an HTTPD, where Tomcat is a servlet container (engine). Actually, Tomcat is also a httpd although not quite a effecient of a daemon as Apache, hence why it can also serve static content. Could some one, give a brief explanation about why to use Apache and Tomcat Together ?? what

newbie question

2001-07-03 Thread Sumit Ranjan
hi all! i am new with tomcat... having installed tomcat 3.2.2 and apache 1.3.11 on my NT 4.0... how will i come to know whether my apache and tomcat are communicating or notor rather what should i do to access tomcat from apacge(or vice-versa)... plz. help. Sumit Ranjan

Re: newbie question

2001-07-03 Thread Steven Turoff
I'm assuming you are running Tomcat on the default port, which is 8080. Start Tomcat and Apache and then go to: http://localhost:8080 Steve At 08:05 AM 07/03/2001, you wrote: hi all! i am new with tomcat... having installed tomcat 3.2.2 and apache 1.3.11 on my NT 4.0... how will i

Re: newbie question

2001-07-03 Thread Vinay Menon
- From: Sumit Ranjan To: [EMAIL PROTECTED] Sent: Tuesday, July 03, 2001 2:05 PM Subject: newbie question hi all! i am new with tomcat... having installed tomcat 3.2.2 and apache 1.3.11 on my NT 4.0... how will i come to know whether my apache and tomcat

Re: newbie question

2001-07-03 Thread Minglong Wu
TED] ; Sumit Ranjan Sent: Tuesday, July 03, 2001 7:58 AM Subject: Re: newbie question http://localhost - Apache homepage http://localhost:8080 - Tomcat homepage If both display then Apache is working and Tomcat is working. Loads of mails about how to set up Tomcat with

newbie question: I am doing something wrong?

2001-06-08 Thread James Bucanek
Greetings, My web hosting server recently installed Tomcat (Version 3.2.1 is reported on the default page). They say it's all installed, running, and ready to use. So, I copied over both .class and .jar files for a couple of servlets that have been running fine (on the very same server, I

a newbie question...

2001-06-02 Thread Gilson do N. D'Elrei
hello all, I have made a simple servlet (HelloWorldServlet2) and added it on my WEB-INF/Classes context. When I try to execute it using the url below: http://server:8080/mycontext/servlets/HelloWorldServlet2 i received "not found (404)" error. I tried also:

Re: a newbie question...

2001-06-02 Thread Wolle
Hello, try it with your first URL but without the 's' on servlet, like below: http://server:8080/mycontext/servlet/HelloWorldServlet2 I think that's is.. greetings; Wolle "Gilson do N. D'Elrei" wrote: hello all,I have made a simple servlet (HelloWorldServlet2) and added it on my

Re: a newbie question...

2001-06-02 Thread Bo Xu
Gilson do N. D'Elrei wrote: hello all,I have made a simple servlet (HelloWorldServlet2) and added it on my WEB-INF/Classes context. When I try to execute it using the url below: http://server:8080/mycontext/servlets/HelloWorldServlet2 i received not found (404) error. I tried also:

RE: newbie question about forte/tomcat

2001-04-30 Thread Adam Fowler
To: [EMAIL PROTECTED] Subject: newbie question about forte/tomcat Hello friends, I'm to starting in java/servlets development a few days... I have some questions. -When i launch Forte for java Editor does it must to recognize my tomcat installation like when i create a web application on M$ Visual

Newbie question with classpath and WEB-INF/lib and WEB-INF/classes

2001-04-17 Thread Chris Williams
I have Tomcat 3.2.1 running on Solaris and I have created a .war file containing my JSP's I want to execute. My JSP's import some classes I have create to help out with processing. When I call my JSP, I get errors saying my class isn't found for import. I have tried including the jar'd version

Re: Newbie question with classpath and WEB-INF/lib and WEB-INF/classes

2001-04-17 Thread Sam Newman
To: [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 1:51 PM Subject: Newbie question with classpath and WEB-INF/lib and WEB-INF/classes I have Tomcat 3.2.1 running on Solaris and I have created a .war file containing my JSP's I want to execute. My JSP's import some classes I have create t

Re: Newbie question with classpath and WEB-INF/lib and WEB-INF/classes

2001-04-17 Thread Chris Williams
To: [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 8:53 AM Subject: Re: Newbie question with classpath and WEB-INF/lib and WEB-INF/classes You should just put the jar file in the lib directory try doing it unpacked, so you have: WEB-INF/classes - your servlets/jsp's WEB-INF/lib - your

Newbie question

2001-04-13 Thread ties . van . raak
Hi, I have installed tomcat on my redhat 7 server with mod_jk All seems to be ok, tomcat serves html files oke on my server at port 8080, but when i request .jsp files, it gives an error 404. This is the log file from a .jsp request: 2001-04-13 04:29:45 - JspEngine -- /jsp/dates/date.jsp

RE: Newbie question

2001-04-13 Thread Henry San
Check your "mod_jk.conf-auto" and make sure you "Include" that file in your http.conf file. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, April 13, 2001 10:53 AM To: [EMAIL PROTECTED] Subject: Newbie question Hi, I have in

RE: Newbie question

2001-04-13 Thread Wick, Daniel
]] Sent: Friday, April 13, 2001 9:53 AM To: [EMAIL PROTECTED] Subject: Newbie question Hi, I have installed tomcat on my redhat 7 server with mod_jk All seems to be ok, tomcat serves html files oke on my server at port 8080, but when i request .jsp files, it gives an error 404

RE: Newbie Question, this should be easy

2001-02-19 Thread Samson, Lyndon [IT]
You should really run tomcat using the jdk from Sun ( or IBM ) rather than that supplied by an IDE. -Original Message- From: Ashant Chalasani [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 17, 2001 8:19 AM To: [EMAIL PROTECTED] Subject: RE: Newbie Question, this should be easy

RE: Newbie Question, this should be easy

2001-02-17 Thread Ashant Chalasani
:\JBuilder3, and this starts up the tomcat server fine and also processes servlets right. Where should tools.jar be included, if still needed. Thanks, Ashant From: "CPC Livelink Admin" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Newbie Question, this shou

Newbie Question, this should be easy

2001-02-16 Thread Ashant Chalasani
Hi all, I have the following error when trying to load a simple JSP page. Please find the JSP code as well as the error below. Could someone see what the problem is? Thanks in advance, AC JSP --- % page import = "Input.Splash" % JSP:USEBEAN id="schedule"

RE: Newbie Question, this should be easy

2001-02-16 Thread CPC Livelink Admin
instead - rats) Regards, Paul -Original Message- From: Ashant Chalasani [mailto:[EMAIL PROTECTED]] Sent: Friday, February 16, 2001 8:25 PM To: [EMAIL PROTECTED] Subject: Newbie Question, this should be easy Hi all, I have the following error when trying to load a simple JSP page

RE: Newbie Question, this should be easy

2001-02-16 Thread James Goodwill
It is jsp:useBean and jsp:setProperty. The JSP standard actions are camel case and follow the bean spec. Thanks, James -Original Message- From: CPC Livelink Admin [mailto:[EMAIL PROTECTED]] Sent: Friday, February 16, 2001 7:37 PM To: [EMAIL PROTECTED] Subject: RE: Newbie Question

RE: Another Newbie Question -- Urgent Please!

2001-02-08 Thread Rezaul H. Safiuddin
vlet api's in your compilers classpath? --erik -Original Message- From: Rezaul H. Safiuddin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 10:09 PM To: [EMAIL PROTECTED] Subject: Another Newbie Question -- Urgent Please! How come I am

RE: Another Newbie Question -- Urgent Please!

2001-02-08 Thread Randy Layman
See responses mixed in below -Original Message- From: Rezaul H. Safiuddin [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 11:14 AM To: [EMAIL PROTECTED] Subject: RE: Another Newbie Question -- Urgent Please! Now I have a really stupid question ;-) ... Ok When I run

RE: Another Newbie Question -- Urgent Please!

2001-02-08 Thread Stefan Langer
Hi I think what you are seeing is apache telling you that mod_jk is installed. (Correct me if I'm wrong) But it doesn't mean that tomcat is actually running. Unless you changed the startup script tomcat has to be started seperatly. To check if Tomcat is running just log onto port 8080 as

Another Newbie Question -- Urgent Please!

2001-02-07 Thread Rezaul H. Safiuddin
How come I am not being able to compile a HelloWorldServlet.java with jdk1.3 ? Its giving me hundreds of compiler errors. I need to compile this file and create the .class file . Do I need something especial for compiling servlets ? I already installed the TomCat 3.2.1 . Any Help would be

RE: Another Newbie Question -- Urgent Please!

2001-02-07 Thread Erik LaBianca
Do you have the servlet api's in your compilers classpath? --erik -Original Message- From: Rezaul H. Safiuddin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 10:09 PM To: [EMAIL PROTECTED] Subject: Another Newbie Question -- Urgent Please! How come I am not being able

RE: Another Newbie Question -- Urgent Please!

2001-02-07 Thread Rezaul H. Safiuddin
To: [EMAIL PROTECTED] Subject: Another Newbie Question -- Urgent Please! How come I am not being able to compile a HelloWorldServlet.java with jdk1.3 ? Its giving me hundreds of compiler errors. I need to compile this file and create the .class file . Do I need something especial

RE: Another Newbie Question -- Urgent Please!

2001-02-07 Thread Scott Walter
On Wed, 7 Feb 2001, Erik LaBianca wrote: Do you have the servlet api's in your compilers classpath? --erik -Original Message- From: Rezaul H. Safiuddin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001 10:09 PM To: [EMAIL PROTECTED] Subject: Anot

RE: Another Newbie Question -- Urgent Please!

2001-02-07 Thread Erik LaBianca
lto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 12:02 AM To: [EMAIL PROTECTED] Subject: RE: Another Newbie Question -- Urgent Please! No you don't have to download anything extra. The classes are included with tomcat in the servlet.jar file, which is located in the lib directory under y

Newbie question: How does Tomcat implement HttpSession?

2001-02-06 Thread david . svanberg
Our load balancer supports two ways of keeping the state of the sessions between requests, ip source (all clients from the same subnet will be redirected to that Tomcat server) and cookie based (a little more flexible approach), that is if the client allows cookies. To enable cookie based load

Re: Newbie question: How does Tomcat implement HttpSession?

2001-02-06 Thread Kief Morris
[EMAIL PROTECTED] typed the following on 01:10 PM 2/6/2001 +0100 Our load balancer supports two ways of keeping the state of the sessions between requests, ip source (all clients from the same subnet will be redirected to that Tomcat server) and cookie based (a little more flexible approach),

Newbie Question

2001-02-05 Thread Mike S. Avelar
I just installed Tomcat 3.2 on Apache 1.3.14. Installed like a charm, all I had to do was restart both services and Apcahe was feeding up the static stuff and Tomcat the JSP/JavaServlets. For the last few days I've been thrying to comprehend the "User's Guide"... Maybe its just me...

RE: Newbie Question

2001-02-05 Thread Stefan Langer
For the password you need to go into the tomcat-user.xml file and create a password and user for the admin role. it's pretty straight forward but just in case put in a line like user name="tomcat" password="tomcat" roles="admin" / roles corresponds to the realm . BTW tomcat-user.xml

Re: Newbie Question

2001-02-05 Thread Mike S. Avelar
Thank you, I'll give that a go. Stefan Langer wrote: For the password you need to go into the tomcat-user.xml file and create a password and user for the admin role. it's pretty straight forward but just in case put in a line like user name="tomcat" password="tomcat" roles="admin" /

RE: newbie question

2001-01-10 Thread Michael Kuz
Title: RE: newbie question Yes. mod_jk forwards the requests to 8007 (by default). Just comment out the connector on 8080 that listens for HTTP. -Original Message- From: Henry DU [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 5:55 PM To: [EMAIL PROTECTED] Subject

newbie question

2001-01-09 Thread Henry DU
The servlet URL is the same when I typed http://my.domainame.com/examples/servlet/HelloWorld and http://my.domainame.com:8080/examples/servlet/HelloWorld, they display the same information. Is this due to that Apache port 80 redirects to tomcat 8080 as indicated in server.xml? Thanks

RE: newbie question

2001-01-09 Thread Michael Kuz
Title: RE: newbie question Actually, Apache (on port 80) is forwarding the servlet requests to Tomcat, AND Tomcat has a stand alone web server running on port 8080. Edit your server.xml file and comment out/remove the connector listening on 8080 Michael R. Kuz Developer Service

Re: newbie question

2001-01-09 Thread Robert Wohleb
Apache "forwards" requests to a tomcat "handler" based upon the rules specified, say like *.jsp. The handlers are the things called APJ12, APJ13, etc. Tomcat has the ability to act as its own web server, and by defualt it is on port 8080 where apache is 80. Is this what you were asking about?

RE: newbie question

2001-01-09 Thread Henry DU
If I remove or comment out connector, can Apache send the servlet/jsp requests to tomcat? Thanks From: Michael Kuz [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" [EMAIL PROTECTED] Subject: RE: newbie question Date: Tue, 9 Jan 2001 15:54:35 -0700 Actual

newbie Question : applet/stylesheet not loading!!

2000-12-14 Thread Web Master
I am using TOMCAT3.2. I tried my application on my local host everything looks and works great. My server is a Windows NT. When I tried the same application from a Windows 95 using http://xx.xx.xx.xx:8080/ccs it is working fine except this is loading neither the Stylesheets nor Applets. Does

Tomcat under UNIX Newbie Question

2000-12-07 Thread Stuart Morse
Hi All, I've used Tomcat on Win32 a little, and I'm about to enter the world of Unix. I noticed that there is one .tar file for Unix, but I may be using Solaris, UnixWare 7 or FreeBSD for Intel, or AIX for Risc System 6000. Does the .tar file contain the Tomcat source only? If so, is the source

RE: Tomcat under UNIX Newbie Question

2000-12-07 Thread Randy Layman
:[EMAIL PROTECTED]] Sent: Thursday, December 07, 2000 11:19 AM To: [EMAIL PROTECTED] Subject: Tomcat under UNIX Newbie Question Hi All, I've used Tomcat on Win32 a little, and I'm about to enter the world of Unix. I noticed that there is one .tar file for Unix, but I may be using Solaris, UnixWare

Re: Tomcat under UNIX Newbie Question

2000-12-07 Thread Peter Choe
there is a tomcat binary file that you can download and untar. no need to compile it. Stuart Morse wrote: Hi All, I've used Tomcat on Win32 a little, and I'm about to enter the world of Unix. I noticed that there is one .tar file for Unix, but I may be using Solaris, UnixWare 7 or

<    1   2   3   4