AUTO 'Getty=987-449'dumb newbie question

2004-01-30 Thread Getty Images USA Support
case ID is:987449 -Original Message- From: Jonas Stricker [EMAIL PROTECTED] Sent: Friday, Jan 30 2004 3:43AM To: [EMAIL PROTECTED] [EMAIL PROTECTED] Subject: dumb newbie question -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello all, I would like to know wether theres a not too

AUTO 'Getty=987-535'dumb newbie question

2004-01-30 Thread Getty Images USA Support
case ID is:987535 -Original Message- From: Ralph Einfeldt [EMAIL PROTECTED] Sent: Friday, Jan 30 2004 3:48AM To: Tomcat Users List [EMAIL PROTECTED] Subject: dumb newbie question You can define a servlet filter that parses the response stream. Depending on what you have to parse

Re: dumb newbie question

2004-01-30 Thread Adam Hardy
:[EMAIL PROTECTED] Sent: Friday, January 30, 2004 12:20 PM To: [EMAIL PROTECTED] Subject: dumb newbie question I would like to know wether there´s a not too sophisticated method to clean up the output of JSPs that are rendered by tomcat. Reason: I am supposed to produce some XML dynamically, which has

Virtual Host newbie question ?

2004-01-16 Thread Chakravarthy, Sundar
I have setup apache/tomcat/ with Vhost and everything works great! However, I am not able to use the IP alone with the server name to access the system i.e. http://server_name http://server_name/ works but not http://IP http://ip/ Why? Thanks

Re: Virtual Host newbie question ?

2004-01-16 Thread Howard Watson
What is the vailue of UseCanonicalName in your apache conf? [EMAIL PROTECTED] 01/16/04 08:36AM I have setup apache/tomcat/ with Vhost and everything works great! However, I am not able to use the IP alone with the server name to access the system i.e. http://server_name

RE: Virtual Host newbie question ?

2004-01-16 Thread Chakravarthy, Sundar
Hi, It is set to Off. Should it be On? -Original Message- From: Howard Watson [mailto:[EMAIL PROTECTED] Sent: Friday, January 16, 2004 11:12 AM To: [EMAIL PROTECTED] Subject: Re: Virtual Host newbie question ? What is the vailue of UseCanonicalName in your apache conf? [EMAIL

RE: Virtual Host newbie question ?

2004-01-16 Thread Howard Watson
: Re: Virtual Host newbie question ? What is the vailue of UseCanonicalName in your apache conf? [EMAIL PROTECTED] 01/16/04 08:36AM I have setup apache/tomcat/ with Vhost and everything works great! However, I am not able to use the IP alone with the server name to access the system i.e

How does a servlet request work. Not a newbie question ;)

2004-01-09 Thread Donie Kelly
Hi all I want to insert some form of scheduling into our application and I was wondering how Tomcat passes the request to the actual servlet I write. Does Tomcat just read the headers to create the request object and leave the body of the message in an inputstream for the servlet to

Re: How does a servlet request work. Not a newbie question ;)

2004-01-09 Thread Nikola Milutinovic
Donie Kelly wrote: Hi all I want to insert some form of scheduling into our application and I was wondering how Tomcat passes the request to the actual servlet I write. Does Tomcat just read the headers to create the request object and leave the body of the message in an inputstream for the

RE: How does a servlet request work. Not a newbie question ;)

2004-01-09 Thread Donie Kelly
processor cannot be assigned with a specified time frame. Thanks Donie -Original Message- From: Nikola Milutinovic [mailto:[EMAIL PROTECTED] Sent: 09 January 2004 12:34 To: Tomcat Users List Subject: Re: How does a servlet request work. Not a newbie question ;) Donie Kelly wrote: Hi all

RE: How does a servlet request work. Not a newbie question ;)

2004-01-09 Thread Shapira, Yoav
To: Tomcat Users List (E-mail) Subject: How does a servlet request work. Not a newbie question ;) Hi all I want to insert some form of scheduling into our application and I was wondering how Tomcat passes the request to the actual servlet I write. Does Tomcat just read the headers to create the request

Re: How does a servlet request work. Not a newbie question ;)

2004-01-09 Thread Bill Barker
I'm answering the question that you asked, but my answer is less useful than Yoav's :). With a small number of exceptions (such as POSTs to j_security_check), Tomcat-standalone reads the headers, and leaves the body until your servlet tells it what to do with it. The case of Tomcat-Jk is a bit

