RE: Should i use J2re instead of jdk in my Tomcat server ?

2002-05-06 Thread Brian Bernardo
Yes, you need the jdk installed. JAVA_HOME should point to the jdk installation directory. B -Original Message- From: Jose Euclides da Silva Junior - DIGR.O [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 1:11 PM To: [EMAIL PROTECTED] Subject: Should i use J2re instead of jdk in

RE: Servlet init() callin twice on startup. PLease help.

2002-04-29 Thread Brian Bernardo
trusted=false/ People always miss that one when using mod_webapp. Give more info, so the list can be of greater assistance. Brian -Original Message- From: IvanLatysh [mailto:[EMAIL PROTECTED]] Sent: Monday, April 29, 2002 11:25 AM To: Tomcat Users List Subject: Re: Servlet init() callin

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-26 Thread Brian Bernardo
Can you send me your httpd.conf file then, because I still get the same problem following your suggestion below. Brian -Original Message- From: Ken Anderson [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 8:28 AM To: Tomcat Users List Subject: Re: tomcat/apache with ALIASES

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-26 Thread Brian Bernardo
. WebLogic can do it, even back with 5.0!! Brian -Original Message- From: Ken Anderson [mailto:[EMAIL PROTECTED]] Sent: Friday, April 26, 2002 10:46 AM To: Tomcat Users List Subject: Re: tomcat/apache with ALIASES (Was canonical names) This works on Apache 1.3.22 on RedHat Linux, using

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-26 Thread Brian Bernardo
(Was canonical names) What do you mean by 'targetHost' entry? Ken Brian Bernardo wrote: I am using Apache 1.3.24 on Solaris 8, and was using tomcat 4.03 with the 4.03 connector. I upgraded to tomcat 4.04b2 and compiled the connector too, but still have the same problem. The targetHost entry always

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-25 Thread Brian Bernardo
First of all, I am very proficient with DNS; that was not the question. I want users who go to http://name.domain/webapps to have the same webappdeployment as http://name2.domain/webapps. It is important that however they got there (domain prefix) be maintained throughout their session. This

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-25 Thread Brian Bernardo
to be a way to restrict (or add) more than one targetHost for tomcat to allow several access methods. Brian -Original Message- From: Ken Anderson [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 2:02 PM To: Tomcat Users List Subject: Re: tomcat/apache with ALIASES

tomcat/apache with canonical names

2002-04-24 Thread Brian Bernardo
whatever the ServerName name is as its targetHost and cannot deviate from that. IfModule mod_webapp.c WebAppConnection conn warp localhost:8008 WebAppDeploy../../../../webapps conn/webapps/ /IfModule -Brian

Webappdeploy line help

2002-04-15 Thread Brian Bernardo
Help. Is there a way to use tomcat to serve up from multiple urls within one instance? After starting apache I get an instance for every WebAppDeploy line and I am not sure if this is bad or how much it effects performance/scalability. I have the following lines in my httpd.conf: IfModule

RE: Webappdeploy line help

2002-04-15 Thread Brian Bernardo
threads, not processes. Joseph Molnar http://www.codesta.com/ - Original Message - From: Brian Bernardo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 15, 2002 12:15 PM Subject: Webappdeploy line help Help. Is there a way to use

change a webapp's context

2002-04-10 Thread Brian K. Buckley
and reverted back to the test context. What's the best way to change a webapp context? Are there directories or files to delete or move or any other suggestions? Regards, -Brian (using Tomcat 4.0.4-b2-01) -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED

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: Tomcat 4 Realms and MySQL

2002-03-05 Thread Brian Owens
Apress publishing company has a book that deals with this topic called Apache Jakarta-Tomcat (I forget the authors name but if you go to Amazon.com you will find it). Basically you define your mySQL schema into the Realm section for your virtual server. Then you comment out the MemoryRealm,

Re: Compiling mod_webapp.so ...

2002-03-04 Thread brian ally
'lo, this warning may be ignored. The group that wrote mod_SSL needed to add some hooks into the server engine, and created the EAPI. The warning was added by them. BUT, most, if not all, modules do not depend on EAPI. AFAIK, these changes haven't _officially_ been accepted. The warning is

Re: java.lang.UnsatisfiedLinkError: no ocijdbc8 in shared library path

2002-03-04 Thread brian ally
Are you starting tomcat as root? On my linux box, if i su to root, all manner of LD_LIBRARY_PATH problems begin. i need to su - (with the dash). Could this be your problem? /b Abhishek Pamecha wrote: it is there.. -Original Message- From: Toru Watanabe [mailto:[EMAIL PROTECTED]]

Re: java.lang.UnsatisfiedLinkError: no ocijdbc8 in shared library path

2002-03-04 Thread brian ally
i don't run as root; i think i misundertood/mixed up the situation with an earlier post or from wherever /b David Cassidy wrote: Brian, For a very large number of reasons it's probably best not to run tomcat under the super user account... You might want to try setting the LD_LIBRARY_PATH

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: SSL Client authentication with standalone Tomcat

2002-03-02 Thread Brian Palmer
, exactly. Thanks a lot! -- Brian Palmer Whoever fights monsters should see to it that in the process he does not become a monster. And when you look long into an abyss, the abyss also looks into you - Nietzsche -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL

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

Custom 404 Page

2002-02-27 Thread Brian Owens
type /ind (which is not a valid file). I don't think this is the same as the welcome file since I think that only refers to no filename being supplied. In my case an invalid filename is supplied. I'm running Apache 1.3.20 and Tomcat 4.0.2. Thanks, Brian -- To unsubscribe: mailto:[EMAIL

RE: mySQL/JDBC/Tomcat4 documentation

2002-02-27 Thread Brian Owens
Sometimes with certain JDBC Drivers you must do a Class.forName(driver).newInstance() for it to load properly. Brian -Original Message- From: Steve Madonna [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 3:04 PM To: 'Tomcat Users List' Subject: RE: mySQL/JDBC/Tomcat4

RE: tomcat 4.0 and soap 2.2

2002-02-27 Thread Brian Owens
I use JDK 1.4 with tomcat 4.0.2 with no problems, SOAP 2.2 too. -Original Message- From: Reynir Hübner [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 27, 2002 3:00 PM To: Tomcat Users List Subject: RE: tomcat 4.0 and soap 2.2 sure hmm no well tomcat 4.02 I think works with jdk

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

TC 3.2.x work with JDK1.4

2002-02-22 Thread Brian Radovich
Howdy Does anyone know if Tomcat 3.2.3 or 3.2.4 will work with j2se1.4? Thanks Brian -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

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

HTTP Redirect, Mime Type, and IE

2002-02-18 Thread Brian O'Kelley
I don't see the second request come into Tomcat. So what's the deal? Thanks in advance, Brian

Newbie can't run own JSP in Tomcat (404 - File Not Found)

2002-02-17 Thread Brian Peasland
my jar files to my CLASSPATH environment variable for this class, but it still can't find it. Any ideas? Thanks, Brian == Brian Peasland - Database Administrator Raytheon Systems Company USGS - EROS Data Center Sioux Falls, SD 57198 Phone: (605) 594-2742 Fax: (605

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
not found in /WEB-INF/classes Thanks Brian. I went through and tried all of: File f = new File(../webapps/mywebapp/WEB-INF/classes/config.properties); File f = new File(webapps/mywebapp/WEB-INF/classes/config.properties); File f = new File(mywebapp/WEB-INF/classes/config.properties); File f = new

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

Tomcat and JNI

2002-01-29 Thread Brian Hanuska
that the loadLibrary() call is executed only once during the lifetime of a particular JVM. Any help would be appreciated. Thanks Brian Hanuska -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

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: kindly confirm the uninstall steps...

2002-01-24 Thread Brian Claridge
for your help. Andy Ruben IT Specialist/Webmaster http://vaww.cheyenne.med.va.gov 307.778.7523 -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED] = Brian C. Claridge Software

Tomcat and RetrievalWare

2002-01-23 Thread Brian Hanuska
Is anyone using Convera's Retrievalware product with Tomcat? I am looking for performance information. Any information would help, like OS that you are running on, number of simultaneous users supported, execute thread count, heap size. Thanks Brian Hanuska -- To unsubscribe: mailto

RE: Invoking a process on the server from a servlet

2002-01-22 Thread Brian Adams
tooltray then the program will only work when you login. :) the servlet will just write to a special log file that is read by your new little monitoring program. goodluck, Brian -Original Message- From: Wagoner, Mark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 22, 2002 9:46 AM

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
. If you download mod_webapp you will get this doc in it... my advise is to get a nightly build of this module, some of the folks here have made some changes to the module since it's formal release. Goodluck, Brian -Original Message- From: Dean Hall [mailto:[EMAIL PROTECTED]] Sent: Monday

RE: j2ee and Tomcat 4.0

2002-01-21 Thread Brian Adams
) to it so that they both (tomcat and javac) use the save version. Brian -Original Message- From: Micael Padraig Og mac Grene [mailto:[EMAIL PROTECTED]] Sent: Monday, January 21, 2002 12:53 AM To: [EMAIL PROTECTED] Subject: j2ee and Tomcat 4.0 Do we add the javax/servlets to j2se or do we

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
PM To: Tomcat Users List Subject: RE: Can a url have a space in it? Thanks for responding Brian, Users are creating folders with spaces in them, not in the parameters, so the url is like this... http://localhost/my folder/index.html tomcat (or the browser) is successfully turning the 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
PROTECTED]] Sent: Monday, January 14, 2002 2:35 PM To: Tomcat Users List Subject: RE: mod_webapp hanging apache Win 2000 apache 1.3.22 tomcat4.0 Thanks Brian, I must be a bad archive searcher. I the simptoms seem different though because apache isn't working AT ALL when tomcat is running. Even

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

<    1   2   3   4   5   6   >