Re: Tomcat 4.0.1/Apache 1.3/Warp Connection

2001-11-26 Thread BoD
You want to set CATALINA_BASE, not CATALINA_HOME -- CATALINA_HOME points to the location of your Tomcat 4 installation, while CATALINA_BASE points to the location your web apps are found in. I tried that, too but it changes nothing. Anyway, like I said in my previous mail, there is no such

servlets with Apache and mod_webapp

2001-11-26 Thread Krasi Zlatev
Hi, I am using Apache,mod_webapp and Tomcat 4. I am having trouble running servlets. I can run jsp's, but with servlets I get 404 error - file not found. If I type file.class the files wants to be downloaded. My configuration is as simple as WebAppDeploy something conn /servlets. Thank You!

Re: Tomcat 4.0.1/Apache 1.3/Warp Connection

2001-11-26 Thread Gerard van Enk
BoD wrote: I have a similar problem I think : My webapp is not in the webapp directory, but elsewhere on my hard drive. I configured the server.xml to indicate this information (Context path=/bod docBase=c:\tmp\bod ...). The /bod context works fine in tomcat standalone

How to share (or refresh) the session

2001-11-26 Thread Oto Buchta
Hi, I'm using the Tomcat 4.0 and I would like to know how can I share session between SSL part of web site and nonencrypted part of thesame one. If it isnot possible, my second question is how to refresh user's session without any user's hit. Why? I would like to use the SSL connection only in

RE: the classloader doesn't like XML in TC 3.2.3 and TC 4.0

2001-11-26 Thread Arnaud Héritier
-Message d'origine- De: Domingo Aguilera [SMTP:[EMAIL PROTECTED]] Date: vendredi 23 novembre 2001 20:27 À:[EMAIL PROTECTED] Objet:RE: the classloader doesn't like XML in TC 3.2.3 and TC 4.0 More on...

Form/Basic Authentication

2001-11-26 Thread Erwin Ambrosch
Hi, I have the following behaviour using Tomcat 3.2.3 on RH Linux 7.1. If I use either FORM based or BASIC authentication, for the very first login I get the login form/dialog two times. 1. First time after accessing the protected area as defined in web.xml for the very first time. 2. Second

Re: tomcat authentication with IIS

2001-11-26 Thread Samuel Rochas
Hi Joe, My experience on that topic says no. You have to use the one of the 3 ways for realm authentication (JDBC, LDAP, or simple, see documentation). The JSP request is passed to tomcat without going thru IIS. Samuel -- SWIPe Software Engineering Project Management GmbH Solutions with

HELP NEEDED :Installing JBuilder 5 generated WAR files

2001-11-26 Thread Alec Bickerton
Hi all, I'm having a problem when I try to install a web app on Tomcat 4.0.1, the file was produced by Jbuilder 5. I can install apps ok when not in a .WAR file. It's a simple servlet that returns the current time, The war file appears to be OK. It contains the following: WEB-INF/web.xml

Réf. : HELP NEEDED :Installing JBuilder 5generated WAR files

2001-11-26 Thread Raul DAVIDOVICH
hello.. I'm using Jbuilder5 and Tomcat 4, and I found that Jbuilder writes a couple of lines in web.xml mapping JSP and SHTML (I'm not that sure of this one) and that crashed the app in tomcat 4. I erased those two lines, and I didn't have any problems afterwerds... hope this will help

integrate Tomcat/IIS

2001-11-26 Thread Ponian Chu
Hi there, I am new in this list~ I need some help with Tomcat/IIS integration I tried to integrate Tomcat 3.3 with IIS on my Windows 2000 system with difficulty... My environment is: -- all servlet classes are put in %tomcat_home%\webapps\ROOT\WEB-INF\classes folder -- web site is put in

Re: integrate Tomcat/IIS

2001-11-26 Thread Samuel Rochas
Hi Chu, You'll need to configure your servlet in the server.xml file like this: Context path=/servlet docBase=[your path here like webapps/servlet or absolute]\ crossContext=false debug=0 reloadable=true /Context Put all the stuff you need for your servlet at the same place: everything

Redirecing all URLs to a site

2001-11-26 Thread Steven McArdle
Hi, Can anybody tell me how to configure Tomcat 3.2.3 to redirect URLs request to another URL. example I want any request made to http://localahost:8080/site1 or any URL below this to be redirected to site1.jsp. and any request made to http://localhost:8080/site2 or any URL below this to be

