RE: response.sendRedirect not redirecting

2002-03-17 Thread Brian Adams
add return; just after response.sendR. -Original Message- From: Mostafa Al-Mallawani [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 17, 2002 7:12 AM To: 'Tomcat Users List' Subject: response.sendRedirect not redirecting Hi, I have a problem with redirecting. In my JSP page I keep

RE: Unix (Solaris) HTML Editor for Apache and Tomcat, Recommendations?

2002-03-10 Thread Brian Adams
netbaens! it will do that and more (java) when you are ready for servlets! :) www.netbeans.org -Original Message- From: C Cayetano [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 10, 2002 10:25 PM To: Tomcat Users List Subject: Unix (Solaris) HTML Editor for Apache and Tomcat,

RE: Is this error?

2002-03-03 Thread Brian Adams
Hi, this is not normal. looks like you had tomcat already running and you tried to start it again. tomcat was trying to bind port 8080 and it was already bound by something(in this case tomcat). that is why you see your welcome page on 8080. To stop this error make sure you are only starting

RE: Combining Apache, Tomcat, J2EE

2002-03-03 Thread Brian Adams
if the j2ee a container (app server)? As far as tomcat goes there are two chioces you have, mod_jk (older) mod_webapp(newer). which you pick is up to you. the Apache mods are in you apache build and there is a readme doc in the mod directory on how to setup the mod. can't help with the j2ee

RE: Is this error?

2002-03-03 Thread Brian Adams
Hi Again, this is not normal. looks like you had tomcat already running and you tried to start it again. tomcat was trying to bind port 8080 and it was already bound by something(in this case tomcat). that is why you see your welcome page on 8080. To stop this error make sure you are only

RE: Apache 1.3.23 +Tomcat 4.0.2

2002-03-03 Thread Brian Adams
Hi David, There is a two mods you can use. mod_jk and mod_webapp. webapp http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-connectors/webapp/ jk_mod http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-connectors/jk/ also, http://www.jguru.com/faq/Servlets is a great site for FAQ on tomcat. Alex

RE: Can't make WebAppConectionWork

2002-03-01 Thread Brian Adams
Hi Daniel, 1. have you looked at the logs on apache and tomcat? 2. FYI, start tomcat first then start apache 3. there may be a bug that is affecting you (not sure) when you restart try http://localhost/examples/jsp/num/numguess.jsp there are binary images(jpg) that would crash the web_app

RE: Stupid Tomcat Question (NEWBIE!)

2002-02-25 Thread Brian Adams
Look in the logs directory and tell us what is happening. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, February 25, 2002 6:17 AM To: [EMAIL PROTECTED] Subject: Stupid Tomcat Question (NEWBIE!) Hi, I've recently downloaded and installed Tomcat

RE: Stupid Tomcat Question (NEWBIE!)

2002-02-25 Thread Brian Adams
.2002-02-13.txt www.dpt-ltd.co.uk_log.2002-02-20.txt www.dpt-ltd.co.uk_access_log.2002-02-19.txt www.dpt-ltd.co.uk_log.2002-02-21.txt www.dpt-ltd.co.uk_access_log.2002-02-20.txt www.dpt-ltd.co.uk_log.2002-02-22.txt www.dpt-ltd.co.uk_access_log.2002-02-21.txt Brian Adams [EMAIL PROTECTED] on 25/02

RE: Stupid Tomcat Question (NEWBIE!)

2002-02-25 Thread Brian Adams
) at org.apache.catalina.startup.Catalina.process(Catalina.java) at java.lang.reflect.Method.invoke(Native Method) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java) Brian Adams [EMAIL PROTECTED] on 25/02/2002 12:29:50 Please respond to Tomcat Users List [EMAIL

RE: JSP Taglib Explanation please

2002-02-24 Thread Brian Adams
Pavel I have tons of taglibs on my app and it does not go through it twice. it actually runs the code twice? -Original Message- From: Pavel Brun [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 24, 2002 9:21 AM To: Tomcat User Subject: JSP Taglib Explanation please Hello everyone,

RE: Tomcat 4 and Apache

2002-02-24 Thread Brian Adams
Kristian, Here are my files... look at them and see if you can find yours.. I am not running Virtual hosts but I have hooks into both mod_jk and mpd_webapp (currently I only use mod_jk). see if this helps. I think I am using examples and a webapp named bbb. Goodluck, B -Original Message-

RE: Tomcat 4 and Apache

2002-02-23 Thread Brian Adams
Hi Kristian, I think I see the problem. you do NOT need the line: AddModule mod_jk.c I have seen this error before and I am no connection geek but I thought this line was not needed for mod_jk and I cchecked with my config and myne does not have it either. Goodluck, brian -Original

RE: New bie problem about Tomcat

2002-02-23 Thread Brian Adams
the service in not supposed to be called at init load time. notice the request response parameters in it. this is called by http get or post don't know why it loads twice.. B -Original Message- From: Krishna Bhamidi [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 23, 2002 11:29

RE: What should I do?

2002-02-21 Thread Brian Adams
number 2. I had problems with tomcat locking up and I changed to jk_mod. I have been running for months now. :) goodlick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 12:12 PM To: [EMAIL PROTECTED] Subject: What should I do?

RE: mod_jk for Windows -- HELP

2002-02-21 Thread Brian Adams
going to bed but here is my windows 2k tomcat 4.0.1 and apache 1.3.2ish mod_jk conf files. goodluck B -Original Message- From: Surya Suravarapu [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 10:24 PM To: Tomcat Users List Subject: mod_jk for Windows -- HELP I'm using

RE: Tomcat as a service...

2002-02-19 Thread Brian Adams
Kevin, have you set the service to Allow service to interact with desktop? it is on the Log On panel if you right click your catalina service in the services window. this may help see what the heck windows is doing. Sorry if you've done this already... B -Original Message- From: [EMAIL

RE: Tomcat as a service...

2002-02-19 Thread Brian Adams
. -Kevin Brian Adams [EMAIL PROTECTED] on 02/19/2002 08:57:21 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] cc: Subject: RE: Tomcat as a service... Kevin, have you set the service to Allow service to interact with desktop

RE: resource files not found in /WEB-INF/classes

2002-02-13 Thread Brian Adams
thanks Craig that is a much cleaner way! I am adding this to my app and to my helpful hints folder :) B -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 12, 2002 10:15 PM To: Tomcat Users List Subject: Re: resource files not found in