Re: newbie question

2004-01-07 Thread Bill Barker
FRANCOIS Dufour [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] i read an eror in tomcat apache log 2004-01-02 08:09:46 [org.apache.catalina.connector.warp.WarpConnector] Error accepting requests java.net.SocketException: socket closed at

Re: newbie question

2004-01-07 Thread FRANCOIS Dufour
thanks [EMAIL PROTECTED] crazy-wilys webmaster From: Bill Barker [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: newbie question Date: Wed, 7 Jan 2004 00:07:29 -0800 FRANCOIS Dufour [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] i

newbie question

2004-01-06 Thread FRANCOIS Dufour
i read an eror in tomcat apache log 2004-01-02 08:09:46 [org.apache.catalina.connector.warp.WarpConnector] Error accepting requests java.net.SocketException: socket closed at java.net.PlainSocketImpl.socketAccept(Native Method) at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:463) at

Re: another newbie question

2004-01-05 Thread FRANCOIS Dufour
it or the copy paste from is webapps [EMAIL PROTECTED] crazy-wilys webmaster From: Philipp Taprogge [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: another newbie question Date: Tue, 30 Dec 2003 16:12:31 +0100 Hi! FRANCOIS

another newbie question

2003-12-30 Thread FRANCOIS Dufour
whicht database should i use under tomcat [EMAIL PROTECTED] crazy-wilys webmaster _ MSN Search, le moteur de recherche qui pense comme vous ! http://fr.ca.search.msn.com/

Re: another newbie question

2003-12-30 Thread Philipp Taprogge
Hi! FRANCOIS Dufour wrote: whicht database should i use under tomcat That does not so much depend on tomcat but rather on the needs of your application. Today almost any major RDBMS has a JDBC driver and that's all you need. If you want a database that is simple to administrate but comes with

Newbie question

2003-12-11 Thread Dave Robbins
Hello All, Hope someone can help me out. I developed a servlet using Netbeans and when I tried to deploy it I had problem In an attempt to debug, I went back to Netbeans and created the simplest servlet I could, it just prints out some text. Works fine in development environment. Netbeans has

Re: Newbie question

2003-12-11 Thread Ben Souther
First: Did Netbeans create a deployment descriptor for you (WEB-INF/web.xml)? If so, look for a servlet mapping in the descriptor. It will look something like this: servlet-mapping servlet-nameHelloWorldServlet/servlet-name url-pattern/HelloWorld/url-pattern /servlet-mapping

RE: Newbie question

2003-12-11 Thread Dave Robbins
I figured it out :-) the path to the servlet name foo is http:/www.xxx.yyy.zzz:8080/test/servlet/foo -Original Message- From: Dave Robbins [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2003 11:51 AM To: '[EMAIL PROTECTED]' Subject: Newbie question Hello All, Hope someone

RE: Newbie question

2003-12-11 Thread Wendell Holmes
Tomcat will not serve any files in WEB-INF or below that directly to a user, so that's probably why it's not in the dir listing. -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED] Sent: Thursday, December 11, 2003 9:55 AM To: Tomcat Users List Subject: Re: Newbie question

Tomcat 4.1 -- Newbie Question

2003-11-07 Thread Gopalakrishnan Govindakrishnan
Hi: I am new to Tomcat and would like some help ... 1) Does Tomcat write out a log file when I initially start it? I have installed Tomcat 4.1 under windows 2000 and when I use the start programs -- Apache Tomcat 4.1 -- Start Tomcat, it opens a command window, but, it disappears quickly

RE: Tomcat 4.1 -- Newbie Question

2003-11-07 Thread Lee, Paul NYC
Yep, check out the logs directory. There will be a catalina.out file that captures all stdout and stderr. -Original Message- From: Gopalakrishnan Govindakrishnan [mailto:[EMAIL PROTECTED] Sent: Friday, November 07, 2003 8:23 AM To: [EMAIL PROTECTED] Subject: Tomcat 4.1 -- Newbie

Tomcat 4.1 -- Newbie Question

2003-11-06 Thread Gopalakrishnan Govindakrishnan
Hi: I am fairly new to installing and configuring Tomcat. But, 4.1 version seemed easy enough. Thanks. Now, I am not an expert on java or web apps, but, here's my problem. I have a webapp test. I want to deploy it under Tomcat 4.1. I create the war file with the web.xml under WEB-INF

RE: Tomcat 4.1 -- Newbie Question

2003-11-06 Thread Shapira, Yoav
PROTECTED] Subject: Tomcat 4.1 -- Newbie Question Hi: I am fairly new to installing and configuring Tomcat. But, 4.1 version seemed easy enough. Thanks. Now, I am not an expert on java or web apps, but, here's my problem. I have a webapp test. I want to deploy it under Tomcat 4.1. I create