RE: TC4, does it reuse / pool custom tags?

2001-11-26 Thread Ulf Dittmer
TC can reuse tag instances (since TC 3.3 I think), but doesn't by default. Look for TagPoolManagerInterceptor / in server.xml to turn that feature on. Ulf -Original Message- From: Peter Mutsaers [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 22, 2001 9:01 AM To: [EMAIL PROTECTED]

RE: Loading a file in servlet

2001-11-26 Thread Ulf Dittmer
You could specify the file name as an init parameter for your servlet in the web.xml file. That way you only need to restart your web application to pick up the new value. If a restart is too much of a disruption, create a little form where the file name can be submitted, and is then stored in a

Re: Mac OS 10.1.1 and Tomcat 4.01

2001-11-26 Thread Gary W Propp
Use gunzip to expand the tomcat materials. Suffit can truncate some of the file names. Michael S. McKellip wrote: I have been trying to install Tomcat 4.01 on Mac OS 10.1.1 with partial success. I set the environment variables CATALINA_HOME and JAVA_HOME as below within the file .tcshrc:

Re: TC 4.0 newbie - servlet app won't run

2001-11-26 Thread Mark
Thanks for your reply Scott, and thanks to your and Micael's responses I _believe_ I understand the relationship between the servlet naming/mapping and the associated html. As Micael noted, one could put pudding in the url-pattern as long as the html was setup as ACTION=pudding. But... how do

URGENT! ErrorDispatcherValve throws NullPointerException on 403 forbidden!

2001-11-26 Thread Bragg, Casey
Sorry to repeat this post, but I haven't heard anything back, and this appears to be a critical bug (it sure is for me :) ) This is operating very differently than tomcat 4 rc1 and other prior versions. == Casey Bragg - Software Engineer Allegiance

PLEASE HELP, binary upload problem

2001-11-26 Thread Marc Boorshtein
---BeginMessage--- Hello, I need some help. I am running Apache 1.3.14, mod_webapp and tomcat 4.01. My servlets perform file uploads, and while text files work fine, binary do not. I think the issue is mod_webapp, but I'm not entirly sure. I know that it isn't tomcat because I tried

(RESENT - Craig ???) Authentication filters, web.xml, andportability

2001-11-26 Thread DONNIE HALE
Resending this since I haven't seen any responses. [EMAIL PROTECTED] 11/20/01 02:08PM Folks, We've got a Tomcat 3.2.1-based interceptor in which we implement access to a custom realm for authentication, authorization, etc. We've implemented our own java.security.Principal; and we do what's

Tomcat 4.01 and IIS