RE: database connect to db overr mod_webapp - possible bug

2002-02-12 Thread Brian Adams
can we see the errors? -Original Message- From: Chris Faulkner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 12, 2002 7:26 AM To: Tomcat Users List Subject: database connect to db overr mod_webapp - possible bug Hi I have a JSP which,when called direct into Tomcat (4.0.1) on

RE: RE: database connect to db overr mod_webapp - possible bug

2002-02-12 Thread Brian Adams
Well, I can't tell you if it is a mod_webapp bug or not but if it was e I would switch to mod_jk instead of mod_webapp and try it again. mod_webapp has had other problems but I hae not seen this one (not that I have really looked). can you switch to mod_jk and try it again? B -Original

RE: File upload problem

2002-02-12 Thread Brian Adams
it can be a bug or not... If you have tomcat running in stand alone(localhost:8080) as well as webapp you can test the servlet by connecting directly to tomcat and see if it works if it does, then you are probably affected by a webapp bug(the one you read about) B -Original Message-

RE: File upload problem

2002-02-12 Thread Brian Adams
. - Miguel Ángel Medina López Logic Factory: www.logic-factory.com Granada - España - Original Message - From: Brian Adams [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Tuesday, February 12, 2002 8:32 PM Subject: RE: File upload

RE: resource files not found in /WEB-INF/classes

2002-02-12 Thread Brian Adams
try putting File f = new File(webapps/mywebapp/WEB-INF/classes/config.properties); or File f = new File(../webapps/mywebapp/WEB-INF/classes/config.properties); (in case path is in bin from startup) BTW, I put mine in WEB-INF only not in classesbut that is me and I am not a

RE: resource files not found in /WEB-INF/classes

2002-02-12 Thread Brian Adams
the original email). Something getting cached somewhere? I use Tomcat Manager to reload the application each time I redeploy the files. It's working, but I don't trust it to stay that way. Michael -Original Message- From: Brian Adams [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 12

RE: JDBC

2002-02-11 Thread Brian Adams
what problems are you having? can you post an error or code or both? B -Original Message- From: vinny patel [mailto:[EMAIL PROTECTED]] Sent: Monday, February 11, 2002 3:48 AM To: [EMAIL PROTECTED] Subject: JDBC I am having problems with my servlets that connect to a postgres database.

RE: JDBC

2002-02-11 Thread Brian Adams
) { out.println(SQL Exception + ex2); } out.println(/HTML); out.println(/BODY); } } *** i believe it's something to do with the postgres driver? cheers From: Brian Adams [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat

RE: JDBC

2002-02-11 Thread Brian Adams
cool! free drink... :) -Original Message- From: vinny patel [mailto:[EMAIL PROTECTED]] Sent: Monday, February 11, 2002 7:06 AM To: [EMAIL PROTECTED] Subject: RE: JDBC sorted! thanks brian, i'll buy u a drink if i ever go to the states!! cheers From: Brian Adams [EMAIL PROTECTED

RE: com.oreilly.servlet and damaged files

2002-02-09 Thread Brian Adams
I bet it is the connector! run tomcat as stand alone (port 8080 by default) and access the servlet without using apache and I bet money it will work! :) goodluck -Original Message- From: Reini [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 09, 2002 10:00 PM To: [EMAIL PROTECTED]

RE: new

2002-02-07 Thread Brian Adams
Hi U, Probably a Registry hack/bug that is not correct. check your \HKEY_Local_Machine\SOFTWARE\JavaSoft check that default values are pointing to correct JRE Keys and that their values are pointing to valid jdk paths. If that does not work download the src version and install it... B

RE: Problem with IE

2002-02-07 Thread Brian Adams
Worked for me! :) in both -Original Message- From: Uma Maheswar [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 2002 10:18 PM To: Tomcat Users List Subject: Problem with IE Hi, I am using Apache Tomcat4.0. I am doing a project in Servlets. I do not get my files working on IE

RE: PLEASE URGENT: log off problem!!!

2002-02-06 Thread Brian Adams
two reasons: 1. bug in jdk add -Xrs to wrapper.cmd_line in wrappers.properties. 2. don't run the service as interact with desktop. goodluck B -Original Message- From: Catalin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 4:03 PM To: [EMAIL PROTECTED] Subject: PLEASE

RE: apache + mod_SSL + tomcat

2002-02-06 Thread Brian Adams
my guess is yes, if you do not check in jsp/servlets are on https (request.isSecure()) and if you are allowing users to port 8080 (block it). my guess... :) -Original Message- From: Dean Hiller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 7:33 AM To: Tomcat Users List

RE: Tomcat not getting installed

