Newbie question - Tomcat 5.0 and external Javascript files

2005-10-05 Thread Pigott, Paul
Greetings, I'm having problems executing functions in an external javascript file. It's like the .js file can't be found. I was able to do this under Tomcat 4.0 but for some reason it's not working under Tomcat 5.0. The folder under webapps is /EdiHost and I've got another folder, /js, under

Re: Newbie question - Tomcat 5.0 and external Javascript files

2005-10-05 Thread Darek Czarkowski
You have to specify the full path, this should not work under any of the webservers. DarekC On Wed, 2005-10-05 at 08:03, Pigott, Paul wrote: Greetings, I'm having problems executing functions in an external javascript file. It's like the .js file can't be found. I was able to do this under

Re: Newbie question - Tomcat 5.0 and external Javascript files

2005-10-05 Thread Larry Meadors
You may be able to use this instead: src=js/EdiHost.js IDEA will get pissed about it, but it should work (I know it does for images). It is nice, because you can rename your context, and not break your webapp. :) Larry On 10/5/05, Pigott, Paul [EMAIL PROTECTED] wrote: Greetings, I'm

Re: Newbie question - Tomcat 5.0 and external Javascript files

2005-10-05 Thread Hassan Schroeder
Larry Meadors wrote: You may be able to use this instead: src=js/EdiHost.js It is nice, because you can rename your context, and not break your webapp. :) Or, if you're using JSTL, use: src=c:url value=/js/EditHost.js/ which has the added advantage of *not* being a relative path that'll

Re: Newbie question - Tomcat 5.0 and external Javascript files

2005-10-05 Thread Larry Meadors
Yeah, i just hate the tag inatag / / stuff. Messy. ;-) Larry On 10/5/05, Hassan Schroeder [EMAIL PROTECTED] wrote: Larry Meadors wrote: You may be able to use this instead: src=js/EdiHost.js It is nice, because you can rename your context, and not break your webapp. :) Or, if

Newbie question. /manager only gives the directory listing

2005-09-18 Thread tomcat
Hi all, I have been using Tomcat for some time now, but I still feel like a newbie in most regards. At least when it comes to configuring it. Tomcat has been working great, together with Apache 2, for several months now. But now, I find myself wanting to use the manager webapp for the first time.

Re: Newbie question. /manager only gives the directory listing

2005-09-18 Thread Peter Johnson
Jimi, try /manager/html PJ [EMAIL PROTECTED] wrote: Hi all, I have been using Tomcat for some time now, but I still feel like a newbie in most regards. At least when it comes to configuring it. Tomcat has been working great, together with Apache 2, for several months now. But now, I find

Re: Newbie question. /manager only gives the directory listing

2005-09-18 Thread tomcat
Ah, it worked like a charm! Thanks a bunch, Peter! :) /Jimi Quoting Peter Johnson [EMAIL PROTECTED]: Jimi, try /manager/html [EMAIL PROTECTED] wrote: Hi all, I have been using Tomcat for some time now, but I still feel like a newbie in most regards. At least when it comes to

newbie question: Tomcat/Apache settings

2005-07-01 Thread Hong wu
Hi, I have apache 1.3.x and tomcat 4.x installed on XP machine. apache is running at port 80 and tomcat running on port 8080. it seems that tomcat has its own web server, even i stopped the apache server process, tomcat was able to run on its own. my question is: how to integrate apache and

Re: newbie question: Tomcat/Apache settings

2005-07-01 Thread Mark Thomas
Have a look at http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/connectors.html for an overview of the different type of connectors. You need the web server type rather than the HTTP type. You should use the mod_jk with Apache.

Re: Simple JavaBeans applications not working (newbie question)

2005-05-09 Thread Michael Strorm
--- Wendy Smoak [EMAIL PROTECTED] wrote: Before you continue, you might shut down Tomcat and delete the 'work' directory associated with this webapp to make sure you're starting fresh. (I assume such a thing exists in version 5, I'm still using 4.1.) The work directory still exists in

Re: Simple JavaBeans applications not working (newbie question); FIXED!

2005-05-08 Thread Michael Strorm
--- Anoop kumar V [EMAIL PROTECTED] wrote: Everything works perfectly fine in your jsp and bean except that the package mentioned in your bean (Beany.java) file seems incorrect Aaawwrrgh! (Bangs head against wall several dozen times) Thank you. That was such a stupid mistake; I

Re: Simple JavaBeans applications not working (newbie question)