2001-11-26 Thread Alan Scott
I have seen many posts on this regarding a DLL redirect and that is should be used. However, I cannot find the file in the 4.01 extract or on the jakarta sie. How would I find this file and then also get the instructions on how to implement it? Thanks... -- To unsubscribe: mailto:[EMAIL

RE: integrate Tomcat/IIS

2001-11-26 Thread Larry Isaacs
The default in Tomcat 3.3 is to *not* try to take over the root context from an external web server, such as IIS. Thus, http://localhost/servlet/SnoopServlet getting a 404 is the expected default behavior. If you want to have this URL work, you can set the noRoot attribute of the IISConfig

custom tag architecture question

2001-11-26 Thread Scott Walter
Just curious, if I place the same tag on a JSP page twice, will there be two instances of the tag class or just one? thanks. = ~~~ Scott __ Do You Yahoo!? Yahoo! GeoCities - quick and easy web site

Re: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Xiaofeng Chen
I have the same environment as yours. Mine is a little better than yours, but I still cann't get them work together. For your problem, you need to run 'startup jkconf' to generate the mod=5Fjk.conf. And I think you do need to copy the mod=5Fjk.dll into the Apache's modules directory. That's where

RE: form authentication with IIS - j_security_check - error 405 - tomcat 3.2.3

2001-11-26 Thread Larry Isaacs
Sorry for the slow reply. I believe there is a fundamental problem in Tomcat 3.2.x with respect to authentication when used with an external web server. This is why I don't think you can get the security example to work with IIS + Tomcat 3.2.x. Though the form login is triggered, Tomcat will

Warp Connection

2001-11-26 Thread Carl Boudreau
Good morning I am looking for documentation on Warp. I hear allot about it but fail to find anything about it. What is it ? is Mod_Jk and warp the same thing? Carl -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list:

WAR files (URGENT)

2001-11-26 Thread Alec Bickerton
Hi all, Can someone plz tell me how to install a web app packaged as a WAR file on tomcat 4.0.1 ? I've tried following the instructions in tomcat-docs but when I try them I get a file not foud exception even though all the file in question is in the war file. (With the correct path). I

RE: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Larry Isaacs
In case it hasn't been discovered by now, the location conf\jk\mod_jk.conf-auto applies only to Tomcat 3.2.x. In Tomcat 3.3, the generated file is conf\auto\mod_jk.conf. Cheers, Larry -Original Message- From: Leonardo M. Cunha [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 22,

Réf. : WAR files (URGENT)

2001-11-26 Thread Raul DAVIDOVICH
maybe the application is not running.. did you try http://yourserver:8080/manager/list;? there you'll see wether or not the app is running... --- Raul Davidovich Responsable Informatique Cvitkovic Associés Consultants (33) 1 45 15 40 68 (33) 1

AW: Kill Tomcat4 on Windows NT

2001-11-26 Thread Adnan Zelkanovic
Sorry for this mail. I've found the way to stop,start,restart Services under NT. I'm a NT-Newbie, sorry. -Ursprüngliche Nachricht- Von: Adnan Zelkanovic [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 22. November 2001 13:28 An: Tomcat User List Betreff: Kill Tomcat4 on Windows NT

RE: debuging servlets

2001-11-26 Thread John Freeborg
A couple of methods: 1. Most people I've seen end up stabbing in the dark with tons of logging statements all over. 2. Some people change the JVM invocation parameters such that they can use JPDA debuggers like BugSeeker from Karmira (http://www.karmira.com). I start up Tomcat and then

Configuring tomcat to serve static content

2001-11-26 Thread Aditya Sharma
Hi, We have an installation of Tomcat 3.3 on Windows 2000, and are using Tomcat to serve our static content (as a web-server). I have issues with serving binary documents (word and excel files). The files are viewed correctly (by the respective plug-ins) in Internet Explorer, but Netscape

JSP compilation error.

2001-11-26 Thread Yoav Shapira
Hi there, Tomcat 4.0.1 on Solaris (SunOS 5.6), JDK 1.3.1, trying to run a a jsp page gives the following error: org.apache.jasper.JasperException: Unable to compile class for JSP /home/shapira/jakarta-tomcat-4.0.1/work/localhost/MyDrugDiscovery/jsp/utils/sql$jsp.java:309: Incompatible type for

RE: Tomcat up-time

2001-11-26 Thread John Freeborg
Windows 2000 Server w/ SP2 Tomcat 4.0.1 Sun JDK 1.3.1 NetDirect JSQLConnect JDBC drivers SQL Server 2000 w/ SP1 Runs pretty stable now ( 5 days so far with no crash), but I had to switch to Sun's client hotspot JVM as the server hotspot JVM would crash within 24 hours consistently. I may try

RE: mod_jk differences

2001-11-26 Thread Larry Isaacs
When source gets branched or moved around (i.e. checked in at a new location) version numbers can disconnect. I'm not aware of anything missing from Tomcat 3.3 that is present in Tomcat 3.2.x. Larry -Original Message- From: David Morsberger [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: mode_jk auto generation

2001-11-26 Thread Larry Isaacs
ApacheConfig is already present in server.xml. Also, the default is to generate these files on demand only. From TOMCAT_HOME execute: bin\startup jkconf (Note sure if netware uses \ or /.) This should generate conf/auto/mod_jk.conf. This may be done while Tomcat is running. Larry

Re: Configuring tomcat to serve static content

2001-11-26 Thread David Cassidy
Check that tomcat has the correct mime type for your .doc files have a look in web.xml. then add one for excel / word :) Aditya Sharma wrote: Hi, We have an installation of Tomcat 3.3 on Windows 2000, and are using Tomcat to serve our static content (as a web-server). I have issues

TC 3.3 JDBCRealm: Authentication unsuccessful

2001-11-26 Thread Lichtmannegger Manfred
I am trying to use JDBCRealm on Tomcat 3.3, but after fixing my first problems CLASSPATH, driver etc. I always get 2001-11-26 17:04:24 - DecodeInterceptor: Charset from session ISO-8859-1 2001-11-26 17:04:41 - DecodeInterceptor: Charset from session ISO-8859-1 2001-11-26 17:04:42 - JDBCRealm:

Re: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Eric Dutilleul
I have actually a Apache / Tomcat Environnement in production for our Intranet and it works well. For your problem you need to include the file mod_jk.conf-auto at the end of your Apache configuration (this file is updated by your tomcat server at the start of the tomcat service). It is this file

RE: Tomcat 4.01 SSL - how to reduce the encription strength

2001-11-26 Thread Tal Dayan
Hi Franco, When you create the certificate, instead of entering your first/last name, enter the domain of your server (e.g. localhost or www.mysite.com). This is the CN (Common Name) of the certificate. Note that you will still get a warning about the issuer of the certificate. If you accept

character encoding in HTTP GET / POST requests

2001-11-26 Thread Hoogervorst, Nico
Hi there, About: HTTP GET/POST request in UTF-8 with Tomcat 3.2, Apache webserver, struts-framework To be able to display foreign characters, we want to use unicode. We therefor specify the following contentType in the page directive of the jsp pages: contentType=text/html;

Jdk12Interceptor with tomcat 3.2.3

2001-11-26 Thread Benoit Lalumiere (LMC)
Hi all Are we supposed to use the Jdk12Interceptor with jdk1.2.2 and above or just with jdk 1.2.2? Cause by classloader in tomcat 3.2.3 did not work with jdk 1.3 either, I had to put the patch back in! Benoit Lalumiere Ericsson Research Canada LMC/KJ lmcblal -- To unsubscribe:

Re: WAR files (URGENT)

2001-11-26 Thread Alec Bickerton
26/11/2001 16:07:53, keiths [EMAIL PROTECTED] wrote: Can you clarify this. I have just tried the following... 1- remove the war file from the webapp dir 2- recreate the war file @jar cvf timeservlet.war * 3atry to intall using manager app from current location /var/tomcat4/, same error :

RE: Tomcat 4.01 SSL - how to reduce the encription strength

2001-11-26 Thread Tal Dayan
Typically, the browser and the server negotiate for the highest level of encryption available for both. If you reduce it on one side, it will affect both. The question is how to reduce the cipher list of Tomcat. The source code seems to enable any cipher that is available to it. Tal

Re: TC 4.0 newbie - servlet app won't run

2001-11-26 Thread Micael Padraig Og mac Grene
Just a preemptive question, Mark. Is your servlet's class object really called myservlet.class rather than, say, MyServlet.class? -Original Message- From: Mark [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Date: Monday, November 26, 2001 7:00 AM Subject: Re: TC 4.0 newbie -

Re: TC 4.0 newbie - servlet app won't run

2001-11-26 Thread Micael Padraig Og mac Grene
Okay, Mark, Part II, I want to make sure we are communicating properly before going further. No sense wasting time. Your note is not correct about at least somethings -- for example (no pun intended): The web.xml for examples/WEB-INF/web.xml DOES have servlet mappings. So, I am not sure what

Re: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Xiaofeng Chen
I did include the mod_jk.conf-auto at the end of my Apache configuration. I use Tomcat 3.3 and generated the mod_jk.conf-auto using 'startup jkconf' command. Is your Apache/Tomcat running on a NT? Jeffrey - Original Message - From: Eric Dutilleul [EMAIL PROTECTED] To: Tomcat Users List

Tomcat 4.01 classloader problem? (Craig)

2001-11-26 Thread Chris Malley
Santosh on [EMAIL PROTECTED] suggested I post here, and ask for Craig. So if Craig (or anyone else) is listening... Help!! I'm experiencing a problem with SOAP message-style services when using Tomcat 4.01. Santosh suggested that this may be a classloader problem in Tomcat 4.01. I have a

Re: TC 4.0 newbie - servlet app won't run

2001-11-26 Thread Micael Padraig Og mac Grene
Okay, Mark, Part III, another question: If you don't put your servlet called myservlet in a package called myservlet as well, why do you use that odd pattern? The pattern looks like you want to use servlet as a package name? I am starting to think that you have some left-over confusion from

tomcat4.0.1 + apache (mod_webapp)?

2001-11-26 Thread Walter Krivanek
hi! I,ve got one question: I've installed mod_webapp.so (apache 1.3.14, tomcat 4.0.1, windows 2000/mac os X) and added the following lines to httpd.conf (as described in install.txt): WebAppConnection warpConnection warp localhost:8008 WebAppDeploy examples warpConnection /examples I'm always

RE: tomcat4.0.1 + apache (mod_webapp)?

2001-11-26 Thread Falko Braun
Hi Walter, That seem's to be a quiet common problem. I've solved the problem as described below under 3) and heard from several others, that it worked for them as well. Regards Falko 1) Simply follow the instructions of the webapp install.txt, which says: Copy mod_webapp.so and libapr.dll

