Re: Error when I start Jakarta-tomcat(Cont) - Error when I load file

2003-08-21 Thread John Turner
Search the archives. Your properties files NEVER go in Tomcat's bin or conf directories. Here's an example: http://marc.theaimsgroup.com/?l=tomcat-user&m=105792867317795&w=2 John Luong Phan wrote: Hi all, Thanks for your advices. The error is that files startup.sh and shutdown.sh are not ex

Re: Knowing SSL and HTTP port

2003-08-21 Thread John Turner
Madhu Vadlapudi wrote: I have a doubt regarding accessing the SSL port. Actually how do my JSP application will know whether webserver having the capabilities of SSL request. If it has, how do u i know the port of the service (suppose if i am in http scheme, then want to shift to https scheme,

Re: Quickly get Tomcat running with Apache on Solaris?

2003-08-21 Thread John Turner
Don't use Solaris tar to unpack GNU software. GNU software requires GNU tar. GNU tar and Solaris tar are incompatible. Tomcat is a Java application. A binary Java application is a binary for ALL operating systems, there are no distinctions. Did you download and install the JDK? The easiest

Re: Starting tomcat from init scripts (HP/UX)

2003-08-21 Thread John Turner
It's the former. The latter doesn't occur on this list in my experience. John Lott, Carey wrote: Since nobody has responded does this mean nobody has any more ideas on the problem or am I getting the "You idiot. The answer is staring you in the face." silent treatment? If it is the latter, I

Re: Apache-Tomcat-Struts > 404 Not Found

2003-08-21 Thread John Turner
rman - CPX Mngd Services Sent: Wednesday, August 20, 2003 7:42 AM To: Tomcat Users List Subject: RE: Apache-Tomcat-Struts > 404 Not Found Thanks John, no I didn't. But I did have JkMount /* ajp13, wouldn't that do it? I'll try specifying it the way you suggest. Thanks again. Johan.

Re: Apache-Tomcat-Struts > 404 Not Found

2003-08-19 Thread John Turner
Tomcat 4 and Tomcat 5 configuration with mod_jk are the same. Do you have something like this in your httpd.conf file? JkMount /*.do ajp13 John Johan Wasserman - CPX Mngd Services wrote: Hi, I got Tomcat and Apache configured according to documentation (still referencing TC4x) I found on the

Re: Tomcat MultiHosting problems

2003-08-19 Thread John Turner
Yeah, it was wrong. You want to recreate it, and instead delete everything IN it when doing a restart. So something like: rm -rf /var/cache/tomcat4/work/Standalone/* NOT rm -rf /var/cache/tomcat4/work John Robert Zöhrer @ pronet.at wrote: Hi, Now we 've deleted the complete Work-Dir (/var

Re: directory outside context root

2003-08-19 Thread John Turner
at I need to put Apache in front of JBoss/Tomcat. Which is better? Thanks, Erez -----Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 1:57 PM To: Tomcat Users List Subject: Re: directory outside context root If on UNIX or Linux, you could

Re: apache, mod_jk, virtual hosts and 2 tomcats

2003-08-19 Thread John Turner
Hi - workers.tomcat_home and workers.java_home are for housekeeping only. They serve no required purpose. They are there so that you can use them later in the file by reference (like ${tomcat_home}) but they are not required. The only required values for a worker are port, host, and type. lb

Re: Error when I start Jakarta-tomcat(Cont)

2003-08-19 Thread John Turner
Relax, we are helping you. How did you install Tomcat? How did you extract the archive? Are there any strange characters in startup.sh? Did you by chance transfer the Tomcat archive in "ascii" mode instead of binary when you downloaded it? John Luong Phan wrote: Hi all, The file /bin/sh e

Re: Run RPM packaged Tomcat as non-root

2003-08-19 Thread John Turner
Depends on how the system is setup. If Tomcat is running on port 80, it must run as root. If Tomcat is not running on port 80, then simply switch to another user account (or log in as a user other than root) and start up Tomcat. You can also try using Apache with a connector, or other solutions

Re: Error when I starting Jakarta-tomcat

2003-08-19 Thread John Turner
Your operating system is messed up, or you have a corrupt Tomcat installation. "bad interpreter" means that the shell script "startup.sh" cannot be executed using the path to the shell that is in the script. The first line of startup.sh should be something like: #!/bin/sh My guess is that on

Re: about web.xml and servlet mapping and reloading

2003-08-19 Thread John Turner
Reloading/restarting your web application is not the same as reloading/restarting Tomcat. You can reload/restart web applications without restarting Tomcat. That's what the manager app is for, and that documentation says that a web app reload will not re-read web.xml, you need a web app resta

Re: Tomcat on Linux: binary or source?

2003-08-19 Thread John Turner
Custom build for what, exactly? Performance equal to your WebLogic cluster? What evidence do you have that a similarly configured Tomcat cluster will not have similar performance? Have you tried a Tomcat cluster? John [EMAIL PROTECTED] wrote: Hi everyone, Not that this list seems to need i

Re: [File Upload] How to Increase the Speed of File transfer ??

2003-08-19 Thread John Turner
OK, take a step back and think about this. ATA-66 disk bus: 533 Mbps ATA-100 disk bus: 800 Mbps Ultra-160 SCSI disk bus: 1300 Mbps Now, you're saying that you have a network connection of 2 Mbps (I think you mean T1 or E1 as ISDN is not > 128 Kbps unless you have a bunch of lines bonded together

Re: directory outside context root

2003-08-19 Thread John Turner
If on UNIX or Linux, you could use symbolic links, but this is not recommended for security and portability reasons. So, in general, the answer is "no". John Erez Efrati wrote: Is there some way to tell tomcat to serve files from a specific directory outside the context root? Thanks in advan

Re: Problem in intergrating Tomcat and Apache

2003-08-19 Thread John Turner
The mod_webapp.so module you have is not compatible with the version of Apache that you have. Apache modules are typically version-sensitive, especially those built before 2.0.43 or thereabouts. John VijayaLakshmi Seshadri wrote: Hai I have installed Tomcat 4.0.1 in my machine and i have Apac

Re: Tomcat MultiHosting problems

2003-08-18 Thread John Turner
Have you used separate appBases for each host? What are the error messages? What are the log contents when the URL does not work? John Robert Zöhrer @ pronet.at wrote: 8/18/2003 2:25 PM John Turner: appBase != docBase Right now your Context is using the same value for its docBase as your

Re: Should I use JK if I'm just using servlets?

2003-08-18 Thread John Turner
There is no magic silver bullet that can protect you. Basically, if you take proper steps to secure your Tomcat installation, Tomcat can handle your web application's load, and you don't need any of Apache's features, then you don't need Apache. At the risk of self-promoting, you might want to

Re: War Development w/ JNDI Datasources

2003-08-18 Thread John Turner
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/context.html Anything in can go in a file outside server.xml, in the Host's appBase. Tomcat will pick it up automatically. You name the file app.xml, so if your webapp is myApp, you would put a file called myApp.xml in the Host's appBase,

Re: Servlets from public_html?

2003-08-18 Thread John Turner
Dir structure? Error message? URL that you're trying to use? Remember that the Invoker servlet is disabled by default, if you've just dumped your servlet into a directory and expect to call it by its name, it won't work. You have to map it in your web.xml file, as enabling the Invoker is a s

Re: Tomcat MultiHosting problems

2003-08-18 Thread John Turner
appBase != docBase Right now your Context is using the same value for its docBase as your Host is using for its appBase. Your docBase cannot be your appBase, not to mention that your Context is using a path of "/webapps" which could cause all sorts of weird problems. Set appBase = /home/www/v

Re: A good book about Tomcat

2003-08-18 Thread John Turner
As far as I know it is still there, run by Wiley. John epyonne wrote: I miss the Programmers to Programmers (P2P) that Wrox used to have. I sure hope Wiley or Apress will carry on. - Original Message - From: "John Turner" <[EMAIL PROTECTED]> To: "Tomcat Users Li

Re: Running servlet via SSL???

2003-08-18 Thread John Turner
alone". To do this, do I just need to configure Apache and add the appropriate mappings or must I also install the mod_jk (Apache 1.3 and Tomcat 4.0.x)? -Original Message----- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2003 1:24 PM To: Tomcat Users List Subject: R

Re: About server.xml

2003-08-18 Thread John Turner
RTFM http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/index.html Any further questions, please post to the list. Be as specific as possible. John Alexander Vavilin wrote: Hello all, I am new to Tomcat, so can anybody explain or advice an article about this elements. Specially I cant un

Re: Trouble with Apache 1.3.28/Tomcat 4.124/mod_jk 1.24

2003-08-18 Thread John Turner
Your mod_jk config is screwed up. First, move all of the global stuff (JkWorkersFile, etc, basically everything BUT JkMount) ABOVE all VirtualHost blocks in httpd.conf. Second, in EACH VirtualHost block that may have requests to send to Tomcat, put the required JkMount statements. The error me

Re: Trouble with Apache 1.3.28/Tomcat 4.124/mod_jk 1.24

2003-08-18 Thread John Turner
No, that's not the answer. Ajp13Connector is always disabled by default in Tomcat 4.1.x. CoyoteConnector on port 8009 is enabled by default. John Cristopher Daniluk wrote: Uhm... And I didn't touch the Connector Classname entry in server.xml: shortly thereafter. That's a comm

Re: Tomcat 5.0.2 and IIS

2003-08-14 Thread John Turner
his: But should I change the port to 8443 in properties file as it is saying redirectport = 8443. Thanks, From: John Turner <[EMAIL PROTECTED]> Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]> To: Tomcat Users List <[EMAIL PROTECTED]> Subject: Re: Tomca

Re: Can I get an answer please -- Re: Why integrate Tomcat with aweb server?

2003-08-14 Thread John Turner
Ward To: [EMAIL PROTECTED] ; Tomcat Users List Sent: Monday, August 04, 2003 11:05 AM Subject: Why integrate Tomcat with a web server? I have a question for John Turner about a statement in the book Apache Tomcat Security. Page 12 says: "As discussed earlier, running pub

Re: security hole on windows tomcat?

2003-08-14 Thread John Turner
Let's see the Tomcat-only link. John Angus Mezick wrote: Ok guys, What could I have turned on that would have allowed this bug to happen? I can make it happen in both tomcat and tomcat through apache. (Most recent of both) I can provide a site where it DOES happen so you guys can see what is h

Re: I've taken the JkMount statements out

2003-08-14 Thread John Turner
so (when I try to use the one without eapi support I get an error message so I'm using version 1.3 with EAPI support) -Original Message----- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 9:07 AM To: Tomcat Users List Subject: Re: I've taken the JkMount

Re: How to install Apache / Tomcat non-root

2003-08-14 Thread John Turner
/Lars Nielsen Lind tir, 2003-08-12 kl. 18:15 skrev John Turner: Yes, it is possible and recommended. 1. chown -R webuser:webuser $CATALINA_HOME 2. su - webuser -c $CATALINA_HOME/bin/startup.sh John Lars Nielsen Lind wrote: Hi. I want to install Apache and Jakarta-Tomcat as non-root user (they

Re: tomcat shutdown

2003-08-14 Thread John Turner
You can't have two Tomcats with the same shutdown port. You'll have to change the shutdown scripts to use the new port number (look for "8005" and replace with whatever port you choose). John Chris Daly wrote: no. do i have to change the port number in server.xml so that its differenet from

Re: integration of apache2.0.40 & tomcat4.1.27

2003-08-14 Thread John Turner
Hmmm...looks like a path problem, but I'm not good enough with make to really figure it out. The solution is probably pretty easy, though. John Mike Millson wrote: On Mon, 2003-08-11 at 11:14, John Turner wrote: Nice doc. Question: - is there a reason you used the 4.1.24 connectors s

Re: integration of apache2.0.40 & tomcat4.1.27

2003-08-14 Thread John Turner
element in server.xml, which should make RH's Apache installation happy. John Mike Millson wrote: Here is my documentation on integrating apache + tomcat on RH 9.0. For admin simplicity, I keep the RedHat apache install. http://www.meritonlinesystems.com/docs/ On Mon, 2003-08-11 at 09:18,

Re: I've taken the JkMount statements out

2003-08-14 Thread John Turner
apache b/c I have turned off Tomcat and I'm getting the same error message with the http version. Can you send me the link for the downloading mod_jk? I'll try another version Thanks, Bobbie -Original Message----- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Tuesday, August

Re: JkMount causing problems - info from my httpd.conf file

2003-08-14 Thread John Turner
Then I'm stumped. What changed from when it was working? John [EMAIL PROTECTED] wrote: I promise there's no mod_jk.log and that's all that my apache log file says -Original Message----- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 8:16 AM T

Re: How to install Apache / Tomcat non-root

2003-08-14 Thread John Turner
Yes, it is possible and recommended. 1. chown -R webuser:webuser $CATALINA_HOME 2. su - webuser -c $CATALINA_HOME/bin/startup.sh John Lars Nielsen Lind wrote: Hi. I want to install Apache and Jakarta-Tomcat as non-root user (they will use the same user account). Is this possible and what is the

Re: JkMount causing problems - info from my httpd.conf file

2003-08-14 Thread John Turner
e: No it didn't work with the jk mount I thought it was working but that part wasn't turned on yet -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 8:40 AM To: Tomcat Users List Subject: Re: JkMount causing problems - info from m

Re: Tomcat, mod_jk and Apache works with examples but not with anotherpage

2003-08-14 Thread John Turner
JkMount /jmvargas/curso/*.jsp tomcat-acd This equals: /www/jmvargas/public_html/jmvargas/curso/*.jsp Try JkMount /curso/*.jsp tomcat-acd which should equal: /www/jmvargas/public_html/curso/*.jsp which is what I think you really want. As an aside, you might want to consider "User Web Applica

Re: From which apache virtual host did a request come from?

2003-08-14 Thread John Turner
Mike Curwen wrote: 1) Is it possible to mount several virtual hosts to the same web application (the default one, as it happens) I think this is possible, though maybe not desired. You can see this with the manager app. Setup a bunch of virtual hosts that have the same appBase, with Contexts th

Re: Apache-Tomcat jk2 Virtual Host to Webapp

2003-08-14 Thread John Turner
in server.xml: Torsten Schlabach wrote: Dear list, I am sure it is easy, but I cannot find it anywhere. We have one Tomcat serving several webapps, such as /webapp1/welcome.jsp /webapp2/welcome.jsp ... In Apache httpd we have setup several virtual hosts, such as http://www.hos

Re: [OT] how to pronounce Apache ?

2003-08-14 Thread John Turner
Sheesh...that wasn't the poster's point. The point was: "the pronunciation is the same as the pronunciation of "Apache" when the context is "a Native American people". John [EMAIL PROTECTED] wrote: Apache has NOTHING to do with indigenous American people. It stands for "a patchy" software. E

Re: Tomcat 4.1x with IIS 6 on Windows server 2003

2003-08-14 Thread John Turner
Tomcat will never "have support for IIS 6.0". It's simply a matter of someone developing the connector for IIS 6. This has everything to do with IIS 6 and absolutely nothing to do with Tomcat, since Tomcat will continue to use the same CoyoteConnector on it's end. The number of people working

Re: hardware recommendation, Tomcat with Apache web server

2003-08-14 Thread John Turner
Any decent dual-proc server with 1-2GB RAM would be more than sufficient, assuming your application is sane. My production servers are dual-proc with 6GB RAM (RH Linux) and they easily handle hundreds of simultaneous users (not to mention a couple dozen Tomcat instances) with intensive CPU usag

Re: Problem in Integrating Tomcat with Apache

2003-08-14 Thread John Turner
Well, if you had followed my instructions, you wouldn't need additional stuff, as those lines like JkWorkersFile are in mod_jk.conf. So, I'm confused. My confusion aside, if its working the way you want it to work, I would call it good and have fun. John Xingqun Jiang wrote: Hi, John I fol

Re: JkMount causing problems

2003-08-14 Thread John Turner
nts but the same thing is happening at http://placeanad.classifiedmarketplace.net No idea what is going on? -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 2:28 PM To: Tomcat Users List Subject: Re: JkMount causing problems One thing is that

Re: A good book about Tomcat

2003-08-14 Thread John Turner
The company is. Others have bought up the intellectual property (copyrights and such). Most of the assets were bought by Wiley and Apress. John Angus Mezick wrote: Isn't wrox toast? -Original Message- From: Mubaraka Arif [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2003 3:2

Re: Problem in Integrating Tomcat with Apache

2003-08-14 Thread John Turner
If you look at my WinXP HOWTO, you will see a section that says: "NOTE: in Tomcat, virtual hosts are "Hosts". That is, as far as Tomcat is concerned, localhost is a virtual host. So, if you want to setup www.server-a.com and www.server-b.com, you just need more copies of the Host container incl

Re: From which apache virtual host did a request come from?

2003-08-14 Thread John Turner
It's within . John Angus Mezick wrote: Isn't there an tag within ? -Original Message----- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2003 9:32 AM To: Tomcat Users List Subject: Re: From which apache virtual host did a request come from? Mike Cu

Re: Problem in Integrating Tomcat with Apache

2003-08-14 Thread John Turner
TCP/IP 101. "localhost" is a distinct virtual host name that ONLY WORKS ON THE LOCAL COMPUTER. "some.ip.address" is a distinct virtual host name, just like "localhost" or "my.host.com". If you don't have that IP address set up as a hostname in Apache's httpd.conf and Tomcat's server.xml, you wi

Re: Question about ssl and tomcat

2003-08-14 Thread John Turner
They're the statements in httpd.conf that direct certain requests to Tomcat. They look like this: JkMount /*.jsp ajp13 You have to have them defined in all Apache Virtual Host blocks that will be receiving request that may be forwarded to Tomcat, including, in your case, the SSL Virtual Host b

Re: Running servlet via SSL???

2003-08-14 Thread John Turner
Carlos Oliva wrote: However, I see the welcome screen of Tomcat if I use http://:8080 but not if I use https::8080 or any other combination of ports and http or https. Furthermore, servlets run via http://:8080/ , but not https://... Or http://:8443/... If anything, it would b

Re: AMANDA on AIX 5.1 L

2003-08-14 Thread John Turner
Please, if you're going to insist on posting off-topic messages to the list, at least do us a favor and mark them as such in your subject line so those of us with filters can ignore them. John Hari Om wrote: does anyone know from where can I download AMANDA (backup software) for IBM AIX 5.1L

Re: Changing document root for .jsp files?

2003-08-14 Thread John Turner
The root directory of a webapp is the directory that holds WEB-INF. John Kurt Overberg wrote: Hi all! I have the following layout for my web application: webapp/ webapp/WEB-INF webapp/admin webapp/member I have .jsp files in the webapp directory, webapp/admin and webapp/member. When someone

Re: "Official" support matrix

2003-08-14 Thread John Turner
None of the above. Tomcat is a Java application. Hence, assuming a valid JDK/JVM, and the appropriate servlet.jar file, Tomcat runs on any OS. Thus, assuming a valid JDK/JVM for Windows 2003, then all versions of Tomcat run on Windows 2003. There is no such thing as "tomcat working under IIS

Re: mod_jk problem with serving jsp from apache root dir...from tomcatalias dir is ok

2003-08-14 Thread John Turner
JSP end up as servlets. Thus, they fall under the "web app" realm. They are not distinct "pages" like HTML or PHP. You do have to match your Apache config to your Tomcat config. Tomcat is not "integrated" into Apache as PHP is...Tomcat is a distinct environment, and can stand by itself withou

Re: 404 with 3.2.3

2003-08-14 Thread John Turner
First: - does your webapp work with Tomcat stand-alone, no Apache, no mod_jserv, no mod_jk? If not, please post the error message, the structure of your webapp, and any relevant portions of log files. It's not worth dealing with Apache until we determine if your webapp works with Tomcat alone

Re: A good book about Tomcat

2003-08-14 Thread John Turner
This has come up several times before. Try the archives. John Alexander Vavilin wrote: Hi all, can anybody advice me a good book about Tomcat ???. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: mod_jk v1.2.5

2003-08-14 Thread John Turner
AFAIK, "still coming" if ever. John NormW wrote: Good afternoon all. What has become of the mod_jk binaries for v1.2.5? Still coming or some place other than: http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/ ? TIA Norm

Re: Tomcat vs. Apache Performance Comparison for static HTML

2003-08-14 Thread John Turner
Nice. I'm bookmarking this post for the future. 'Nuf said. Thanks, Yoav! John Shapira, Yoav wrote: Howdy, Of course not. I'm only regergitating stuff I have read. But I have seen it from several different sources, so I took it as truth. Do you have benchmarks to prove otherwise? It co

Re: Java and tomcat issues

2003-08-14 Thread John Turner
Your JAVA_HOME value has a "/" at the end of it. Remove it, and reset JAVA_HOME, then try again. John [EMAIL PROTECTED] wrote: Okay this happens bash-2.05b# export $PATH=$JAVA_HOME/bin -bash: export: `/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin =/usr/java/j2sdk

Re: JkMount causing problems - info from my httpd.conf file

2003-08-14 Thread John Turner
Do you have: NameVirtualHost * in httpd.conf? With the config you posted, Apache starts up without errors? John [EMAIL PROTECTED] wrote: Greetings, This is everything JK related that is in my httpd.conf file. LoadModule jk_module libexec/mod_jk.so LoadModule jk_module libexec/mod_jk.so JkWo

Re: IIS+jk2 = bad performance?

2003-08-14 Thread John Turner
There's no need to change connectors. Your existing JK configuration would have worked fine with Tomcat 4.1.27. The CoyoteConnector is perfectly happy with either JK or JK2. All you need to do is put your pre-.27 redirector configuration back in place and make sure the ports are correct in ser

Re: JkMount causing problems - info from my httpd.conf file

2003-08-14 Thread John Turner
You're positive that there's nothing in any log file? I find that really strange. John [EMAIL PROTECTED] wrote: Yes I do have NameVirtualHost *:80 And in my apache log files I don't have an error message This is what the error log says [Mon Aug 11 14:54:02 2003] [notice] Apache/1.3.28 (Unix) m

Re: security hole on windows tomcat?

2003-08-14 Thread John Turner
http://localhost:8080/examples/jsp/num/numguess.jsp%20 = 404 Win 2K Pro Tomcat 4.1.27 John Eric J. Pinnell wrote: Interesting. WinXP Tomcat 4.1.24 http://localhost:8080/examples/jsp/num/numguess.jsp%20 I get the source. -e On Mon, 11 Aug 2003, John Turner wrote: Let's see the Tomcat

Re: Class Not Found Error for WebApp

2003-08-14 Thread John Turner
Caused by: java.lang.NoClassDefFoundError: NoClassDefFoundError != ClassNotFound The two are different. NoClassDef means that the class that is being found is not the one that is expected, not that the class is not found. This comes up weekly at least, if not more often, try searching the a

Re: Tomat and ssl

2003-08-14 Thread John Turner
art in the server.xml? -Original Message----- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 11:18 AM To: Tomcat Users List Subject: Re: Tomat and ssl The Tomcat connector on 8080 is not HTTPS, but HTTP, so "https://x.x.x.x:8080/x"; will never work.

Re: JkMount causing problems

2003-08-14 Thread John Turner
at so it wouldn't be overwritten? -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 3:08 PM To: Tomcat Users List Subject: Re: JkMount causing problems Are you sure its set to info? If you're using the auto-generation feature of Tomcat

Re: Https not working

2003-08-14 Thread John Turner
It matters because in httpd.conf, SSL VirtualHosts are defined separately from non-SSL VirtualHosts. Thus, command directives like JkMount need to be in both places. If they are just in the non-SSL VirtualHost block, requests using SSL will not work. John Steven Garrett wrote: You can confi

Re: Stable tomcat + apache + mod_j2 + ssl

2003-08-14 Thread John Turner
ce in particular I should be looking for the old binaries. -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 11:38 AM To: Tomcat Users List Subject: Re: Stable tomcat + apache + mod_j2 + ssl It seems stunnel is available for Windows, assuming you

Re: I've taken the JkMount statements out

2003-08-14 Thread John Turner
Can we take it a step at a time? How about getting it to work without HTTPS? Just forget SSL for now. John [EMAIL PROTECTED] wrote: And now the code just displays https://placeanad.classifiedmarketplace.net/AdWebster/index.jsp Is there a way around using the JkMount statements? The mod_jk loa

Re: aliases under tomcat

2003-08-14 Thread John Turner
Edit %WINDOWS_ROOT%\System32\Drivers\Etc\Hosts. If Hosts doesn't exist, copy Hosts.sam to Hosts and edit it. John Julien Martin wrote: Hello, I would like "fr.localhost" and "en.localhost" to resolve to "localhost". I have created the aliases under tomcat but I was told by someone on the mail

Re: mod_jk2 on Solaris 8 - "symbol apr_socket_timeout_set: referencedsymbol not found"

2003-08-14 Thread John Turner
Have you tried mod_jk? I was able to get it built on Solaris 8: http://www.johnturner.com/howto/apache2-tomcat4112-sol8-howto.html John J.P. Wadkin C9951627 wrote: Thanks for the reply. Without specifying the location of the Java JDK the configure script generates an error. If I specify the J

Re: Problem with Tomcat4.1.24 rpm service script in RH8.0

2003-08-14 Thread John Turner
Just debug the script. The line numbers are given. Patches welcome. John peter mcgregor wrote: Hi, Whenever I restart tomcat4 in RedHat 8 I get # service tomcat4 restart /etc/init.d/tomcat4: line 105: let: kwait=: syntax error: operand expected (error token is "=") /etc/init.d/tomcat4: line

Re: Can I get an answer please -- Re: Why integrate Tomcat with aweb server?

2003-08-14 Thread John Turner
thought it would be useful to others so I wanted to post it here rather than sending it only to you. Nathan - Original Message - From: "John Turner" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Friday, August 08, 2003 9:35 AM Subject:

Re: Tomat and ssl

2003-08-14 Thread John Turner
o to https://placeanad.classifiedmarketplace.net:8080/AdWebster it doesn't work? What else do I need to add? Thanks, Bobbie -Original Message----- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 10:53 AM To: Tomcat Users List Subject: Re: Tomat and ssl "servelet

Re: Including in server.xml?

2003-08-14 Thread John Turner
It is possible. We are doing it with 4.1.x. Top of server.xml: ]> Then, where you want the files included: &somename; &somename2; There may be other ways to do this...it works for us. John Alan Ford wrote: Hi, I'm running Tomcat 4.04. I can't see any mention of this in the docs: is it pos

Re: hi

2003-08-14 Thread John Turner
At a minimum, you will need one HOST for each virtual host, and for each virtual host you will need one CONTEXT (web application which may or may not be ROOT). HOST: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/host.html "The Host element represents a virtual host, which is an associat

Re: Tomcat 5.0.2 and IIS

2003-08-14 Thread John Turner
r.properties file worker.list=testWorker worker.testWorker.port=8009 worker.testWorker.host=localhost worker.testWorker.type=ajp13 and in the uriworkermap.properties: /examples/*=testWorker /examples/*.jsp=testWorker /examples/servlet/*=testWorker /*.jsp=ajp13 From: John Turner <[EMAIL PROTECT

Re: tomcat shutdown

2003-08-14 Thread John Turner
Did you change the default shutdown ports for both instances? If you did, did you also make the appropriate changes in the shutdown scripts? John Chris Daly wrote: hi i have two instances of tomcat runnign as a stand olone but on different ports - i can neither stop nor start either tomcat a

Re: JkMount causing problems - info from my httpd.conf file

2003-08-14 Thread John Turner
But didn't you have Apache + Tomcat working before? What changed? John [EMAIL PROTECTED] wrote: When I added the jkmount statements it gives me the 500 error message. If I comment them out the site will load. -Original Message- From: John Turner [mailto:[EMAIL PROTECTED]

Re: Apache 2.0.47, Tomcat 5.0.5, JK2 connector 2.0.2

2003-08-14 Thread John Turner
e/lib/i386/server and JAVA_HOME/jre/lib/i386/client. I can't get to work without jni either. Pat -Original Message----- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 11:00 AM To: Tomcat Users List Subject: Re: Apache 2.0.47, Tomcat 5.0.5, JK2 connector 2.0.2

Re: Tomcat 5.0.2 and IIS

2003-08-14 Thread John Turner
m the default) we could be of more help, but right now you are only giving us little tidbits of info in each post, making it pretty difficult to help you quickly. John vikas jain wrote: I don't know anything about CoyoteConnector. should i change port in worker.properties file to 8009?

Re: Problem with tomcat installation

2003-08-14 Thread John Turner
Hi - Have you read my HOWTO? I think it will make things a lot easier for you. If you have the JDK 1.4 installed, all you have to do is download the Tomcat binary. My advice, stay away from the RPM. Check the "Install JDK" and "Build/Install Tomcat" sections here: http://www.johnturner.com/h

Re: security hole on windows tomcat?

2003-08-14 Thread John Turner
Appending "%20" to my Tomcat 4.1.1x URLs generates a 404. John Paul Sundling("Webdaddy") wrote: I came across what appears to be a security hole when running tomcat. I'm not sure how widespread it is, but my linux server is safe, yet my windows XP, tomcat 4.1.24 is vulnerable. I found that if

Re: security hole on windows tomcat?

2003-08-14 Thread John Turner
Red Hat Linux. I just tried this on Windows 2000 Pro, Tomcat 4.1.27 (downloaded 30 minutes ago, .exe install, installed as service). http://localhost/john/test.jsp%20 = 404 John Paul Sundling wrote: which operating system? Paul John Turner wrote: Appending "%20" to my Tomcat 4

Re: Running Tomcat standalone on Linux

2003-08-14 Thread John Turner
Hi - Check out the Jakarta Sandbox Daemon http://jakarta.apache.org/commons/sandbox/daemon/index.html Also, Holger Klawitter has a page dedicated to the problem, his solution uses iptables to forward ports: http://www.klawitter.de/tomcat80.html John Raible, Matt wrote: We are running Tomcat

Re: Stable tomcat + apache + mod_j2 + ssl

2003-08-14 Thread John Turner
It seems stunnel is available for Windows, assuming you have a functional SSL library installed on both the web server and app server. John John Turner wrote: Mod_ssl is an Apache module that allows SSL encryption between the webserver and the client. It is not involved in any way with the

Re: Need Help

2003-08-14 Thread John Turner
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/index.html http://jakarta.apache.org/tomcat/faq/ http://jakarta.apache.org/tomcat/faq/misc.html#invoker John Yogesh wrote: Hello, I was using Tomcat 3.1 on old server and we have shifted to new server now. we were using URL http://domain.c

Re: [OT] Any Tool to generate servlet mapping from file system files.

2003-08-14 Thread John Turner
LOL Angus Mezick wrote: http://www.perl.org/ -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2003 9:11 AM To: Tomcat Users List Subject: Re: [OT] Any Tool to generate servlet mapping from file system files. If you don't mind the sec

Re: Problem with mod_jk and admin application in Tomcat 4.1

2003-08-14 Thread John Turner
You're using a sledgehammer where a light tap will do fine. Ajp13Connector doesn't like MBeans, or vice versa. Either don't use MBeans, or use CoyoteConnector instead of Ajp13Connector. The latter is preferred and recommended, Ajp13Connector is deprecated. John J.P. Wadkin C9951627 wrote: I

Re: Running servlet via SSL???

2003-08-14 Thread John Turner
Did you do the full SSL setup on Apache? You can't just switch from http to https without doing all the configuration and having a SSL virtual host setup. RE: your question, yes, it is possible to use SSL, many people are doing so. If you can be more specific about what you've done and what e

Re: [OT] Any Tool to generate servlet mapping from file system files.

2003-08-14 Thread John Turner
If you don't mind the security risk, just use the Invoker. Problem solved. John Antony paul wrote: hello, Is there any tool or code snippet(other than IDE tools) available to generate servlet mapping for a web applications all servlet. It must search the specified directories(because some d

Re: Problem with mod_jk and admin application in Tomcat 4.1

2003-08-14 Thread John Turner
x27;t been able to get it to work and I've tried everything. John -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: 14 August 2003 14:43 To: Tomcat Users List Subject: Re: Problem with mod_jk and admin application in Tomcat 4.1 You're using a sledgehammer wh

Re: mod_jk2 on Solaris 8 - "symbol apr_socket_timeout_set: referencedsymbol not found"

2003-08-12 Thread John Turner
There's no need to specify any of the Java stuffthe module is a C module built for Apache, references to Java are superfluous, and AFAIK ignored. John J.P. Wadkin C9951627 wrote: Yep. I tried building with specific connector sources and with the source bundle that contains all the connecto

Re: [OT] Some one executing windows commands in Tomcat 4.1.18.

2003-08-12 Thread John Turner
Then contact your ISP's abuse center and tell them that a machine on their network is infected. That's the only way it will go away, otherwise you will keep seeing it. John Antony paul wrote: Althoug it is an intranet application Tomcat is listening on the public IP address accessible from in

Re: Tomat and ssl

2003-08-12 Thread John Turner
If anything, it's a lowercase "k". John Johnson, David wrote: Does Apache take notice of case? I always use JKMount instead of JkMount (capital K). Could be your gremlin... Dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 3:00

Re: integration of apache2.0.40 & tomcat4.1.27

2003-08-11 Thread John Turner
09:18, John Turner wrote: unplug wrote: I have installed RH9 and it contains apache2.0.40. Then I installed tomcat4.1.27 by binary. After that I want to integrate them to work together by using jk2. What is the easy way to integrate them? Use a connector. http://jakarta.apache.org/tomcat

Re: JkMount causing problems

2003-08-11 Thread John Turner
et to info -Original Message- From: Atristain, Bobbie J. Sent: Monday, August 11, 2003 3:03 PM To: [EMAIL PROTECTED] Subject: RE: JkMount causing problems yes -Original Message----- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 2:41 PM To: Tomcat Users Li

<    1   2   3   4   5   6   7   8   9   10   >