2005-05-08 Thread QM
On Sat, May 07, 2005 at 01:39:50PM -0400, Anoop kumar V wrote: : Another thing I noticed that you have placed your bean as a jar in the : WEB-INF/lib directory - while this works perfectly the practice is to put : custom class files in the WEB-INF/classes directory as just .class files : under

Re: Simple JavaBeans applications not working (newbie question)

2005-05-08 Thread Wendy Smoak
From: Michael Strorm [EMAIL PROTECTED] skeleton/WEB-INF/lib/subapp/Beany.class Jar files go in WEB-INF/lib. Classes go under WEB-INF/classes in a directory structure matching the package name. What package statement does Beany.java contain? org.apache.jasper.JasperException:

Simple JavaBeans applications not working (newbie question)

2005-05-07 Thread Michael Strorm
Hi, First off, let me apologise for the level of detail in this message; if possible, I'd have made it shorter. Anyway, I'm trying to learn J2EE; Tomcat seemed like a good choice to learn the underlying technology, rather than a particular JSP/Servlet container's deployment tool. I can get

Re: Simple JavaBeans applications not working (newbie question)

2005-05-07 Thread Anoop kumar V
Michael, Everything works perfectly fine in your jsp and bean except that the package mentioned in your bean (Beany.java) file seems incorrect: It is: ** BEANY.JAVA package subapp; It should be: ** BEANY.JAVA package subclass; Or else an alternative is to change the folder

Re: Simple JavaBeans applications not working (newbie question)

2005-05-07 Thread Anoop kumar V
Another thing I noticed that you have placed your bean as a jar in the WEB-INF/lib directory - while this works perfectly the practice is to put custom class files in the WEB-INF/classes directory as just .class files under their respective folders (as per package declaration).. IMO the lib

Newbie question