Re: TC 4.0 newbie - servlet app won't run

2001-11-26 Thread Mark
The examples you mentioned are the JSPs examples. I realize JSPs compile to servlets, but what about the straight up HelloWorldExample servlet? I didn't see mapping for that or the other servlet (vs. JSP) examples in the web.xml. Being a newbie, I could very well be missing something so please

Integrating Tomcat with Apache on NT

2001-11-26 Thread Alan Scott
Not to ask a dumb question. How do I integrate both these products on NT? I assume there are some settings I need to apply to one or the other. Is there a reference on anyone have some helpful hints so I can test this out. Also, any special settings so I can just call up jsp pages directly.

No errors but mod_jk + remote Tomcat doesn't work

2001-11-26 Thread Peter Matulis
I'm trying to get basic functionality between Apache and a remote Tomcat server. I am running apache-1.3.22 and JBoss-2.4.1_Tomcat-3.2.3. Both on Red Hat 7.1. Here is my data (all residing on the Apache system): httpd.conf: == DocumentRoot

RE: Tomcat 3.3 Upgrade

2001-11-26 Thread Larry Isaacs
Tomcat 3.3 tries to add tools.jar internally using the java.home system property. It is not clear why this was not working in your set up. In addition to stability and improved performance, Tomcat 3.3 has the advantage of being much more configurable. By default, the mod_jk.conf forwards all

