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: 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.

Thread reuse question (Tomcat 4.1)

2004-06-08 Thread Greg Ward
I have a question motivated by our application's slightly peculiar logging requirements. (Details below, if you're curious.) Specifically, does Tomcat 4.1 reuse request-processing threads across web apps, or only within a single web app? I.e. if thread X is created to service a request for web

RE: Thread reuse question (Tomcat 4.1)

2004-06-08 Thread Shapira, Yoav
Research Informatics -Original Message- From: Greg Ward [mailto:[EMAIL PROTECTED] Sent: Monday, June 07, 2004 3:20 PM To: [EMAIL PROTECTED] Subject: Thread reuse question (Tomcat 4.1) I have a question motivated by our application's slightly peculiar logging requirements. (Details below

Re: Question - TOMCAT

2003-12-12 Thread Bill Barker
Probably the first thing you need to do is to read the ssl-howto in the Tomcat documentation. After that you will probably realize that you forgot to set the 'keystoreFile' and 'keystorePass' attributes on the Connector ;-) Mirna Misere [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]

Question - TOMCAT

2003-12-11 Thread Mirna Misere
Does anyone have a solution to this problem? I would appreciate the help. I can't resolve the problem with TOMCAT connector. I get the following error java.io.IOException: Cannot recover key The keytool execution finalized succefull. Calling from browser the link https://server_name:8443

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

general question - Tomcat/Linux deployment

2003-01-14 Thread Igor I. Tovstopyat-Nelip
Hi, I have a question to people who have an experience with production level deployments of Tomcat based apps on Linux (preferrably RedHat). What are the best recommended combinations of Tomcat version - OS version (maybe with patches) - JVM version for deployment? Also, please share your

Re: general question - Tomcat/Linux deployment

2003-01-14 Thread Lajos Moczar
Personally, RH 7.2 + JDK 1.3.1 has never given me any problems. On windows, 2000 XP are equally stable with the same JVM version. Lajos Igor I. Tovstopyat-Nelip wrote: Hi, I have a question to people who have an experience with production level deployments of Tomcat based apps on Linux

Newbie Question Tomcat IIS

2002-03-07 Thread Rudi Doku
Hello, I'm been using tomcat at home for the last couple of months. While searching through the newsgroups i've noticed that some people run Tomcat and IIS together. Can anyone tell me why people do this and what they are aiming to achieve? Kind Regards, Rudi

Re: Newbie Question Tomcat IIS

2002-03-07 Thread Alejandro Alcalde
At least in our case, we want Tomcat to show JSP pages, for IIS cannot serve this kind of dinamic content. So, IIS takes care of normal html files (static ones), and Tomcat of the dinamic JSP pages. (although we haven't been able yet to make it work properly)

Re: newbies question: tomcat jaxp-1.1

2001-08-30 Thread Pierre-Yves . Verdon
unfortunately, this tips don't work for jaxp with tomcat thanks for your help Ludovic Maitre wrote: Hello, you can rename your crimson.jar file to parser.jar, it should be work (this trick work for Cocoon2 who use jaxp1.1 or xerces, i don't remember, read xml.apache.org/cocoon2 for

Re: newbies question: tomcat jaxp-1.1

2001-08-30 Thread Pierre-Yves . Verdon
i just set my CLASSPATH for /foo/bar/fud/jaxp-1.1/parser.jar instead of /foo/bar/fud/jaxp-1.1/ and it's work. Ludovic Maitre wrote: Hello, you can rename your crimson.jar file to parser.jar, it should be work (this trick work for Cocoon2 who use jaxp1.1 or xerces, i don't remember,

newbies question: tomcat jaxp-1.1

2001-08-29 Thread Pierre-Yves . Verdon
hi, i have just a little problem, i'm using jaxp-1.1. But jaxp-1.1 didn't contain the file parser.jar. The xml parser for jaxp seems to be crimson.jar [verdon@pc-ccri-11 jaxp-1.1]# ls License-ASF License-W3C.html docs install.html readme.htmlxalan.jar License-RI.html

Re: newbies question: tomcat jaxp-1.1

2001-08-29 Thread Ludovic Maitre
Hello, you can rename your crimson.jar file to parser.jar, it should be work (this trick work for Cocoon2 who use jaxp1.1 or xerces, i don't remember, read xml.apache.org/cocoon2 for more info). [EMAIL PROTECTED] wrote: hi, i have just a little problem, i'm using jaxp-1.1. But jaxp-1.1

RE: Question: Tomcat 3.2.1 servlet and dynamically loading JAR files

2001-06-04 Thread Barry Draper
incompatible JAR files. Thanks much for your help. Barry Draper [EMAIL PROTECTED] -Original Message- From: Brett Knights [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 03, 2001 10:09 PM To: [EMAIL PROTECTED] Subject: RE: Question: Tomcat 3.2.1 servlet and dynamically loading JAR files Barry

RE: Question: Tomcat 3.2.1 servlet and dynamically loading JAR files

2001-06-04 Thread Brett Knights
Barry, Tomcat 3.3 resolves this issue by letting you isolate a web-app's jar files from the container's jar files. I don't know if the change is available in 3.2.2 but you might save yourself some work if it is. The issue in general seems to be an ugly one. From a development point of view it

RE: Question: Tomcat 3.2.1 servlet and dynamically loading JAR files

2001-06-03 Thread Brett Knights
Barry, What are you trying to do? If you a) have a bunch of jar files that contain duplicate packages and b) want to make sure only a certain version of those classes gets used why don't you just unjar the jar files that contain the duplicates, delete the duplicating directories, adjust the

Question: Tomcat 3.2.1 servlet and dynamically loading specific JAR files

2001-06-02 Thread Barry Draper
I have a question about loading JAR files. It is not necessarily specific to Tomcat, i.e., it is really a generic Java question, but my application happens to be a servlet running under Tomcat 3.2.1. The question is this: Is there a way for a servlet running under Tomcat 3.2.1 to dynamically load

Question: Tomcat 3.2.1 servlet and dynamically loading JAR files

2001-06-02 Thread Barry Draper
Hello. I have a question about loading JAR files. It is not necessarily specific to Tomcat, i.e., it is really a generic Java question, but my application happens to be a servlet running under Tomcat 3.2.1. The question is this: Is there a way for a servlet running under Tomcat 3.2.1 to

Question: Tomcat 3.2.1 servlet and dynamically loading specific J AR files

2001-06-02 Thread Barry Draper
Hello. I have a question about loading JAR files. It is not necessarily specific to Tomcat, i.e., it is really a generic Java question, but my application happens to be a servlet running under Tomcat 3.2.1. The question is this: Is there a way for a servlet running under Tomcat 3.2.1 to

WARP Connection question (Tomcat 4.0).

2001-02-09 Thread janis
I am running Tomcat 4.0 as Tomcat-Apache service using Warp Connector (mod_webapp.so). I am just wondering why there are no questions about this module and how to use it provided to this list? Is there another list covering this feature? I experience several problems running my configuration:

really dumb question: tomcat + apache

2000-12-15 Thread Roubal, Eric
I'm trying to merely run the sample application given with the Tomcat documentation. I'm using tomcat-apache.conf. Merely using the ant tool like to doc tells me... Why do servlets only work when I address it as: http://localhost:8080/myapp/hello but it doesn't work when I put:

Re: General Question, Tomcat + Synchronization

2000-10-23 Thread Mark Lewis
I've been writing similar apps (Movel 2, JDBC connection pooling, etc) apps for a while, here's the experience that I've had: 1) If you use a vendor-supplied ConnectionPool, you don't need to worry about synchronization. Their classes are written for multi-threaded environments so they