2005-05-05 Thread Mário Gamito
Hi, Sorry for this newbie question :( I've just installed Tomcat 5.5 for Linux and so far so good, except... that i've installed also Tomcat Administration module (not the Manager one) and it asks me for a login and a password and i can't find how to define it. I see a file named admin.xml

Re: Newbie question

2005-05-05 Thread Markus Schönhaber
Am Donnerstag, 5. Mai 2005 20:30 schrieb Mário Gamito: I've just installed Tomcat 5.5 for Linux and so far so good, except... that i've installed also Tomcat Administration module (not the Manager one) and it asks me for a login and a password and i can't find how to define it. I see a file

Re: Newbie question

2005-05-05 Thread Lutz Zetzsche
Hi Mário, Am Donnerstag, 5. Mai 2005 20:30 schrieb Mário Gamito: Hi, Sorry for this newbie question :( I've just installed Tomcat 5.5 for Linux and so far so good, except... that i've installed also Tomcat Administration module (not the Manager one) and it asks me for a login

Re: Newbie question

2005-05-05 Thread Mott Leroy
. Mário Gamito wrote: Hi, Sorry for this newbie question :( I've just installed Tomcat 5.5 for Linux and so far so good, except... that i've installed also Tomcat Administration module (not the Manager one) and it asks me for a login and a password and i can't find how to define it. I see a file named

Newbie Question: conext.xml

2005-04-26 Thread Bob Bronson
Hello everyone, I'm very new to Tomcat so pardon me if this is an easy question. I *have* read the relevant documentation (several times) and that really just made matters worse. Sometimes the documentation seems a bit incomplete. I've tried several things the documentation says should work

RE: Newbie Question: conext.xml

2005-04-26 Thread Fritz Schneider
path. Fritz -Original Message- From: Bob Bronson [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 12:14 PM To: tomcat-user@jakarta.apache.org Subject: Newbie Question: conext.xml Hello everyone, [snip...] Let me explain what I want to do. I'm hoping someone could tell me where

Re: Newbie Question: conext.xml

2005-04-26 Thread Bob Bronson
Hello Fritz, Thank you for the welcome. I have comments below - Original Message - From: Fritz Schneider [EMAIL PROTECTED] To: 'Tomcat Users List' tomcat-user@jakarta.apache.org; 'Bob Bronson' [EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 3:22 PM Subject: RE: Newbie Question

Re: Newbie Question: conext.xml

2005-04-26 Thread Hassan Schroeder
Fritz Schneider wrote: Welcome, fellow newbie! I struggled with this one also. It turns out that the context element for a root directory MUST be nested inside the host element in server.xml. No, no, no. That's simply not true. I have multiple installations of 5.5.x systems running and not one

Re: Newbie Question: conext.xml

2005-04-26 Thread Bob Bronson
, as the documentation indicates. - Original Message - From: Hassan Schroeder [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Cc: 'Bob Bronson' [EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 3:46 PM Subject: Re: Newbie Question: conext.xml Fritz Schneider wrote: Welcome, fellow

Re: Newbie Question: conext.xml

2005-04-26 Thread Hassan Schroeder
Bob Bronson wrote: But using the $CATALINA_HOME/conf/{engine}/{hostname}/ROOT.xml approach is only one of 4 documented approaches (and the only approach I was able to get working). Why don't the other three work? Well, I'm absolutely certain that this: 4:

session newbie question

2005-01-11 Thread Casas, Claudia
Hello Everyone, Can anyone tell me how to activate sessions in tomcat? I migrated a project from to tomcat5.5 and apache2 and everything seems to work, except the sessions are being lost. I am thinking there should be a variable somewhere in the server.xml to specify that I want to allow sessions,

RE: Newbie question on Database and struts

2005-01-04 Thread Phillip Qin
To: tomcat-user@jakarta.apache.org Subject: Newbie question on Database and struts I am new to struts (even new to java also) I have one form developed in struts. What i want to do is depending on form values, run sql qry in Action form, get result set and display it on JSP. I have created

Re: Newbie question on Database and struts

2004-12-27 Thread Dustin
This isn't exactly answering your question but... Check out iBATIS SQL Maps: http://www.ibatis.com/common/sqlmaps.html I won't go into how to use it. They have an excellent manual and tutorial. It is ridiculously easy to learn and use. Especially with Struts. Basically, you set up a query in

RE: Newbie question on Database and struts

2004-12-27 Thread Amit Gupta
I tried SQLMaps. It is wonderful but is there any easy manual (except PDF that come with ibatis) available on net? Amit Gupta -Original Message- From: Dustin [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 28, 2004 1:28 AM To: Tomcat Users List Subject: Re: Newbie question

RE: Newbie question on Database and struts

2004-12-23 Thread John Najarian
: Thursday, December 23, 2004 7:25 PM To: tomcat-user@jakarta.apache.org Subject: Newbie question on Database and struts I am new to struts (even new to java also) I have one form developed in struts. What i want to do is depending on form values, run sql qry in Action form, get result set and display

RE: Newbie question on Database and struts

2004-12-23 Thread Amit Gupta
you to pass data to JSP page. -Original Message- From: Manisha Sathe [mailto:[EMAIL PROTECTED] Sent: Friday, December 24, 2004 8:55 AM To: tomcat-user@jakarta.apache.org Subject: Newbie question on Database and struts I am new to struts (even new to java also) I have one form

RE: Newbie question on Database and struts

2004-12-23 Thread Amit Gupta
(i); ... } With regards, Amit Gupta -Original Message- From: Manisha Sathe [mailto:[EMAIL PROTECTED] Sent: Friday, December 24, 2004 8:55 AM To: tomcat-user@jakarta.apache.org Subject: Newbie question on Database and struts I am new to struts (even

RE: Newbie question on Database and struts

2004-12-23 Thread Manisha Sathe
@jakarta.apache.org Subject: Newbie question on Database and struts I am new to struts (even new to java also) I have one form developed in struts. What i want to do is depending on form values, run sql qry in Action form, get result set and display it on JSP. I have created a databean for the results

Re: Newbie question on Database and struts

2004-12-23 Thread Sharad Ramadas
You dont need an array of data beans. Store your data bean in an ArrayList or in a Vector. e.g ArrayList empList = new ArrayList(); Employee emp = null; while(rst.next()) { emp = new Employee(); /* Fill the employee object with the records from the database. */

RE: Newbie question on Database and struts

2004-12-23 Thread Goel, Manish Kumar
, December 24, 2004 9:40 AM To: Tomcat Users List Subject: RE: Newbie question on Database and struts what i mean to array of databeans means - I have created employee data bean and for each row of result set i am creating one object of bean. So in a way i will get array of databeans. regards

newbie question

2004-10-28 Thread Luke FERNANDEZ
Is there an easy way to specify that one of the apps in the webapps folder be served off one port (e.g. 80) whereas another app should be served off another port (8080)? Thanks for your help, Luke Fernandez Weber State University

RE: newbie question

2004-10-28 Thread Shapira, Yoav
:16 PM To: [EMAIL PROTECTED] Subject: newbie question Is there an easy way to specify that one of the apps in the webapps folder be served off one port (e.g. 80) whereas another app should be served off another port (8080)? Thanks for your help, Luke Fernandez Weber State University

RE: newbie question

2004-10-28 Thread Ben Souther
-Original Message- From: Luke FERNANDEZ [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 12:16 PM To: [EMAIL PROTECTED] Subject: newbie question Is there an easy way to specify that one of the apps in the webapps folder be served off one port (e.g. 80) whereas another app

RE: newbie question

2004-10-28 Thread Luke FERNANDEZ
Shapira http://www.yoavshapira.com -Original Message- From: Luke FERNANDEZ [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 12:16 PM To: [EMAIL PROTECTED] Subject: newbie question Is there an easy way to specify that one of the apps in the webapps folder be served off

RE: newbie question

2004-10-28 Thread Filip Hanik \(lists\)
, October 28, 2004 1:27 PM To: [EMAIL PROTECTED] Subject: RE: newbie question Can you run multiple instances of Tomcat? I tried this but I ran into problems. I'm running Sakai (the open source Learning Management System) which installs its own Tomcat engine. When I try to start up my own non-Sakai

RE: newbie question

2004-10-28 Thread Luke FERNANDEZ
PROTECTED] Sent: Thursday, October 28, 2004 12:16 PM To: [EMAIL PROTECTED] Subject: newbie question Is there an easy way to specify that one of the apps in the webapps folder be served off one port (e.g. 80) whereas another app should be served off another port (8080)? Thanks for your help, Luke

RE: newbie question

2004-10-28 Thread Luke FERNANDEZ
, call catalina.bat run to have the windows stay the same and not shutdown on you FIlip -Original Message- From: Luke FERNANDEZ [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 1:27 PM To: [EMAIL PROTECTED] Subject: RE: newbie question Can you run multiple instances of Tomcat

RE: newbie question

2004-10-28 Thread Filip Hanik \(lists\)
did you look at the other connectors? catalina.bat run - will tell you the message, try that Filip -Original Message- From: Luke FERNANDEZ [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 1:52 PM To: [EMAIL PROTECTED] Subject: RE: newbie question There would be port conflict

RE: newbie question

2004-10-28 Thread Luke FERNANDEZ
the windows stay the same and not shutdown on you FIlip -Original Message- From: Luke FERNANDEZ [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 1:27 PM To: [EMAIL PROTECTED] Subject: RE: newbie question Can you run multiple instances of Tomcat? I tried this but I ran

RE: newbie question

2004-10-28 Thread Steve Kirk
works (click links in the left margin to access further pages) -Original Message- From: Filip Hanik (lists) [mailto:[EMAIL PROTECTED] Sent: Thursday 28 October 2004 19:29 To: Tomcat Users List Subject: RE: newbie question you have conflict in ports, both tomcats can not run

RE: newbie question

2004-10-28 Thread Filip Hanik \(lists\)
-Original Message- From: Luke FERNANDEZ [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 2:10 PM To: [EMAIL PROTECTED] Subject: RE: newbie question Ok. When I use catalina.bat run instead of startup the window stays open but the second instance (on port 80) still isnt serving pages

RE: newbie question

2004-10-28 Thread Luke FERNANDEZ
(click links in the left margin to access further pages) -Original Message- From: Filip Hanik (lists) [mailto:[EMAIL PROTECTED] Sent: Thursday 28 October 2004 19:29 To: Tomcat Users List Subject: RE: newbie question you have conflict in ports, both tomcats can not run on the same

RE: newbie question

2004-10-28 Thread Shapira, Yoav
Hi, The shutdown port is also in server.xml, at the top of the file. Yoav Shapira http://www.yoavshapira.com -Original Message- From: Luke FERNANDEZ [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 3:19 PM To: [EMAIL PROTECTED] Subject: RE: newbie question So its more

RE: newbie question

2004-10-28 Thread Steve Kirk
. Note that any parts of server.xml commented out between !-- and -- are not active so you can ignore them for the time being. -Original Message- From: Luke FERNANDEZ [mailto:[EMAIL PROTECTED] Sent: Thursday 28 October 2004 20:19 To: [EMAIL PROTECTED] Subject: RE: newbie question So

RE: newbie question

2004-10-28 Thread Luke FERNANDEZ
, October 28, 2004 2:10 PM To: [EMAIL PROTECTED] Subject: RE: newbie question Ok. When I use catalina.bat run instead of startup the window stays open but the second instance (on port 80) still isnt serving pages. I've included the screen output that happens after running catalina.bat run. Looks like

RE: newbie question

2004-10-28 Thread Steve Kirk
] Sent: Thursday 28 October 2004 20:27 To: 'Tomcat Users List' Subject: RE: newbie question I would advise that you read the doc, because it only takes a few mins, and then you'll understand what's really happening ;) But to get you going, assuming that you have not changed the standard

RE: newbie question

2004-10-28 Thread Ben Souther
] Sent: Thursday, October 28, 2004 2:10 PM To: [EMAIL PROTECTED] Subject: RE: newbie question Ok. When I use catalina.bat run instead of startup the window stays open but the second instance (on port 80) still isnt serving pages. I've included the screen output that happens after

RE: [tomcat] Newbie question about getting first servlet working in tomcat on iseries v5r2

2004-09-04 Thread Ernesto Echeverría
Message- From: Ralph A. Borriello [mailto:[EMAIL PROTECTED] Sent: Viernes, 03 de Septiembre de 2004 11:50 p.m. To: [EMAIL PROTECTED] Subject: [tomcat] Newbie question about getting first servlet working in tomcat on iseries v5r2 Hello all, I work on an as/400 (iseries) version v5r2. I have

Newbie question about getting first servlet working in tomcat on iseries v5r2

2004-09-03 Thread Ralph A. Borriello
Hello all, I work on an as/400 (iseries) version v5r2. I have setup a apache/tomcat server instance under the ibm http server and am trying to get a simple helloservlet servlet to work properly. The server instance is referencing version 1.3 of the jdk. I have compiled the java using jedit

RE: Newbie Question

2004-07-25 Thread Aris Javier
/23/2004 9:11 PM To: Tomcat Users List Cc: Subject:RE: Newbie Question Can you provide some more detail? When you say you're running two servers accessing an Access database, do you mean two different machines or just different server instances on the same machine? If you're

Newbie Question

2004-07-23 Thread Aris Javier
Hello! This is a newbie question... =) I have two servers running accessing single MS Access database I used jdbc:odbc:CES_DS in server.xml CES_DS is the data source name I used for both servers... pointing to MS Access DB... However this error occurs... org.apache.commons.dbcp.DbcpException

RE: Newbie Question

2004-07-23 Thread Dave Bender
driver. I don't think the Sun jdbc:odbc driver can reach a data source running on a different machine. Dave -Original Message- From: Aris Javier [mailto:[EMAIL PROTECTED] Sent: Friday, July 23, 2004 4:55 AM To: Tomcat Users List Subject: Newbie Question Hello! This is a newbie

hi newbie question----help needed

2004-07-22 Thread Jeyakumaran.C
Hi, I am newbie to JSP and tomcat. I tried to write the MyFirstServlet class and failed to do so. problem1 when I tried to change the port 8080 to 80 in the server.xml then Mozila browser refuses to open the tomcat welcome page.(But the book I refer says to change the port). I compile and did

Re: hi newbie question----help needed

2004-07-22 Thread Thilo Krawietz
Hi, are sure your tomcat's running at all? You know, that in order to run tomcat on port 80, you have to start it with root privileges! Check this out by running netstat -l . This lists you all open ports on your system Regards, Thilo Hi, I am newbie to JSP and tomcat. I tried to write the

RE: hi newbie question----help needed

2004-07-22 Thread Shapira, Yoav
Informatics -Original Message- From: Thilo Krawietz [mailto:[EMAIL PROTECTED] Sent: Thursday, July 22, 2004 4:44 AM To: Tomcat Users List Subject: Re: hi newbie questionhelp needed Hi, are sure your tomcat's running at all? You know, that in order to run tomcat on port 80, you have

RE: Newbie question: Error 503 Service Temp. Unavailable

2004-07-09 Thread Birt, Jeffrey
573.341.6058 -Original Message- From: Tim Wills [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 11:18 PM To: Birt, Jeffrey Cc: Tomcat Users List Subject: RE: Newbie question: Error 503 Service Temp. Unavailable I had the same Error 503 on Linux (not Windows) and found

RE: Newbie question: Error 503 Service Temp. Unavailable

2004-07-09 Thread Birt, Jeffrey
Wills Cc: Tomcat Users List Subject: RE: Newbie question: Error 503 Service Temp. Unavailable I too am running Linux (Fedora 1). Another chap posted after me having similar problems with Windows (IIS). I've confirmed that apache is running as user apache which belongs to the group apache. User

Newbie question: Error 503 Service Temp. Unavailable

2004-07-08 Thread Birt, Jeffrey
Hello all, I've been working on getting Apache 2.0.49 and Tomcat 5.0.25 to play nice together via mod_jk2 connector. Both work fine separately and I get the dreaded 503 Service Temp. Unavailable error. (which seems to have come up a lot on various list but I've yet to find a solution). I've

RE: Newbie question: Error 503 Service Temp. Unavailable

2004-07-08 Thread Dale, Matt
I think you might have to create the file yourself. touch /opt/tomcat/work/jk2.socket Ta Matt -Original Message- From: Birt, Jeffrey [mailto:[EMAIL PROTECTED] Sent: 08 July 2004 16:11 To: [EMAIL PROTECTED] Subject: Newbie question: Error 503 Service Temp. Unavailable Hello all, I've

RE: Newbie question: Error 503 Service Temp. Unavailable

2004-07-08 Thread Tonte Pouncil
Subject: RE: Newbie question: Error 503 Service Temp. Unavailable I think you might have to create the file yourself. touch /opt/tomcat/work/jk2.socket Ta Matt -Original Message- From: Birt, Jeffrey [mailto:[EMAIL PROTECTED] Sent: 08 July 2004 16:11 To: [EMAIL PROTECTED] Subject: Newbie

RE: Newbie question: Error 503 Service Temp. Unavailable

2004-07-08 Thread Dale, Matt
Users List Subject: RE: Newbie question: Error 503 Service Temp. Unavailable I am trying to do the same thing as you guys. I have a windows 2000 box. How did you configure the two so far? And what goes in the jk2.socket file? Tonté -Original Message- From: Dale, Matt [mailto:[EMAIL

RE: Newbie question: Error 503 Service Temp. Unavailable

2004-07-08 Thread Tonte Pouncil
Do you know how to do this on a windows box? -Original Message- From: Dale, Matt [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 10:28 AM To: Tomcat Users List Subject: RE: Newbie question: Error 503 Service Temp. Unavailable The file must exist and be readable and writable

RE: Newbie question: Error 503 Service Temp. Unavailable

2004-07-08 Thread Dale, Matt
workers2.properties in your apache/conf directory that points to this port. Ta Matt -Original Message- From: Tonte Pouncil [mailto:[EMAIL PROTECTED] Sent: 08 July 2004 16:30 To: Tomcat Users List Subject: RE: Newbie question: Error 503 Service Temp. Unavailable Do you know how to do

RE: Newbie question: Error 503 Service Temp. Unavailable

2004-07-08 Thread Tonte Pouncil
Okay, will do. -Original Message- From: Dale, Matt [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 10:35 AM To: Tomcat Users List Subject: RE: Newbie question: Error 503 Service Temp. Unavailable Have a read through this, http://jakarta.apache.org/tomcat/connectors-doc/jk2

RE: Newbie question: Error 503 Service Temp. Unavailable

2004-07-08 Thread Birt, Jeffrey
PROTECTED] Sent: Thu 7/8/2004 10:34 AM To: Tomcat Users List Cc: Subject:RE: Newbie question: Error 503 Service Temp. Unavailable Have a read through this, http://jakarta.apache.org/tomcat/connectors-doc/jk2/index.html and then let me know if you have any more specific questions

RE: Newbie question: Error 503 Service Temp. Unavailable

2004-07-08 Thread Tim Wills
I had the same Error 503 on Linux (not Windows) and found that was caused by Apache running as Nobody. Apache couldn't write to the socket because the owner was tomcat and Nobody was not a member of the group tomcat. Check your apache error_log and see what it says. I have never run a Windows

[Resource Not available] Newbie question

2004-06-10 Thread Michael Drewitz
Hi all, if I try to access the below described servlet from a html- or jsp-file I get Http 404 Error - Resource not available. form action=AVG_ValuesServlet method=get name=avg_values_form ../form I have tried it with the package-name as prefix and the prefix servlet/, but nothing works. Whats

RE: [Resource Not available] Newbie question

2004-06-10 Thread Tim Penhey
You would also need to tell us your servlet-mapping and the directory of the file that the form is in. Tim -Original Message- From: Michael Drewitz [mailto:[EMAIL PROTECTED] Sent: 10 June 2004 11:18 To: [EMAIL PROTECTED] Subject: [Resource Not available] Newbie question Hi all

Re: Re: [Resource Not available] Newbie question

2004-06-10 Thread Michael Drewitz
Thats the servlet-mapping. servlet-mapping servlet-nameAVG_ValuesServlet/servlet-name url-patternorg/haw/weather/web/AVG_ValuesServlet/url-pattern /servlet-mapping I've tried the pattern /AVG_ValuesServlet also, but it doesn't work. The index.html is in the root of the application(in the

RE: Re: [Resource Not available] Newbie question

2004-06-10 Thread Shapira, Yoav
Hi, Thats the servlet-mapping. servlet-mapping servlet-nameAVG_ValuesServlet/servlet-name url-patternorg/haw/weather/web/AVG_ValuesServlet/url-pattern /servlet-mapping I've tried the pattern /AVG_ValuesServlet also, but it doesn't work. What happened? The latter is a much better

Re: Changing the 'ROOT' webapp (newbie question)

2004-05-18 Thread Harry Mantheakis
Definitely smart! Yoav, I think you're a smartass, but I mean that in the nicest and most complimentary way possible ;-) You're a constant source of help and relief to tomcat users on this list. I am always interested to read your posts and take a great interest in what you have to say!

RE: Changing the 'ROOT' webapp (newbie question)

2004-05-17 Thread Shapira, Yoav
details. Yoav Shapira Millennium Research Informatics -Original Message- From: Barnet Wagman [mailto:[EMAIL PROTECTED] Sent: Saturday, May 15, 2004 12:55 PM To: [EMAIL PROTECTED] Subject: Changing the 'ROOT' webapp (newbie question) By default, when Tomcat gets a request for something like

RE: Changing the 'ROOT' webapp (newbie question)

2004-05-17 Thread Knight, Digby
think you're a smartass, asshole or dick! Keep up the good work. -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: 17 May 2004 14:04 To: Tomcat Users List Subject: RE: Changing the 'ROOT' webapp (newbie question) Hi, You need to define a Context element for your

RE: Changing the 'ROOT' webapp (newbie question)

2004-05-17 Thread Shapira, Yoav
Hi, PS. Yoav, I think I speak for many users on this mailing list who appreciate your help and don't think you're a smartass, asshole or dick! Keep up the good work. Thank you ;) I'm glad to help, and I don't get offended easily, so no worries ;) Yoav This e-mail, including any attachments,

RE: Changing the 'ROOT' webapp (newbie question)

2004-05-17 Thread Adam Buglass
On Mon, 2004-05-17 at 16:11, Shapira, Yoav wrote: Hi, PS. Yoav, I think I speak for many users on this mailing list who appreciate your help and don't think you're a smartass, asshole or dick! Keep up the good work. Yoav, I think you're a smartass, but I mean that in the nicest and most

tomcat stand alone versus IIS plug in...another newbie question!

2004-05-17 Thread Coolguys
Ok is there a difference or is the same program? I cannot find a specific tomcat download that says IIS plug in I think (which is dangerous sometimes) that the standalone IS the plug in and that people intermingle the terms. Or is it? When operated within a webserver (IIS/Apache/Etc) there

Changing the 'ROOT' webapp (newbie question)

2004-05-15 Thread Barnet Wagman
By default, when Tomcat gets a request for something like http://www.some_domain_name.com/ or http://www.some_domain_name.com it serves the file webapps/ROOT/index.jsp What is the preferred way of getting it return the index file of a different wep app? I haven't found anything in the conf xml

Another stupid newbie question what is the correct name of Tomcat?

2004-05-14 Thread Coolguys
Is it Apache Tomcat Just Tomcat? Is it different for the stand alone version of Tomcat Is it different if it runs under Apache? TIA [EMAIL PROTECTED] Coolguys! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: Another stupid newbie question what is the correct name of Tomcat?

2004-05-14 Thread Shapira, Yoav
:07 AM To: 'Tomcat Users List' Subject: Another stupid newbie question what is the correct name of Tomcat? Is it Apache Tomcat Just Tomcat? Is it different for the stand alone version of Tomcat Is it different if it runs under Apache? TIA [EMAIL PROTECTED] Coolguys

really newbie question on patch level

2004-05-13 Thread Coolguys
The report writer we use from tonbeller software uses Servlets, we use tomcat on IIS for this. However our customer want to know the version (no problem) and the Patch level - problem How do you tell the patch level of the tomcat server you have downloaded? Do you have to install it 1st?

RE: really newbie question on patch level

2004-05-13 Thread Shapira, Yoav
: really newbie question on patch level The report writer we use from tonbeller software uses Servlets, we use tomcat on IIS for this. However our customer want to know the version (no problem) and the Patch level - problem How do you tell the patch level of the tomcat server you have

NEWBIE question: JAAS- versus JDBC- versus MemoryRealms

2004-03-23 Thread Leonard Wolters
Hi, I've got a question concerning the different REALM available for Tomcat 5.x. The main (basic) question is that I want to secure my context annex websites / jsp pages. I have some experience with JAAS (JBOSS) and was investigating the possibility to use / implement JAAS for Tomcat. After some

AW: NEWBIE question: JAAS- versus JDBC- versus MemoryRealms

2004-03-23 Thread Marco Pöhler
-Ursprüngliche Nachricht- Von: Leonard Wolters [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 23. März 2004 09:22 An: [EMAIL PROTECTED] Betreff: NEWBIE question: JAAS- versus JDBC- versus MemoryRealms Hi, I've got a question concerning the different REALM available for Tomcat 5.x. The main

RE: NEWBIE question: JAAS- versus JDBC- versus MemoryRealms

2004-03-23 Thread Leonard Wolters
, Leonard -Original Message- From: Marco Pöhler [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 23, 2004 10:45 AM To: Tomcat Users List Subject: AW: NEWBIE question: JAAS- versus JDBC- versus MemoryRealms Hi Leonard, this works for me: Context path= docBase=/home/user1/trustedfeed debug

RE: NEWBIE question: JAAS- versus JDBC- versus MemoryRealms

2004-03-23 Thread Marco Pöhler
. Marco --- http://www.druckerpatronen--preisvergleich.de http://www.tintenpatronen-preisvergleich.de -Ursprüngliche Nachricht- Von: Leonard Wolters [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 23. März 2004 11:21 An: Tomcat Users List Betreff: RE: NEWBIE question: JAAS- versus JDBC

Re: NEWBIE question: JAAS- versus JDBC- versus MemoryRealms

2004-03-23 Thread Adam Hardy
Leonard, I went the other way. I wrote a login module for tomcat's JAAS implementation and recently found it relatively easy to adapt it to JBoss. However I see you're going down the JDBC route. Adam On 03/23/2004 09:22 AM Leonard Wolters wrote: Hi, I've got a question concerning the

another newbie question?

2004-02-12 Thread FRANCOIS Dufour
hello sombody could tell mee how to increase memory off the jvm? got only 7mg left after aplication deployed tanks [EMAIL PROTECTED] administrateur http://entre-nous.qc.tc _ MSN Search, le moteur de recherche qui pense comme vous

RE: another newbie question?

2004-02-12 Thread Shapira, Yoav
To: [EMAIL PROTECTED] Subject: another newbie question? hello sombody could tell mee how to increase memory off the jvm? got only 7mg left after aplication deployed tanks [EMAIL PROTECTED] administrateur http://entre-nous.qc.tc _ MSN

RE: another newbie question?

2004-02-12 Thread Edson Alves Pereira
Users List Assunto: RE: another newbie question? Howdy, Use the -Xmx java runtime option, set via the JAVA_OPTS environment variable as defined in $CATALINA_HOME/bin/catalina.sh. Yoav Shapira Millennium ChemInformatics -Original Message- From: FRANCOIS Dufour [mailto

RE: another newbie question?

2004-02-12 Thread STOCKHOLM, Raymond
Users List' Objet : RE: another newbie question? In my opnion, isn´t so necessary to set a inicial memory value to JVM, because it will take more memory as needed. -- De: Shapira, Yoav[SMTP:[EMAIL PROTECTED] Responder:Tomcat Users List Enviada: quinta-feira, 12 de

RE: another newbie question?

2004-02-12 Thread Shapira, Yoav
Howdy, In my opnion, isn´t so necessary to set a inicial memory value to JVM, because it will take more memory as needed. Someone else already corrected the above wrong statement, but I wanted to point out -Xmx is not the initial size of the heap, it's the maximum size. Setting -Xmx

dumb newbie question

2004-01-30 Thread Jonas Stricker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello all, 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 to be parsed again by some - well, let´s say:

RE: dumb newbie question

2004-01-30 Thread Ralph Einfeldt
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 to be parsed again by some - well, let´s say

  1   2   3   4   >