RE: WAR files (URGENT)

2001-11-26 Thread Cor Hofman
Hi, I did not follow this thread actively, but the error message you get suggests that the file /var/tomcat4/webapps/time/META-INF/MANIFEST.MF is not there or not accessible. Have you checked: - File names (upper/lower case, etc) - file protection? (rwdx, etc) The best way to check is to login

Re: TC 4.0 newbie - servlet app won't run (correction)

2001-11-26 Thread Mark
Correction, using POST results in a 405-Resource not allowed due to the HelloWorldExample servlet not implementing doPost(). Others do and work fine with POST. My apologies. At 01:02 PM 11/26/2001 -0500, you wrote: The examples you mentioned are the JSPs examples. I realize JSPs compile to

Re: Integrating Tomcat with Apache on NT

2001-11-26 Thread Denis Haskin
Alan Scott wrote: Not to ask a dumb question. It's only a dumb in that, as far as I can tell, you haven't bothered to try and find any of this information first. How do I integrate both these products on NT? I assume there are some settings I need to apply to one or the other. Is there a

subfolders in WEB-INF/classes

2001-11-26 Thread Ralf Praschak
hello! i´ve a simple question but couldn´t find an answer yet. how do i enable subfolders in the classes directory running servlets from the classes folder works fine. but i want to structure this diretory (automatically). i´ve created a subfolder test and a symbolic link mobinet and put the

RE: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Larry Isaacs
I assume you mean conf/auto/mod_jk.conf was added to the end of httpd.conf. mod_jk.conf-auto is Tomcat 3.2.x only. I would recommend modifying the conf/auto/mod_jk.conf to set: JkLogLevel debug and check the log after accessing your page through Apache to see what is happening. Cheers,