Re: Tomcat 4.1 -- Newbie Question

2003-11-06 Thread Gopalakrishnan Govindakrishnan
, it should work in tomcat. What errors does your log contain? Yoav Shapira Millennium ChemInformatics -Original Message- From: Gopalakrishnan Govindakrishnan [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 9:56 AM To: [EMAIL PROTECTED] Subject: Tomcat 4.1 -- Newbie

Newbie Question - Fatal Configuration Error

2003-11-06 Thread Wayne Sinclair
Can anyone please help. Tomcat was moved from a Windows NT to a Windows 2000 environment. When starting up tomcat I get a FATAL CONFIGURATION ERROR. A dump of the error message is below. Thanks Wayne Sinclair ERROR reading C:\JBoss-2.4.4_Tomcat-3.2.3\tomcat\conf\server.xml At Line 124

Newbie question

2003-10-10 Thread Jesús Gutiérrez Ramírez
Hi, I'm new using tomcat (over windows xp) and ANT, I was doing the example exercise http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/index.html, using the files included. When I want to install my app on the tomcat server using the ANT INSTALL command I receive the next

Re: Newbie question

2003-10-10 Thread Jon Wingfield
Your windoze path is probably being interpreted as a url without a protocol. The drive letter C is being interpreted as a hostname. Try with something like file:///c:\path\to\war\app.war HTH, Jon Jesús Gutiérrez Ramírez wrote: Hi, I'm new using tomcat (over windows xp) and ANT, I was

Re: Newbie Question: Tomcat 3.2.3 + JDK1.3.1_09 + Win2K

2003-10-06 Thread Graham Reeds
I just took a quick look in the CVS, and it looks like you are right. I don't know why the batch file doesn't run. At least it's not me then:-) You could try: set JAVA_HOME=c:\progra~1\jdk1.3.1_09 and see if it helps. Tried that and it didn't work. Same message as before. Thanks for

Re: Newbie Question: Tomcat 3.2.3 + JDK1.3.1_09 + Win2K

2003-10-03 Thread Bill Barker
I haven't used 3.2.x in a very very long time. My first guess would be to check the batch files. From the error you are getting, it may just not be quoting the initial Java command. Of course, it is useless to submit a bug-report, since the 3.2.x line is no longer maintained. Graham Reeds

Re: Newbie Question: Tomcat 3.2.3 + JDK1.3.1_09 + Win2K

2003-10-03 Thread Graham Reeds
Bill Barker [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I haven't used 3.2.x in a very very long time. My first guess would be to check the batch files. From the error you are getting, it may just not be quoting the initial Java command. They are both in quotes - I forgot to

Re: Newbie Question: Tomcat 3.2.3 + JDK1.3.1_09 + Win2K

2003-10-03 Thread Bill Barker
Graham Reeds [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Bill Barker [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I haven't used 3.2.x in a very very long time. My first guess would be to check the batch files. From the error you are getting, it may just not be

Newbie Question: Tomcat 3.2.3 + JDK1.3.1_09 + Win2K

2003-10-02 Thread Graham Reeds
I finally got Tomcat working last night. Nothing odd in that, you'd think, but the problems I have been having is quite frustrating. The reason was I would get a 'Unable to find Program ' message when trying to start the Tomcat server. However, at various stages of installation things would

newbie question

2003-09-03 Thread Gustavo A. Baratto
I can see tomcat 4.1.27 working fine (including executing the examples) when I go to http://localhost:8080 and to http://localhost/jkstatus, but I am having problems connecting apache2 to tomcat through mod_jk2. I am getting 500 error when I go to http://localhost/examples Another thing... I

Re: Total Linux Newbie Question

2003-08-24 Thread Luke Vanderfluit
Hi Mike, Good move! Could someone please help me with a very basic question when running Tomcat under Linux: When I start Tomcat in the Linux terminal using ./startup.sh I don't get to see any of the Tomcat output.In Windows I would get to see a scrolling DOS Window. open the

Total Linux Newbie Question

2003-08-23 Thread Mike Duffy
With all the Windows viruses going around, I've decided to spend the weekend switching from Windows to Linux for my workstation at home. Could someone please help me with a very basic question when running Tomcat under Linux: When I start Tomcat in the Linux terminal using ./startup.sh I don't

Re: Total Linux Newbie Question

2003-08-23 Thread Ed Robbins
Here's one of the best features of a Un*x based system. Navigate your way to the logs directory, typically $CATALINA_HOME/logs and you will find the usual suspects for log files. Now you can do a tail-f log name and get real time output from the log file. Ed Mike Duffy wrote: With all the

Re: Total Linux Newbie Question

2003-08-23 Thread Eric J. Pinnell
Hi, That stuff is going to catalina.out in the logs directory. -e On Sat, 23 Aug 2003, Mike Duffy wrote: With all the Windows viruses going around, I've decided to spend the weekend switching from Windows to Linux for my workstation at home. Could someone please help me with a very basic

Re: Newbie question on Tomcat security

2003-07-15 Thread John Turner
wondering if I can set up something similar in Tomcat? By the way, I do have an index.jsp. Thanks. - Original Message - From: Reginald Oake [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, July 14, 2003 5:58 PM Subject: Re: Newbie question on Tomcat security Hi. I'm

Newbie question on Tomcat security

2003-07-14 Thread substring
Hello All, I just developed a JSP application called myapp, running on Tomcat 4.1.24. How can I keep people from accessing my files under tomcat/webapps/myapp? For example, people can do a simple view source and find the path to my css file, then they can type in the path on the browser to

newbie question on Tomcat security

2003-07-14 Thread epyonne =)
Hello All, I just developed a JSP application called myapp, running on Tomcat 4.1.24. How can I keep people from accessing my files under tomcat/webapps/myapp? For example, people can do a simple view source and find the path to my css file, then they can type in the path on the browser to access

Re: Newbie question on Tomcat security

2003-07-14 Thread Reginald Oake
Hi. I'm not certain about this but it seems to me that it would be next to impossible to keep the html source from being viewed by someone using any browser (this is not a server side issue). The source has to be uploaded to the browser and, once it is uploaded anyone can view source on the page.

Re: Newbie question on Tomcat security

2003-07-14 Thread epyonne
] Sent: Monday, July 14, 2003 5:58 PM Subject: Re: Newbie question on Tomcat security Hi. I'm not certain about this but it seems to me that it would be next to impossible to keep the html source from being viewed by someone using any browser (this is not a server side issue). The source has

Re: Newbie question on Tomcat security

2003-07-14 Thread Reginald Oake
Hi. I don't know if this will be helpful but I have heard of people putting their JSPs and other ancilliary files inside the WEB-INF directory. I'm not sure what you have to do to make this work but it may well be worth looking into. Reg

Re: newbie question on Tomcat security

2003-07-14 Thread Bill Barker
Actually, it is easier than that: They can just go the the browser's cache folder and view it from there. As such, you should consider that your .css files are public info, and leave it at that. epyonne =) [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello All, I just developed

Re: Newbie question on Tomcat security

2003-07-14 Thread Simon Pabst
. - Original Message - From: Reginald Oake [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, July 14, 2003 5:58 PM Subject: Re: Newbie question on Tomcat security Hi. I'm not certain about this but it seems to me that it would be next to impossible to keep the html

Re: GOT IT! (was: newbie question: mod_jk not working Win 2000)

2003-06-09 Thread John Turner
Glad you got it working. John On Fri, 6 Jun 2003 18:20:16 -0400, Keith Adams [EMAIL PROTECTED] wrote: I just noticed that the Command window in which Tomcat is running says Tomcat 3.2. And sure enough, there turned out to be Tomcat 3.2 installed also, and somehow I'd gotten myself confused

newbie question: mod_jk not working Win 2000

2003-06-06 Thread Keith Adams
Hi I've laboriously followed instructions for linking Tomcat and Apache. When I try to run a servlet through Apache I get an internal server error. The mod_jk log contains one record saying that Tomcat was likely not listening for connections. But I used the default port in my

Re: newbie question: mod_jk not working Win 2000

2003-06-06 Thread John Turner
Hi Keith - What's the URL you're accessing? Is it one of the examples servlets, or one of your own? John On Fri, 6 Jun 2003 13:39:24 -0400, Keith Adams [EMAIL PROTECTED] wrote: Hi I've laboriously followed instructions for linking Tomcat and Apache. When I try to run a servlet through

RE: newbie question: mod_jk not working Win 2000

2003-06-06 Thread Keith Adams
List Subject: Re: newbie question: mod_jk not working Win 2000 Hi Keith - What's the URL you're accessing? Is it one of the examples servlets, or one of your own? John On Fri, 6 Jun 2003 13:39:24 -0400, Keith Adams [EMAIL PROTECTED] wrote: Hi I've laboriously followed instructions

Re: newbie question: mod_jk not working Win 2000

2003-06-06 Thread John Turner
: Friday, June 06, 2003 11:27 AM To: Tomcat Users List Subject: Re: newbie question: mod_jk not working Win 2000 Hi Keith - What's the URL you're accessing? Is it one of the examples servlets, or one of your own? John On Fri, 6 Jun 2003 13:39:24 -0400, Keith Adams [EMAIL PROTECTED] wrote: Hi

RE: newbie question: mod_jk not working Win 2000

2003-06-06 Thread Keith Adams
John Thanks for getting back to me. The only log msg is in mod_jk.log and it reads: [Fri Jun 06 11:35:00 2003] [jk_ajp_common.c (1198)]: Error connecting to tomcat. Tomcat is probably not started or is listenning on the wrong port. Failed errno = 61 The error msg is below. Internal Server

Re: newbie question: mod_jk not working Win 2000

2003-06-06 Thread John Turner
Can you post mod_jk.conf, server.xml, and workers.properties? Sounds to me like Tomcat isn't starting up, or there is something goofy with workers.properties. John On Fri, 6 Jun 2003 14:57:03 -0400, Keith Adams [EMAIL PROTECTED] wrote: John Thanks for getting back to me. The only log msg is

RE: newbie question: mod_jk not working Win 2000

2003-06-06 Thread Keith Adams
John Tomcat seems to start fine - no error msgs. Here's mod_jk.conf * ## Auto generated on Wed Jul 31 12:53:26 EDT 2002## IfModule !mod_jk.c LoadModule jk_module modules/mod_jk.dll /IfModule JkWorkersFile

Re: newbie question: mod_jk not working Win 2000

2003-06-06 Thread John Turner
I notice that the LoadModule line in mod_jk.conf and the modJk parameter in server.xml are different, mod_jk.dll vs. mod_jk-2.0.43.dll. Can you verify that the mod_jk.conf file you posted is actually the mod_jk.conf file that Apache is loading? Also verify syntax with apache.exe -t from the

RE: newbie question: mod_jk not working Win 2000

2003-06-06 Thread Keith Adams
John You're correct in the first point. I fixed that (using the correct name mod_jk-2.0.43.dll). Yes, it's loading the mod_jk.conf, because if I run apache.exe -t from the command line and deliberately introduce an error into the mod_jk.conf, Apache reports the syntax error. When I remove

Re: newbie question: mod_jk not working Win 2000

2003-06-06 Thread John Turner
Sorry, I'm stumped. Things look OK to me. Anyone else? John On Fri, 6 Jun 2003 15:35:27 -0400, Keith Adams [EMAIL PROTECTED] wrote: John You're correct in the first point. I fixed that (using the correct name mod_jk-2.0.43.dll). Yes, it's loading the mod_jk.conf, because if I run

RE: newbie question: mod_jk not working Win 2000

2003-06-06 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
, there is no listener Jeff -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 1:40 PM To: Tomcat Users List Subject: Re: newbie question: mod_jk not working Win 2000 Sorry, I'm stumped. Things look OK to me. Anyone else? John On Fri, 6 Jun 2003

RE: newbie question: mod_jk not working Win 2000

2003-06-06 Thread Keith Adams
. Thanks , Keith -Original Message- From: PELOQUIN,JEFFREY (HP-Boise,ex1) [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 12:46 PM To: 'Tomcat Users List' Subject: RE: newbie question: mod_jk not working Win 2000 I would suggest your answer to another user a few minutes ago. Make

Re: newbie question: mod_jk not working Win 2000

2003-06-06 Thread John Turner
? I'm a newbie, remember. Thanks , Keith -Original Message- From: PELOQUIN,JEFFREY (HP-Boise,ex1) [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 12:46 PM To: 'Tomcat Users List' Subject: RE: newbie question: mod_jk not working Win 2000 I would suggest your answer to another user a few

RE: newbie question: mod_jk not working Win 2000

2003-06-06 Thread Keith Adams
John I'm pretty sure there's no firewall. Thanks, Keith - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: newbie question: mod_jk not working Win 2000

2003-06-06 Thread BAO RuiXian
Hello, Keith Adams wrote: * ## Auto generated on Wed Jul 31 12:53:26 EDT 2002## IfModule !mod_jk.c LoadModule jk_module modules/mod_jk.dll /IfModule JkWorkersFile D:\jakarta-tomcat-4.1.18\conf\jk\workers.properties Since

RE: newbie question: mod_jk not working Win 2000

2003-06-06 Thread Keith Adams
Bao Thanks. Did so, but made no diff. Keith -Original Message- From: BAO RuiXian [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 1:09 PM To: Tomcat Users List Subject: Re: newbie question: mod_jk not working Win 2000

JDBCRealm Newbie Question

2003-06-06 Thread Lior Shliechkorn
Hi, I've created a JDBCRealm and entered it into the server.xml file. Now that I restarted Tomcat, and created a security-constraint element in my application...how exactly do I put the realm to use/ or how does Tomcat do it? Also, now that I created the realm I can't access my /admin

Re: newbie question: mod_jk not working Win 2000

2003-06-06 Thread Jason Bainbridge
On Sat, 7 Jun 2003 03:09, Keith Adams wrote: Connector className=org.apache.coyote.tomcat4.CoyoteConnector                port=8009 minProcessors=5 maxProcessors=75                enableLookups=true redirectPort=8443                acceptCount=10 debug=0 connectionTimeout=0                

RE: newbie question: mod_jk not working Win 2000

2003-06-06 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
: newbie question: mod_jk not working Win 2000 On Sat, 7 Jun 2003 03:09, Keith Adams wrote: Connector className=org.apache.coyote.tomcat4.CoyoteConnector                port=8009 minProcessors=5 maxProcessors=75                enableLookups=true redirectPort=8443                acceptCount=10

Re: newbie question: mod_jk not working Win 2000

2003-06-06 Thread BAO RuiXian
-Original Message- From: Jason Bainbridge [mailto:[EMAIL PROTECTED] Connector className=org.apache.coyote.tomcat4.CoyoteConnector port=8009 minProcessors=5 maxProcessors=75 enableLookups=true redirectPort=8443 acceptCount=10 debug=0

RE: newbie question: mod_jk not working Win 2000

2003-06-06 Thread Keith Adams
Bao No, no errors. But the weird thing is that there is no Tomcat log - only a mod_jk log. Thanks, Keith Also are there any cannot bind to port related errors in your log files when starting up, either CATALINA_HOME\logs\localhost_date.txt or APACHE_HOME\logs\stderr.log?

Multiple instances of tomcat in linux. Newbie question

2003-05-30 Thread Alejandro Arredondo
Hi, I want to make tomcat to work for many users, so each user can have their own developing enviroment. How do install, configure, and run each instance? How can I let them to manage their contexts? Thanks in advance __ Do you Yahoo!? Yahoo! Calendar - Free

Re: ?? Simple Newbie Question about Root Context ??

2003-03-31 Thread Tony LaPaso
Well, it sounds like a guess... - Original Message - From: Micael [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, March 31, 2003 12:33 AM Subject: Re: ?? Simple Newbie Question about Root Context ?? The reason has to be, then, that the startup of the webapp

Re: ?? Simple Newbie Question about Root Context ??

2003-03-31 Thread Micael
List [EMAIL PROTECTED] Sent: Monday, March 31, 2003 12:33 AM Subject: Re: ?? Simple Newbie Question about Root Context ?? The reason has to be, then, that the startup of the webapp creates a default context on its own, because it cannot happen magically. I hope that does not sound smart-alexey

Re: ?? Simple Newbie Question about Root Context ??

2003-03-31 Thread Jacob Kjome
ROOT is sort of a magical directory/WAR name that Tomcat recognizes and, if present, will be treated as the no-path context whether it has a Context ... entry or not. I think one thing you need to watch out for is having th ROOT directory present when, at the same time, you use another

?? Trying Again: Newbie Question about Root Context ??

2003-03-31 Thread Tony LaPaso
Hi all, I posted this question over the weekend but nobody really seemed to know the answer. Several people speculated but nobody knew. Altough I'm sincerely hoping for an answer, please, if you don't know for sure, don't guess. :) I just installed TC v4.1.24 on Win 2k. The installation worked

Re: ?? Trying Again: Newbie Question about Root Context ??

2003-03-31 Thread Kwok Peng Tuck
Send a copy of your server.xml file, I don't see that commented out in mine. I'm pretty sure it isn't though. Tony LaPaso wrote: Hi all, I posted this question over the weekend but nobody really seemed to know the answer. Several people speculated but nobody knew. Altough I'm sincerely hoping

Re: ?? Trying Again: Newbie Question about Root Context ??

2003-03-31 Thread Tony LaPaso
Here it is, straight from tomcat-4.1.24-LE-jdk14.zip - Original Message - From: Kwok Peng Tuck [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, March 31, 2003 9:07 PM Subject: Re: ?? Trying Again: Newbie Question about Root Context ?? Send a copy of your

?? Simple Newbie Question about Root Context ??

2003-03-30 Thread Tony LaPaso
My Tomcat skills are rusty -- I must be missing something easy here. I just installed TC v4.1.24 on Win 2k. The installation worked right out of the box. I didn't have to make any changes to the server.xml. TC is up and running but I'm seeing something strange I was hoping someone could explain:

Re: ?? Simple Newbie Question about Root Context ??

2003-03-30 Thread Carol Carrick
- From: Tony LaPaso [EMAIL PROTECTED] To: Tomcat User [EMAIL PROTECTED] Sent: Sunday, March 30, 2003 4:00 PM Subject: ?? Simple Newbie Question about Root Context ?? My Tomcat skills are rusty -- I must be missing something easy here. I just installed TC v4.1.24 on Win 2k. The installation worked

Re: ?? Simple Newbie Question about Root Context ??

2003-03-30 Thread Tony LaPaso
Well, I don't have to create pages under ROOT as you did, but that's a separate issue from what I'm asking. - Original Message - From: Carol Carrick [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, March 30, 2003 3:50 PM Subject: Re: ?? Simple Newbie Question

Re: ?? Simple Newbie Question about Root Context ??

2003-03-30 Thread Carol Carrick
The website I sent tells you to take the comments out. - Original Message - From: Tony LaPaso [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, March 30, 2003 5:01 PM Subject: Re: ?? Simple Newbie Question about Root Context ?? Well, I don't have to create pages

Re: ?? Simple Newbie Question about Root Context ??

2003-03-30 Thread Tony LaPaso
But my point is that everything works fine even *with* the comment. THAT is what's confusing. - Original Message - From: Carol Carrick [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, March 30, 2003 4:20 PM Subject: Re: ?? Simple Newbie Question about Root Context

Re: ?? Simple Newbie Question about Root Context ??

2003-03-30 Thread Micael
*with* the comment. THAT is what's confusing. - Original Message - From: Carol Carrick [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, March 30, 2003 4:20 PM Subject: Re: ?? Simple Newbie Question about Root Context ?? The website I sent tells you to take the comments out

RE: Very newbie question, Bootstrap: Class loader creation threw exception

2003-02-13 Thread Daniel Brown
Matt, Using JAVA_HOME: c:\jdk1.2.1 I'd recommend trying a 1.3.x or 1.4.x JDK, rather than this one. (The 1.4.1 I'm using works fine for me.) Alternatively, if you already have a later JDK, but it's not being used, create a file in Tomcat install directory/bin called 'setenv.bat',

Very newbie question, Bootstrap: Class loader creation threw exception

2003-02-12 Thread Matt
I recently downloaded tomcat to try it out, and learn new parts of server programs.(Kind of an odd thing) I installed the JDK and put the PATH to it as the first entry in my path statement I went and ran startup.bat and it spawns a new window, and goes away quickly, so I stepped through

NEWBIE question resolved ........ ahhhhhhh.

2003-02-07 Thread jsp
Of all the lamer things ! I changed the name of the directory in webapps to guestbook and it pops up fine now the name was /sc . Maybe tomcat does not recognize dir's with only 2 leters ??? Thanks for listening -wiley -Original Message- From: jsp [mailto:[EMAIL PROTECTED]]

Newbie - question about .so files

2003-01-08 Thread todd runstein
I'm trying to run some examples of JSPs that utilize Domino server. I've followed all the examples and I'm now stuck with an UnsatisfiedLinkError: no lsxbe in java.library.path I believe lsxbe is referring to liblsxbe.so which is in a directory that is included in my PATH variable. I'm not sure

newbie question

2002-11-28 Thread Pascal Platteeuw
Hello, I've installed tomcat but I still have some problems to make it run as I want... Tomcat is an Http server right ? Then how do I see the HTML page I write and that are not in the tomcat root (my html pages, my images, and css are on a separate disk...) ? Is there something I miss ?

SV: newbie question

2002-11-28 Thread Morten Tollefsen
- Fra: Pascal Platteeuw [mailto:[EMAIL PROTECTED]] Sendt: 28. november 2002 13:11 Til: [EMAIL PROTECTED] Emne: newbie question Hello, I've installed tomcat but I still have some problems to make it run as I want... Tomcat is an Http server right ? Then how do I see the HTML page I write

Re: SV: newbie question

2002-11-28 Thread Mehdi . Nejad
@To: 'Tomcat Users List' [EMAIL PROTECTED] isystem.no cc: Subject: SV: newbie question

Re: newbie question

2002-11-28 Thread Andoni
] Sent: Thursday, November 28, 2002 12:11 PM Subject: newbie question Hello, I've installed tomcat but I still have some problems to make it run as I want... Tomcat is an Http server right ? Then how do I see the HTML page I write and that are not in the tomcat root (my html pages, my images

Re: SV: newbie question

2002-11-28 Thread Pascal Platteeuw
tomcat to my data disk... That's all... - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, November 28, 2002 1:43 PM Subject: Re: SV: newbie question Tomcat is an Http server right? Sounds to me like maybe you need to be using something

Re: SV: newbie question

2002-11-28 Thread Mehdi . Nejad
: @swing.be Subject: Re: SV: newbie question

Newbie question -- help.

2002-11-26 Thread Shiva Paranandi
How do I access the ROOT web app in the default webapps directory in tomcat? I want to access it with a browser. Thanks, Shiva. __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- To unsubscribe,

RE: Newbie question -- help.

2002-11-26 Thread Ben Deany
Start Tomcat (from the Start Menu on Windows if that is what you are using) and then point your browser to http://localhost:8080/. -Original Message- From: Shiva Paranandi [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 27 November 2002 3:05 PM To: [EMAIL PROTECTED] Subject: Newbie question

newbie question creating and serving a context

2002-11-17 Thread James Bender
Hi, I'm having a really frustrating problem just creating a simple context using Tomcat 4 on a Linux server. I edit server.xml in my conf directory to include: Context path=/jsp_public docBase=/var/tomcat4/webapps/jsp_public debug=0 reloadable=true crossContext=true Logger

Re: newbie question creating and serving a context

2002-11-17 Thread Paul Campbell
Try docBase=jsp_public At 06:02 PM 11/17/02, you wrote: Hi, I'm having a really frustrating problem just creating a simple context using Tomcat 4 on a Linux server. I edit server.xml in my conf directory to include: Context path=/jsp_public docBase=/var/tomcat4/webapps/jsp_public

Re: newbie question creating and serving a context

2002-11-17 Thread Jacob Kjome
I you are serving out of Tomcat's webapps directory, try changing docBase to docBase=jsp_public instead of the full path from the root of the filesystem. Jake At 02:02 AM 11/18/2002 +, you wrote: Hi, I'm having a really frustrating problem just creating a simple context using Tomcat 4

Newbie question: CGI at Tomcat

2002-10-31 Thread Ronaldo Juliatto
Hello I am trying to configure Tomcat as a web server initially, and configured the CGI and SSI servlets and mappings exactly as the default. So, I tried to make my dummy tcl scripts (that worked with Apache formerly) work with Tomcat also. The call for !--#exec cgi=/cgi-bin/teste2.tcl--

newbie question on connectors

2002-10-18 Thread BillP
I'm completely new to Tomcat. We looking at switching to it from JRun because version 4 seems to be increasing the bugs rather than decreasing. I've installed Tomcat (4.1.12) on my local dev machine to test it out and everything went fine. Surprisingly easy install. Kudos to Apache. However,

<    1   2   3   4   >