2002-02-04 Thread Brian Adams
and install it first. Goodluck, Brian Adams -Original Message- From: Uma Maheswar [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 4:57 AM To: Tomcat Users List Subject: Tomcat not getting installed Hi, I am using JavaWebServer2.0(Trial Version) in WinXP. I have downloaded

RE: Apache 1.3.23 + Tomcat 4.0.1 + WARP Connector on NT

2002-02-04 Thread Brian Adams
mod_jk, works great on NT -Original Message- From: YI,LI (HP-USA,ex1) [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 8:31 AM To: 'Tomcat Users List' Subject: Apache 1.3.23 + Tomcat 4.0.1 + WARP Connector on NT I have been struggling to make this work for two days, it was

RE: Apache 1.3.20 + Tomcat 4.0.1 + WARP Connector

2002-02-03 Thread Brian Adams
Hi Anthony, Why not use mod_jk instead of WARP? I have seen folks on the list that have had no problems with WARP on non-Windows servers but I don't know the problem rate of WARP. I had some troubles also (but on windows) and switched to mod_jk. B -Original Message- From: Anthony Jones

RE: triggering JSP page recompilation

2002-02-01 Thread Brian Adams
I'm sorry, come again? I don't think you sent anything or I can't see it... B -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 1:14 PM To: Tomcat Users List Subject: Re: triggering JSP page recompilation Guillermo Payet [EMAIL

RE: why use mod_webapp?

2002-01-31 Thread Brian Adams
same port! port 80 is http (apache) tomcat would then have to run alone on another machine or Virtual IP. the beauty is that we can now SSI jsp/servlet in html and you never bounce to another port or have to add DNS entrees... just a few reasons, you'll get more and better explained. B

RE: why use mod_webapp?

2002-01-31 Thread Brian Adams
) and get the same result. My own personal opinion is mod_webapp is cleaner but I'm under some pressue to say WHY it's better. Can't really think of any good reasons really. Dave -Original Message- From: Brian Adams [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 31, 2002 3:23 PM

RE: Help !!! JNI Tomcat (UnSatisfiedLinkError exception)

2002-01-30 Thread Brian Adams
Tomcat must not look in the \winnt\system32 directory. put the dll in the same directory as the class file. If you have tomcat starting as a service, try putting the dll in the %TOMCAT_HOME% directory eg. C:\tomcat lastly try putting the dll in %TOMCAT_HOME%\bin directory. goodluck, B

RE: Ap 1.3.22+TC 4.0.1+NT4+webapp=Hangs loading graphics

2002-01-29 Thread Brian Adams
file could not be found fatal error: c1083 httpd.h where can i find the httpd.h file??? wich file do i need else??? thanx lars. -Ursprungliche Nachricht- Von: Brian Adams [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 29. Januar 2002 04:52 An: Tomcat Users List Betreff: RE: Ap 1.3.22+TC

RE: Errors using warp connector

2002-01-29 Thread Brian Adams
Cool, I don't know about the others but I appreciate you doing this :) Thanks! B -Original Message- From: Mark Eggers [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002 2:57 PM To: Tomcat Users List Subject: RE: Errors using warp connector Currently I have been able to compile

RE: Scheduled Process servlet: possible?

2002-01-29 Thread Brian Adams
I have a Thread class that does some stuff for me every night and I wrapped that with a servlet that calls .start() in the servlet init() method and that servlet in loaded at start up via load-on-startup1/load-on-startup tag in web.xml (look below) this Thread class sleeps for 24 hours then

RE: Serving HTML and J2EE apps

2002-01-29 Thread Brian Adams
okay, how do you setup a Enterprise Stack h. What is the text capacity of outlook? three big pieces to install/consider: HTML serving (Apache) Servlet and jsp pages (Tomcat) J2EE Applications with EJB and more (JBOSS and others) installing: Apache web server, Port 80 www.apache.org

RE: urgent -- tomcat as NT services interrupt unexpected

2002-01-28 Thread Brian Adams
no log attached. send again please -Original Message- From: Sabrina Liu [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 9:35 AM To: [EMAIL PROTECTED] Subject: urgent -- tomcat as NT services interrupt unexpected Dear Sir or Madam, We are using JDK1.2.2, Tomcat3.2.3, working

RE: Binary Dist. tomcat 4.01 Win32 can't find jdk on installation

2002-01-28 Thread Brian Adams
search through this archive. this is a known problem with Windoz. There is a registry edit that has to be made... I just downloaded the source and installed that. I would search for: Couldn't find a Java Development Kit good luck, B -Original Message- From: Michael Kastner

RE: com.oreilly.servlet.MultipartRequest IO Error

2002-01-28 Thread Brian Adams
I saw it in the past 6 weeks come across the list and I believe it is in the Warp connector. hte guy was saying that the file did not end or start with (can't remember which) FF. Maybe download from the CVS and build yourself... I'm sure someone else will have better memory. goodluck, B

RE: com.oreilly.servlet.MultipartRequest IO Error

2002-01-28 Thread Brian Adams
http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg06327.html here is one problem. -Original Message- From: J S (l) [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 12:39 PM To: Tomcat Users List Subject: com.oreilly.servlet.MultipartRequest IO Error Please,

RE: com.oreilly.servlet.MultipartRequest IO Error

2002-01-28 Thread Brian Adams
. I just have one more question...would I have to completely recompile tomcat to recompile the WARP connector or not? J Sears On Mon, 2002-01-28 at 12:41, Brian Adams wrote: I saw it in the past 6 weeks come across the list and I believe it is in the Warp connector. hte guy was saying

RE: Ap 1.3.22+TC 4.0.1+NT4+webapp=Hangs loading graphics

2002-01-28 Thread Brian Adams
bug in Warp connector. If you need to use webapp then maybe download 4.0.2b and try that. I know folks checked it out of cvs a month ago and it worked. good luck, B -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 7:56 PM To: [EMAIL

RE: Ap 1.3.22+TC 4.0.1+NT4+webapp=Hangs loading graphics

2002-01-28 Thread Brian Adams
try just tomcat 4.0.2-2b (does not matter zip exe) by its self and see if it fixes it. I am not sure if it is the warp.jar or if the bug was in mod_webapp.so. I would try the new tomcat alone and see. if not you'll have to download the mod_webapp.c and build it or ask some one to give you

RE: Errors using warp connector

2002-01-28 Thread Brian Adams
looks like Tomcat is trying to use a port already in use so it dies. then Warp connector comes up and can not connect to taomcat. get tomcat on the port first and working then bring up apache after that. B -Original Message- From: Donald Lee [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: SSL and certificates, AGAIN

2002-01-28 Thread Brian Adams
I hae not done this yet, but I want to learn. Can we try and keep it on the list? I am a few weeks before I get a signed cert (www.geotrust.com cheaper I think) so please keep me in the loop. All I have learned so far is self-signed certs. Thanks, B -Original Message- From: Richard S.

RE: Ap 1.3.22+TC 4.0.1+NT4+webapp=Hangs loading graphics

2002-01-28 Thread Brian Adams
yep, wich I could help but I don't have MS Visual Studio. CAN SOMEONE HELP PLEASE? (not shouting just getting attention) :) We need mod_webapp.so for Windows and it has to be newer than the download we can already get. Has someone built it from CVS? Thanks for the help folks, B good luck

RE: Invoking a process on the server from a servlet

2002-01-22 Thread Brian Adams
Mark is correct. If you want you can have the servlet write to a file every time you get a visitor and then write a seperate program that runs in your tooltray. The other program should read the file and when a new line is written then popup what ever it is you want to see. If it is in the your

RE: Invoking a process on the server from a servlet

2002-01-22 Thread Brian Adams
. -Original Message- From: Brian Adams [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 22, 2002 10:34 AM To: 'Tomcat Users List' Subject: RE: Invoking a process on the server from a servlet Mark is correct. If you want you can have the servlet write to a file every time you get

RE: instructions for Apache webapp

2002-01-21 Thread Brian Adams
Hi Dean, http://cvs.apache.org/viewcvs/jakarta-tomcat-connectors/webapp/INSTALL.txt?r ev=1.6content-type=text/vnd.viewcvs-markup sorry if the URL is broken (Outlook sucks) but this doc comes with mod_webapp. I have given you a link to the install.txt file from the CVS that houses mod_webapp.

RE: j2ee and Tomcat 4.0

2002-01-21 Thread Brian Adams
I do the first one, but I am not using EJB or other j2ee functions at this time. If you are just using serlvets and don't plan on installing an ap server like jboss then my advice would be the first one. I believe the servlet.jar comes with topcat you may have to point your dev env (CLASSPATH)

RE: use JSP open new window

2002-01-21 Thread Brian Adams
yes, I was thinking about this too and I would (if you had to) make the call to the jsp page that wanted in a new window with a parameter like: response.sendRedirect(http://localhost/window.jsp?window=1;); return; then in your window.jsp page put: % if(1.equals(request.getParameter(window))){

RE: INSTALLING Tomcat-4.0 with JDK1.4 beta.

2002-01-18 Thread Brian Adams
It does work I am using it. There is a registry error that causes that. I don't know how to fix the registry but others here do. I download the src version for windows and installed by hand and it works great on two machines! :) ohh, you did not say what OS, I assumed Windows if not dunno..

RE: benchmark

2002-01-18 Thread Brian Adams
thanks for sharing your info! B -Original Message- From: Peter Lin [mailto:[EMAIL PROTECTED]] Sent: Friday, January 18, 2002 2:59 PM To: [EMAIL PROTECTED] Subject: benchmark Greetings everyone, a quick thanks to the tomcat developers for their hardwork. I just spent two week

RE: response.sendRedirect

2002-01-17 Thread Brian Adams
Poking fun have you // your session.invalidate and tried it? :) sorry it begged the question! my answer is dunno, try commenting it out and then try it or swapping the two lines /Poking fun -Original Message- From: Jerry Jalenak [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 17,

RE: Can a url have a space in it?

2002-01-17 Thread Brian Adams
if it is in your URL then it should %20 that represents a space in a string so if uRL was http:/localhost/servlet/test?file=my%20documents then when your do : String paramV = request.getParameter(file); out.println(File Path is: + paramV); this should make paramV = my documents is this what

RE: Can a url have a space in it?

2002-01-17 Thread Brian Adams
into http://localhost/my%20folder/index.html When you click on that url though, you get a 404 error. -Original Message- From: Brian Adams [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 17, 2002 6:08 PM To: Tomcat Users List Subject: RE: Can a url have a space in it? if it is in your URL

RE: mod_webapp hanging apache Win 2000 apache 1.3.22 tomcat4.0

2002-01-14 Thread Brian Adams
problem with no real luck just good advise so I installed mod_jk and that works for me. My windows box is a development box not production(thank god) and it works fine. Good luck Brian Adams -Original Message- From: Terry McBride [mailto:[EMAIL PROTECTED]] Sent: Monday, January 14, 2002 2:10

RE: mod_webapp hanging apache Win 2000 apache 1.3.22 tomcat4.0

2002-01-14 Thread Brian Adams
this thread contain good instructions? http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg38624.html I guess I nees to download Tomcat 3. Thanks for any help, Terry --- Brian Adams [EMAIL PROTECTED] wrote: Hi Terry, I think if you take a close look at the archive you will see

RE: mod_webapp and Tomcat tip

2002-01-11 Thread Brian Adams
cool tip.. did not know that. thanks, Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 9:35 AM To: [EMAIL PROTECTED] Subject: mod_webapp and Tomcat tip Hi, This may be obvious but, it helped me. Enabling the /webapp-info

RE: mod_webapp.c

2002-01-09 Thread Brian Adams
don't actually need the file just a handle to the module (Load...). try it :) -Original Message- From: Ansalvish, Dave R [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 11:58 AM To: '[EMAIL PROTECTED]' Subject: mod_webapp.c Hi, I got TOMCAT 4.0.1 installed and running

RE: Tomcat v4.01 refuses to install on WinXP

2002-01-09 Thread Brian Adams
this is a know problem it is in your registry. I don't know where exactly but it has been posted here before.look through the last 45 days and you will see it. or wait and someone will answer with more precision than me. :) -Original Message- From: Graham Leggett [mailto:[EMAIL

RE: Standard SSL question

2002-01-09 Thread Brian Adams
actually you can just use request.isSecure(); it is built in to ServletRequest :) -Original Message- From: Corey A. Johnson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 5:55 PM To: Tomcat Users List Subject: Re: Standard SSL question I have done something similar.. by

RE: Odd Apache+Tomcat errors

2002-01-07 Thread Brian Adams
are you logging at debug level? what does it show when you do? SSLLog logs/SSL.log SSLLogLevel debug in your httpd.conf (in case you are not familiar) B -Original Message- From: Mario Felarca [mailto:[EMAIL PROTECTED]] Sent: Monday, January 07, 2002 3:48 PM To: Tomcat Users List

RE: JDBC for mySQL

2002-01-01 Thread Brian Adams
yep! http://jdbc.postgresql.org/ http://sourceforge.net/project/showfiles.php?group_id=15923 both work with tomcat! have fun. B -Original Message- From: Simon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 01, 2002 12:44 PM To: Tomcat Users List Subject: JDBC for mySQL Sorry, this

RE: Problem with the mod_webapp connector

2001-12-27 Thread Brian Adams
Hi Marcelo, If you check the archive around mid November to Dec 10 you will see many posts from me and others on this problem. Bottom line, it no worky! I heard of some that download the warp connector from cvs and compiled tthat and they never replied to the list to say if it worked or not. I

RE: servlet can't access postgreSQL database

2001-12-24 Thread Brian Adams
Hi, I am running it on Windows and put it in common\lib and did not touch any files and it sees it. hmmm... I have a redhat box and I have not dropped in the jar yet I will try... B -Original Message- From: Sanjeev Rathore [mailto:[EMAIL PROTECTED]] Sent: Monday, December 24, 2001

RE: servlet can't access postgreSQL database

2001-12-24 Thread Brian Adams
yep, just dropped it in common/lib in RedHat and restarted tomcat and it worked. :) B checked conf files, no sign of any postrgesql confs. -Original Message- From: Sanjeev Rathore [mailto:[EMAIL PROTECTED]] Sent: Monday, December 24, 2001 10:50 PM To: [EMAIL PROTECTED] Subject: servlet

RE: getting mod_webapps to work

2001-12-21 Thread Brian Adams
why are you doing ServerName sol.lansa.co.uk:8080/test? why not ServerName sol.lansa.co.uk or ServerName sol.lansa.co.uk/test the warp connector has nothing to do with 8080, that is an Apache config thing. Warp has had some problems in windows but I have it working in Linux RH6-7.1 try

RE: getting mod_webapps to work

2001-12-21 Thread Brian Adams
- From: Cressatti, Dominique [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 10:06 AM To: 'Tomcat Users List' Subject: RE: getting mod_webapps to work Cheers Brian, How do test that it works? Dom -Original Message- From: Brian Adams [mailto:[EMAIL PROTECTED]] Sent: 21

RE: getting mod_webapps to work

2001-12-21 Thread Brian Adams
actually you may want to start tomcat first then restart apache -Original Message- From: Brian Adams [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 9:56 AM To: 'Tomcat Users List' Subject: RE: getting mod_webapps to work apachectl check apachectl restart $CATALINA_HOME

RE: getting mod_webapps to work

2001-12-21 Thread Brian Adams
to run on http://sol.lansa.co.uk:8080/examples/jsp Dom -Original Message- From: Brian Adams [mailto:[EMAIL PROTECTED]] Sent: 21 December 2001 15:56 To: 'Tomcat Users List' Subject: RE: getting mod_webapps to work apachectl check apachectl restart $CATALINA_HOME/bin/catalina.sh run http

RE: Alternate webapps dir not seen by apache

2001-12-21 Thread Brian Adams
have you erased the compiled apps in the work directory? -Original Message- From: Charles N. Harvey III [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 3:20 PM To: Tomcat Users List Subject: Alternate webapps dir not seen by apache Hello. I have tomcat at C:\tomcat and

RE: Can anyone give me an answer?

2001-12-19 Thread Brian Adams
Hi Ed, I do mine via apache httpd.conf Alias /catgraphics/ C:/Apps/Apache/catgraphics/ Directory C:/Apps/Apache/catgraphics Options FollowSymLinks AllowOverride None /Directory here is an alias... now my web-app gets it like: a href=/catgraphics/image.jpghere/a -Original

RE: mod_webapp file upload fix

2001-12-13 Thread Brian Adams
Subject: Re: mod_webapp file upload fix where can I get mod_webapp cvs ? I can't fint it anymore. Dom - Original Message - From: Brian Adams [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Wednesday, December 12, 2001 9:39 PM Subject: RE: mod_webapp file upload fix

RE: Errors building mod_webapp for Apache 1.3

2001-12-13 Thread Brian Adams
what OS and version? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 9:18 AM To: Tomcat Users List Subject: Errors building mod_webapp for Apache 1.3 I have checked out the latest cvs version of jakarta-tomcat-connectors and

RE: Errors building mod_webapp for Apache 1.3

2001-12-13 Thread Brian Adams
It looks like there may by a problem with your apxs script. if you don't know wa.h is in the webapps include and I see it here being -I I had problems with apxs and had to change some lines in it. 1.3.22 sounds kinda new, I am surprised that it did not work there. maybe you can INCLUDE the

RE: somebody trying hack me, what they really wanted?

2001-12-13 Thread Brian Adams
HA! your funny! FBI stop building your Magic Lantern and come find the poor sap that is trying to hack my free software nothing invested but time server sitting in my broadband closet! Ya Right! -Original Message- From: Dr. Evil [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13,

RE: Crystal report work with Tomcat

2001-12-12 Thread Brian Adams
Sorry I missed the thread. I am working with Tomcat/CR for a project at work and we dropped the applet that crystal reports provides. they have not supported it for quite sometime now(htey are in bed with MS) and they applet has bugs. Denis is right though, I believe you just drop it in

RE: Crystal report work with Tomcat

2001-12-12 Thread Brian Adams
Message - From: Brian Adams [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Wednesday, December 12, 2001 10:36 AM Subject: RE: Crystal report work with Tomcat Sorry I missed the thread. I am working with Tomcat/CR for a project at work and we dropped the applet

RE: mod_webapp file upload fix

2001-12-12 Thread Brian Adams
I think people were getting latest from cvs and compiling there own. you may try that. B -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 3:00 PM To: [EMAIL PROTECTED] Subject: mod_webapp file upload fix Is there a new binary

RE: need information

2001-12-11 Thread Brian Adams
I don't know how others do it but I unwar the file in the webapps so the directory looks like /var/tomcat4/webapps/opencms then I make the appropriate changes in either server.xml or where ever you register your apps. then I restart tommy! :) HTH B -Original Message- From: zarouali

RE: Jakarta NT SERVICE--- logout USER

2001-12-10 Thread Brian Adams
$ java -X -Xbootclasspath:directories and zip/jar files separated by ; set search path for bootstrap classes and resources -Xnoclassgc disable class garbage collection -Xmssizeset initial Java heap size -Xmxsizeset maximum Java heap size

RE: Apache Tomcat/4.01 - HTTP Status 500 - Internal Server Error

2001-12-10 Thread Brian Adams
permissions right on the directories and files? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, December 10, 2001 9:40 AM To: [EMAIL PROTECTED] Subject: Apache Tomcat/4.01 - HTTP Status 500 - Internal Server Error Hi Everyone, We are using Apache

RE: Help needed: SocketException killing Tomcat 4.0.1 !?

2001-12-10 Thread Brian Adams
sounds like the sam problem I had when using mod_webapp I reconfigured it for good old jk_mod and all is well. B -Original Message- From: Guillaume Mathe [mailto:[EMAIL PROTECTED]] Sent: Monday, December 10, 2001 2:32 AM To: [EMAIL PROTECTED] Subject: Help needed: SocketException

RE: Regarding tomca and servelt

2001-12-10 Thread Brian Adams
Jegan, You haven't said a thing about httpd.conf... what is in it? what did you add to it? do you tell apache where to find /ectu/? if you are going to appaches port (assuming 80) then httpd.conf must be configured to call tomcat. maybe send some information about httpd.conf file. thanks, B

RE: error while building mod_jk.so Tomcat 3.3 + Apache 1.3.22 on AIX 4.33

2001-12-10 Thread Brian Adams
I think there was someone else having problems this morning with an AIX build as well. have you checked the archive of this mail list? http://www.mail-archive.com/tomcat-user@jakarta.apache.org/ B -Original Message- From: Liedtke, Joerg [mailto:[EMAIL PROTECTED]] Sent: Monday, December

RE: XP/Cygwin/jakarta-tomcat-4.0.1.exe problems

2001-12-08 Thread Brian Adams
variables become case sensitive with Cygwin or anything like that do they? Brian Adams wrote: Hi David, I have cygwin and win2000 but I had the same problem the other night. I think mine was just a typo in my Windows java_home env. Which executable are you trying when you get the error? Also what

RE: XP/Cygwin/jakarta-tomcat-4.0.1.exe problems

2001-12-08 Thread Brian Adams
and I assume that will work just fine, but I thought it might be interesting to the developers that the exe is having this problem. Thanks - I'll send an update once I successfully install the zip. Brian Adams wrote: David, I really can not remember how I fixed it. Did you right click

RE: ONE More Time! why does Tomcat 4 work this way

2001-12-08 Thread Brian Adams
any one else faced the same problems? Thanks and Regards, Sri K Ganjam - Original Message - From: Brian Adams [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Friday, December 07, 2001 2:47 AM Subject: RE: ONE More Time! why does Tomcat 4 work this way clue please. were

RE: HELP ON TOMCAT WITH APACHE

2001-12-08 Thread Brian Adams
did you add LoadModule and AddModule lines in the httpd.conf file? are they correct? (.so) I put my WebAppConnection conn warp localhost:8008 and WebAppDeploy examples conn /examples at the very end of standard httpd.conf file and it worked fine except for loading gif files. I am certain there is

RE: XP/Cygwin/jakarta-tomcat-4.0.1.exe problems

2001-12-08 Thread Brian Adams
Home with Cygwin. It might be interesting to know whether anyone is able to run the tomcat 4.0.1 exe on XP without Cygwin installed. Brian Adams wrote: I just tried the executable that I did not delete and it gave me the error. so I must have installed that zipped version. THIS MUST BE A BUG

RE: newbie tomcat 4.0.1installation on NT

2001-12-08 Thread Brian Adams
Hi John, It really looks as if something already has that port number or one of the ports that are defined in your server.xml netstat -a will give you a full print out of all the ports in use. A few posts ago (earlier today ) someone wrote in and said that paths to CATALINA with anything greater

  1   2   >