Re: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Eric Dutilleul
Yeah My Apache 1.3.2 is on NT but I have Tomcat 3.2 not 3.3 (sorry for the mistake) perhaps they dont work in same way. But I have install my server really without problems (not like when i have tested couple IIS / Tomcat). The only problem i have to solved now is on memory errors that occurs (i

Re: [repost] loading class files

2001-11-26 Thread Frank Lawlor
Note on the other stuff: Classes used on the server side should be in a package structure under WEB-INF/classes to work correctly. JSPs, static content, and client-side applets should all be outside the WEB-INF folder for proper operation. This is defined in the spec and is required

Re: Integrating Tomcat with Apache on NT

2001-11-26 Thread Eric Dutilleul
My experience on installing couple Apache (1.3.2) / Tomcat (3.2) : Install on jdk 1.3.1 in d:\jdk1.3.1 Install of Apache with install process on d:\program files\ apache group\apache install of tomcat files in d:\tomcat configuring wrappers.properties, workers.properties correctly installing

Re: Location of JSSE .jar files in Tomcat 3.3?

2001-11-26 Thread Greg Bailey
I tried placing the JSSE jar files (all 3 of them) into $TOMCAT_HOME/lib/common, and that didn't work either. Basically, I have a SOAP application (bean) that attempts to open an SSL connection using https in the URL. The following error occurs in our logs:

Which Tomcat to use?

2001-11-26 Thread Brandon Cruz
We are currently using linux redhat 6.2, apache 1.3.x, and tomcat 3.2.1. We are upgrading our entire system from the ground up. This will be a production environment serving around 50GB of traffic per week. 60-75% of the pages will be *.jsp. Which version of tomcat should we use? Familiarity

Re: TC 4.0 newbie - servlet app won't run (correction)

2001-11-26 Thread Micael Padraig Og mac Grene
I will reply, Mark, in bits and drabs, as I try to figure out what you are missing and what you may have wrong. First, the servlets I referred to are not any different as servlets. They are not compiled JSP pages. The are regular old servlets. Compiled JSP page servlets are kept in

Re: TC 4.0 newbie - servlet app won't run (correction)

2001-11-26 Thread Micael Padraig Og mac Grene
I have not looked at the webapps/examples except incidentally, Mark, so I am not sure how the HelloWorldExample servlet is accessed. How you access a servlet and where the servlet is are very important in these contexts. Inside and outside WEB-INF are very different, for example. Inside WEB-INF

Re: TC 4.0 newbie - servlet app won't run (correction)

2001-11-26 Thread Micael Padraig Og mac Grene
Mark. I personally work on my sites at a distance, so I am presently ftping the webapps/examples to have a look at them. Micael -Original Message- From: Mark [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Date: Monday, November 26, 2001 10:15 AM Subject: Re: TC 4.0 newbie -

Re: Form/Basic Authentication

2001-11-26 Thread Scott Edwards
Erwin, I've seen similar behavior with the container when the domain reference to the pages change. For example: http://myServer/secure/index.jsp would cause the login page to occur. But if something within the site refers to http://myServer.myCompany.com/secure/someOther.jsp then the

RE: Location of JSSE .jar files in Tomcat 3.3?

2001-11-26 Thread Larry Isaacs
With the JSSE jars in lib/common, what is left in $JAVA_HOME/jre/lib/ext? One impact of moving just the JSSE jars to lib/common is that the jars that remain in jre/lib/ext can no longer see the classes in the JSSE jars. I'm not sure if some other jar(s) need to move with them to lib/common to

mod_jk and remote Tomcat

2001-11-26 Thread Peter Matulis
I feel I'm missing something small here. If someone can give me a clue... I'm trying to get basic functionality between Apache and a remote Tomcat server. I am running apache-1.3.22 and JBoss-2.4.1_Tomcat-3.2.3. Both on Red Hat 7.1. Here is my data (all residing on the Apache system):

RE: Which Tomcat to use?

2001-11-26 Thread Larry Isaacs
With Tomcat 3.3.x, I think you will find a noticeable improvement in performance. It also offers better stability and is more configurable. The improvements in configuration does mean that there are differences, though I don't think the changes would be significant. I can't say exactly without

Re: TC4, does it reuse / pool custom tags?

2001-11-26 Thread Peter Mutsaers
Ulf == Ulf Dittmer [EMAIL PROTECTED] writes: Ulf TC can reuse tag instances (since TC 3.3 I think), but doesn't Ulf by default. Look for TagPoolManagerInterceptor / in server.xml Ulf to turn that feature on. Craig R. McClanahan just wrote TC4 does not. Does this mean TC3.3

url relative to directory path?

2001-11-26 Thread Antoni Unkovich
Hello from downunder (New Zealand), I'm new to tomcat and java but have successfully installed Tomcat 3.3 on Windows 2000 server in conjunction with IIS and the redirector plug-in - which I have working fine. My servlet is in this directory:

mod_jk and Apache ....

2001-11-26 Thread Alan Scott
I downloaded apache for nt and installed in and ran it. However, in order to integrate it and tomcat (which is also running great) the docs say I need mod_jk. However, I searched my machine and did not find this file? -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands:

Directory question

2001-11-26 Thread Alan Scott
I created a directory under webapps called samples and placed some jsp's I had written there. I get a 404. Is there some setting I need to update in server.xml? -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list:

Re: TC4, does it reuse / pool custom tags?

2001-11-26 Thread DONNIE HALE
Just to clarify, it's really Jasper that does the JSP compiling and determines whether or not custom tags get reused. There's not much difference, as I understand it, b/w the TC4 and TC3.x versions of Jasper. Here's a message Craig sent a while back (on the Struts list):

Re: Fwd: problem with servlet reloading

2001-11-26 Thread Harry Hinch
I've figured this out. if you get rid of the default virtual host in server.xml then the context does not load twice At 06:04 PM 11/21/2001, you wrote: Harry Hinch wrote: I am running Tomcat 4 Apache 1.3.20 and Redhat linux 7.1 I am having a problem with servlets reloading when ever I

work dir corruption

2001-11-26 Thread Durham David Cntr 805CSS/SCBE
Having a problem with pages not loading or throwing a null pointer exception for seamingly no reason at all. However, if I delete the files from jakarta's work directory. The pages will then run properly. I'm using Tomcat-3.2.3 on Windows NT with an ISAPI redirector for IIS. The JSP

Re: TC 4.0 newbie - servlet app won't run

2001-11-26 Thread Micael Padraig Og mac Grene
Mark, I don't have webapps/examples running, so I need to ask you another question. Is there a class file called HelloWorldExample.class in examples/servlets/?, i.e. examples/servlets/HelloWorldExample.class. From what I can tell about your remarks, there should be. I notice that the only

Re: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Xiaofeng Chen
Sorry Larry, I did mean conf/auto/mod_jk.conf. Following your recommendation, I modified the conf/auto/mod_jk.conf to set JkLogLevel debug and restarted Tomcat and Apache, respectively. After I made a request to the file /examples/jsp/index.html, it took Internet Explorer 15 minutes to

RE: TC4, does it reuse / pool custom tags?

2001-11-26 Thread Larry Isaacs
This feature was added to Tomcat 3.3 after Tomcat 4.0 had branched off into its own develoment. I am not aware that these changes were ever ported to the Tomcat 4.x branch. This feature hasn't received a lot of testing, so you will need to do your own to insure it is working properly for your

RE: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Larry Isaacs
The 15 minutes sounds like it could be a timeout. AFAIK, all the mod_jk hangs with Tomcat 3.3 have been caused by using the mod_jk.dll from Tomcat 3.2.x. This is a known issue that is mentioned in the documentation. Make sure your mod_jk.dll is the one obtained from:

Re: installing Tomcat on MAC

2001-11-26 Thread Jeffrey Kunzelman
I'm not sure how it will work in 8.6. Is upgrading to OSX a possibility? if so then just download the binary and create a .tcsh file in your home directory mine looks like: setenv CATALINA_HOME /Applications/Tomcat setenv JAVA_HOME /System/Library/Frameworks/JavaVM.framework/Home setenv

RE: installing Tomcat on MAC

2001-11-26 Thread Ulf Dittmer
Sara, a quick search for tomcat macintosh on www.alltheweb.com reveals that the new location is http://www.basilbourque.com/java4u/tomcat_on_macintosh/index.html You'll need to have Apple's MRJ SDK installed (i.e., the jar file with the Java compiler needs to be in the folder where all MRJ

JDK vs. JRE

2001-11-26 Thread Mihai Gheorghiu
It is my understanding that Tomcat needs JDK in order to compile on-the-fly. Servlets are classes, already compiled - correct? Then, if I build a site only with servlets (plus html and applets), would JRE be enough? Thank you all. -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional

Re: TC 4.0 newbie - servlet app won't run

2001-11-26 Thread Micael Padraig Og mac Grene
Mark, regarding accessing servlets, I will give a few general remarks that may or may not be helpful. I would appreciate knowing either way. -Original Message- From: Mark [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Date: Monday, November 26, 2001 9:58 AM Subject: Re: TC 4.0

Re: TC 4.0 newbie - servlet app runs now!!

2001-11-26 Thread Mark
HelloWorldExample.class is under ..examples/WEB-INF/classes. It almost seems Tomcat will look for servlets by default in the ..WEB-INF/classes directory if there's no explicit mapping and when the html reference has a prefix of servlet/. For example, now that I *finally* got my app to work

Re: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Xiaofeng Chen
Larry, you are right. The mod_jk.dll I downloaded before must be for Tomcat 3.2.x. I redownloaded the mod_jk.dll from the link you listed, everything works now. Thank you so much about this. Jeffrey - Original Message - From: Larry Isaacs [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL

Re: Location of jdbc driver

2001-11-26 Thread David Smith
I agree ... better docs would be great, but I for one won't be making too much noise unless I have the time to contribute them. I've followed this list for about 4 months now and have learned a lot. For apps deployed with TC 3.3 and 4, the directory tree you laid out doesn't follow spec. It

tomcat.pid: cannot create

2001-11-26 Thread Harley Milne
Hi, I am experiening the above problem when starting tomcat. Does any one have an idea what is going on. I though it might have something to do with permissions, but the dircoties are 775 hmilne@thebollocks./startup.sh [1] 755 hmilne@thebollocksUsing classpath: ./../lib/tomcat.jar Using

(URGENT) Can't upload files to servlets in Tomcat 4.01 w/mod_webapp apache

2001-11-26 Thread Marc Boorshtein
I need some help. I am running Apache 1.3.14, mod_webapp and tomcat 4.01. My servlets perform file uploads, and while text files work fine, binary do not. I think the issue is mod_webapp, but I'm not entirly sure. I know that it isn't tomcat because I tried using tomcat's httpd server and

Re: TC 4.0 newbie - servlet app runs now!!

2001-11-26 Thread Micael Padraig Og mac Grene
Mark wrote: For example, now that I *finally* got my app to work using servlet mapping, I also found if I leave all mapping out of web.xml and have FORM ACTION=servlet/myservlet METHOD=POST, Tomcat will still find/run the servlet under ..WEB-INF/classes. Is that by design? Mark,

Re: url relative to directory path?

2001-11-26 Thread Erwin Ambrosch
Take a look at the servlet-mapping tag of the web.xml file. With this tag you can specify how to access yopur servlet. servlet-mapping servlet-nameservletname/servlet-name url-pattern/servletname/url-pattern /servlet-mapping Erwin Antoni Unkovich wrote: Hello from downunder (New

RE: url relative to directory path?

2001-11-26 Thread Durham David Cntr 805CSS/SCBE
One idea is to make the application your root context. You will still need to use http://www.qbus.co.nz/servlet/servletName or else do the mappings. If you don't like maintaining the list, write a script to maintain it for you. Should be no problem removing and adding mappings considering

Connection aborted by peer: socket write error

2001-11-26 Thread Micky I. Mimo
Tomcat: 3.2 OS: windows 2000 JDK: 1.3.1 IE:5.5 We are getting a Connection aborted by peer: socket write error. Does anyone know how to resolve this issue? The error log output is below. I did a scan of the tomcat archives and found that a lot of posts show that this is a known problem. I

Re: installing Tomcat on MAC

2001-11-26 Thread sw
Sara, Personally I would suggest using MacOS X for Java Development, but since you either can't or don't want to I would suggest looking at this thread from the Apple Java Development Archives: http://lists.apple.com/archives/java-dev/2000/Sep/v01.n1900.html The username/password both are:

RE: TC 4.0 newbie - servlet app won't run

2001-11-26 Thread William Tansill
Look in server.xml. You'll see that it has the following lines: !-- Tomcat Examples Context -- Context path=/examples docBase=examples debug=0 reloadable=true Logger className=org.apache.catalina.logger.FileLogger . It goes on for quite a

OT: PostScript file

2001-11-26 Thread Sheila Ratnam
Hi all, Sorry for this off-the-topic question. But I desperately need help on this. How can one read a PostScript file on Windows platform? TIA, Sheila _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

java.util.SortedMap ClassNotFound in Applet

2001-11-26 Thread Vijayanand Sukumar
Hi, I wrote a Applet which uses java.util.SortedMap and java.util.ArrayList and placed it in Root Context. When I try to view I see an Exception in the Java Console as java.lang.ClassNotFoundException: java.util.SortedMap at com/ms/vm/loader/URLClassLoader.loadClass at

RE: PostScript file

2001-11-26 Thread Evan Swanson
You need a postscript view application. Try ZDNET.com -Original Message- From: Sheila Ratnam [mailto:[EMAIL PROTECTED]] Sent: Monday, November 26, 2001 4:15 PM To: [EMAIL PROTECTED] Subject: OT: PostScript file Hi all, Sorry for this off-the-topic question. But I desperately need

  1   2   >