taglib : unable to find setter method for attribute

2005-03-01 Thread sanjay paithankar
Hello Team, I am facing a problem in taglib Initally I was using JSDK 1.4.2_05 for compiling and running my application everythign was running very fine , now the JRE JDK change to 1.4.2_07 and suddenly it starts giving me error saying unable to find setter method for attribute I am using

error-page directive

2005-03-01 Thread Ian van der Neut
Hello all, I have a web.xml (attached) that works fine if I remove the error-page directive, but gives a Exception initializing TldLocationsCache: XML parsing error on file /WEB-INF/web.xml: (line 72, col 11): The content of element type web-app must match

OutOfMemory

2005-03-01 Thread Edouard Dalla-Costa
Hello, I have some OUtOfMemory exception with my tomcat and I was wondering how could I increase the amount of memory allocate to Tomcat. Right now it is running the default amount of memory which is 64 MB and it is not enought. Thanx by advance Edouard

Re: OutOfMemory

2005-03-01 Thread Viorel Dragomir
CATALINA_OPT=-Xmx256M -Xms256M Viorel Dragomir . .. --- - Original Message - From: Edouard Dalla-Costa To: Tomcat Users List Sent: Tuesday, March 01, 2005 11:11 Subject: OutOfMemory Hello, I have some OUtOfMemory

Re: error-page directive

2005-03-01 Thread Trond G. Ziarkowski
Hi, Have you tried to move your the error-page directive to between the welcome-file-list and taglib directives. Seem to remember this happening to me some time ago as well. Trond !-- The Usual Welcome File List -- welcome-file-list welcome-fileindex.jsp/welcome-file /welcome-file-list

Tomcat multiple instancies

2005-03-01 Thread Andrea Anastasescu
Hello everybody, I need to run 2 different instacies of Tomcat 4.1. The instacies are different in both used common and shared jars and the webapplications. Is this managable? How? Thank you in advance, Andrea Anastasescu

RE: Tomcat multiple instancies

2005-03-01 Thread Peter Crowther
From: Andrea Anastasescu [mailto:[EMAIL PROTECTED] I need to run 2 different instacies of Tomcat 4.1. The instacies are different in both used common and shared jars and the webapplications. Is this managable? How? Yes, and you can do it the obvious way: copy your Tomcat installation

RE: Tomcat multiple instancies

2005-03-01 Thread Dale, Matt
You just have to change the ports that are used in the server.xml. Ta Matt -Original Message- From: Andrea Anastasescu [mailto:[EMAIL PROTECTED] Sent: 01 March 2005 09:35 To: Tomcat Users List Subject: Tomcat multiple instancies Hello everybody, I need to run 2 different instacies of

Re: error-page directive

2005-03-01 Thread Ian van der Neut
On Tue, 01 Mar 2005 10:32:42 +0100, Trond G. Ziarkowski [EMAIL PROTECTED] wrote: Hi, Have you tried to move your the error-page directive to between the welcome-file-list and taglib directives. Seem to remember this happening to me some time ago as well. That seems to get rid of the

session load-balancing and clustering of tomcat

2005-03-01 Thread Sng Wee Jim
Hi, I am using tomcat 5.0.28. My question is how to setup sticky-session load-balancing and clustering of tomcat? Do I need to upgrade to tomcat 5.5.X? Note the requirement is on sticky-session. - Jim The

Re: Problems loading external stylesheet in Tomcat

2005-03-01 Thread Mieke Banderas
haim said: I had something similar and it was because I placed the link element outside of the head element in my a JSP file that was included as an header. Check it out , haim . Thanks for the suggestion, but no, I don't have any errors of that type. One of my sites use this linking

Change in JSP error handling in Tomcat5.0??

2005-03-01 Thread Graba, Jan
Hi. While testing a JSP error page that was working fine 9 months ago, I found that the page is not now performing its function. Instead of displaying an appropriate error message when the associated JSP receives alphabetic data instead of the integer data that it is expecting, an HTTP 500

Re: error-page directive

2005-03-01 Thread Lionel Farbos
Perhaps, try to put error-page BEFORE taglib... On Tue, 1 Mar 2005 10:07:49 +0100 Ian van der Neut [EMAIL PROTECTED] wrote: Hello all, I have a web.xml (attached) that works fine if I remove the error-page directive, but gives a Exception initializing TldLocationsCache: XML parsing error

Re: error-page directive

2005-03-01 Thread Ian van der Neut
On Tue, 1 Mar 2005 10:41:36 +0100, Ian van der Neut [EMAIL PROTECTED] wrote: On Tue, 01 Mar 2005 10:32:42 +0100, Trond G. Ziarkowski [EMAIL PROTECTED] wrote: Hi, Have you tried to move your the error-page directive to between the welcome-file-list and taglib directives. Seem to remember

Re: error-page directive

2005-03-01 Thread Trond G. Ziarkowski
Hi, the order does matter, and the order is specified in the dtd that you are using for your webapp. Trond Ian van der Neut wrote: On Tue, 1 Mar 2005 10:41:36 +0100, Ian van der Neut [EMAIL PROTECTED] wrote: On Tue, 01 Mar 2005 10:32:42 +0100, Trond G. Ziarkowski [EMAIL PROTECTED] wrote:

Re: session load-balancing and clustering of tomcat

2005-03-01 Thread Lionel Farbos
1) In server.xml : - uncomment the AJP 1.3 Connector (on port 8009), - set the jvmRoute in each Engine example : Engine name=Standalone defaultHost=host1 debug=0 jvmRoute=t1_ajp13 2) then add the module mod_jk in apache with jk workers defined like this :

Re: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread David Smith
Why do you want your classes outside of Tomcat? Copy the classes to your project when you build and eliminate the dependency. Or better yet, use a build environment like Ant to do the copying for you. As a bonus, it'll catch errors before you get to production and the webapp will be more

Re: error-page directive

2005-03-01 Thread David Smith
The order matters. It's a requirement that comes from validating the web.xml against a DTD -- not anything that Tomcat itself requires. In the servlet 2.4 spec, they moved to valdating against a schema so order no longer matters. --David Ian van der Neut wrote: On Tue, 1 Mar 2005 10:41:36

RE: session load-balancing and clustering of tomcat

2005-03-01 Thread Marc Wiatrowski
My gotcha was setting the jvmRoute in EACH/EVERY Engine! -Original Message- From: Lionel Farbos [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 01, 2005 8:20 AM To: Tomcat Users List Cc: [EMAIL PROTECTED] Subject: Re: session load-balancing and clustering of tomcat 1) In

Re: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Dan
Do people read anymore? As previously stated in the original post, these classes need to be available to other non-web, non TomCat applications. I do not want to have to maintain two different repositories. Also as previously stated I have the desired configuration running on another box but

RE: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Allistair Crossley
1. Yes people do read, and offer advice based on whether a) they can and b) how rude the poster is. You fall into (b) right now, so good luck. 2. Tomcat, not TomCat. 3. This is a voluntary user list and you should not expect to receive help as you seem to. -Original Message- From:

Re: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Viorel Dragomir
You can redirect the tomcat's work directory to your classes. That should work for you ! Viorel Dragomir . .. --- - Original Message - From: Allistair Crossley To: Tomcat Users List Sent: Tuesday, March 01, 2005

Questions About jakarta-tomcat-5.0.28

2005-03-01 Thread Scott Purcell
Hello, I am running Tomcat 4.1.31 at work (dev) and I have a 5.0.28 at home. I have been working with Tomcat for quite some time, and ran into a problem trying to set up a webapp. At work on my 4.1.31, when create a new web-app, I edit the server.xml file and add my Context (see context

RE: Questions About jakarta-tomcat-5.0.28

2005-03-01 Thread Allistair Crossley
Hi, Check out the Context element documentation for 5.0. You create a new file now that configures your context, and don't add them to server.xml. You can do this in a number of ways,. e.g /yourwebapp/META-INF/context.xml /conf/Catalina/localhost/yourwebapp.xml But it's all there in the docs

RE: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Matt
Everybody take it easy. We've all at least thought what Dan posted, at one time or another, especially when dealing with Tomcat documentation (official or otherwise) and the pro-this or pro-that solution folks. There's no need to escalate this into a flame war. I only wish I was far enough along

RE: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Allistair Crossley
I sent one through, but it has not come in yet (copied below) ... Right, a well formed web application is packaged with its dependent classes. Tomcat loads classes from either WEB-INF/classes folder or the lib folder in the form of a JAR for your webapp, or other places like common/lib and

RE: Questions About jakarta-tomcat-5.0.28

2005-03-01 Thread Matt
Yes, the documentation is not as clear as it could be; however, Allistair: How does this differ from my Context.../ in server.xml to get Tomcat to recognize webapps outside of $CATALINA_HOME? Certainly Context.../'s are still relevant in server.xml, so perhaps I misunderstand this exchange, and

RE: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Allistair Crossley
Right, a well formed web application is packaged with its dependent classes. Tomcat loads classes from either WEB-INF/classes folder or the lib folder in the form of a JAR for your webapp, or other places like common/lib and shared/lib. It does not use your system classpath. The previous

RE: error-page directive

2005-03-01 Thread Graba, Jan
Hi, again. I don't really think it makes any difference to this application, but I'm using J2SE, not J2EE. Though I am, of course, using a web.xml file for my web application, nothing in this file need reference the error page. At least, that was the case with version 2.3 of the servlet API

Re: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread David Smith
Well, not to be rude, but your design choice is IMHO, poor. Build tools are available and designed to handle version control -- which is what I read as the reason for your reluctance to include the classes directly in the webapp. Every few months, I see someone come on the list asking what

RE: Questions About jakarta-tomcat-5.0.28

2005-03-01 Thread Allistair Crossley
According to the question, the poster wanted to know how to configure a context in TC5.0. Taking the context element copied in at the foot of this email, this should be copied out into a file at $CATALINA_HOME/conf/[enginename]/[hostname] which is usually

Running Tomcat from a CD-Rom

2005-03-01 Thread Julian White
Hi, I want to run Tomcat from a CD-Rom complete with a web application. My application needs to be able to run on any PC without networkor an install program so everything would have to be installed on the CD-Rom. To get Tomcat to run directly from CD-Rom I am thinking I will have to change all

RE: Running Tomcat from a CD-Rom

2005-03-01 Thread Allistair Crossley
First thing that comes to mind are the startup scripts .. you'll need to comment out the parts that search for CATALINA_HOME in the system environment, so that it defaults to the current directory on the CD. Next thing I can think of is the fact that Tomcat creates files in the work directory

Re: error-page directive

2005-03-01 Thread David Smith
For good docs, I've found the servlet spec an excellent place to start. As a foot note though, Tomcat seems switches between servlet spec 2.3 and 2.4 depending on how the web-app node is defined in web.xml. If you declare it against the 2.3 DTD, the 2.3 spec is used. If you use the 2.4

Re: Installation problems on Windows

2005-03-01 Thread shenty
You're right about jvm.dll... one typo and a bunch of cut-and-paste. None of the options you mentioned worked. Starting with using the ZIP file directly, I apparently have some JAVA_HOME or CLASSPATH problems that prevent the service.bat (is that the one I want to install the Windows XP

RE: Tomcat clustering and NotSerializableException

2005-03-01 Thread Richard Mixon (qwest)
CoyoteRequestFacade is the first element in the stack trace - it is not the session stored object that is causing the NotSerializableException. As I said in my prior posting, to resolve this issue you need to: 1) Identify each object that you are explicitly storing in the session and make sure

problem installation Tomcat

2005-03-01 Thread Francesca
I have this error: Using CATALINA_BASE: C:\jakarta-tomcat-5.5.4\ Using CATALINA_HOME: C:\jakarta-tomcat-5.5.4\ Using CATALINA_TMPDIR: C:\jakarta-tomcat-5.5.4\\temp Using JAVA_HOME: C:\j2sdk1.4.2_06 log4j:WARN No appenders could be found forloggerorg.apache.catalina.startup.ClassLoaderFactory.

RE: problem installation Tomcat

2005-03-01 Thread Allistair Crossley
Hi, First question - I notice you are using 1.4.2 with TC 5.5 .. are you using the compatibility package? Else you need Java 5.0. Allistair. -Original Message- From: Francesca [mailto:[EMAIL PROTECTED] Sent: 01 March 2005 14:49 To: tomcat-user@jakarta.apache.org Subject: problem

RE: Tomcat clustering and NotSerializableException

2005-03-01 Thread Caldarale, Charles R
From: Richard Mixon (qwest) [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat clustering and NotSerializableException CoyoteRequestFacade is the first element in the stack trace - it is not the session stored object that is causing the NotSerializableException. Actually, the

Re: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Dan
My apologies for being over the edge, but after pulling my hair out for the last few days and reading all kinds of web and USENET postings, along with searching the list archives, I came across all kinds of writings that did not address the issue of if (and how) this could be done, most just

Re: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Dan
Just as soon as I hit send Registry entry. HKLM | Software | Apache Software Foundation | Procrun 2.0 | Tomcat5 | Parameters | Java Classpath = .;e:\java\library\basic;e:\java\library\custom;E:\java\Tomcat\bin\bootstrap.jar

Re: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Tim Funk
If you happen to change the bootstrap classpath - please do not email the list with ClassNotFound issues. ;) If you really need to access jar's or classes outside of your webapp you can either: 1) Write your own WebAppClassloader - icky but doable 2) Change

SSL Question

2005-03-01 Thread Reis, Tom
I have a quick question about SSL. If I am already running SSL on a server with a certificate imported into a .keystore file and I create a new certificate will it automatically overwrite the .keystore file by creating a new one or does it just add the info into the existing .keystore

Re: Tomcat clustering and NotSerializableException

2005-03-01 Thread Filip Hanik - Dev Lists
As Richard says, don't store your request in the session, not a good idea. Richard Mixon (qwest) wrote: CoyoteRequestFacade is the first element in the stack trace - it is not the session stored object that is causing the NotSerializableException. As I said in my prior posting, to resolve this

RE: Tomcat Cluster

2005-03-01 Thread Randall Svancara
Apparently this was too verbose for anyone to read. I simply just don't understand why each tomcat instance is failing to recognize any other instance in the cluster. Multicast messages are being broadcasted. Is there any configuration parameter I can turn on that will verify that each tomcat

RE: JDBCStore JTDS

2005-03-01 Thread Randall Svancara
Apparently no has had any luck with this. All I can tell is that the jdbc connection url is not compatible with tomcat and storing sessions in a database. So for anyone else searching this list for answers, you have come to the wrong place. Perhaps try the JTDS mailing list. Thanks, Randall

RE: skipping state transfer. No members active in cluster group

2005-03-01 Thread Randall Svancara
Apparently no one has had any luck with getting tomcat 5.5.7 to work on fedora core 3 in a clustered configuration. I am wondering if the problem is with Linux or with tomcat or a combination of both. Randall -Original Message- From: Randall Svancara [mailto:[EMAIL PROTECTED] Sent:

Re: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Parsons Technical Services
Just a curious question to this, I know Dan has his setup already but is there any reason that this could not be set up the other way around? I mean that the classes/jars are in the normal spot in Tomcat and the outside app accesses them there. The outside app shouldn't care where the files

RE: Tomcat Cluster

2005-03-01 Thread Richard Mixon (qwest)
Randall, Below is the clustering section of my server.xml running under SuSE Linux (SLES9). Things to check I can think of: 1. Is your server multi-homed (more than one network adapter)? If so you must (at least from my experience) specify both mcastBindAddr and tcpListendAddress as shown below.

RE: skipping state transfer. No members active in cluster group

2005-03-01 Thread Richard Mixon (qwest)
Randall, See my answer to your posting on the subject Tomcat Cluster. Both Tomcat 5.0.28 and Tomcat 5.5.7 should work on Linux - at least on SuSE Pro 9.2 and SLES9. However failover restart under session replication works much better on the Tomcat 5.5.8 that is available as alpha. You might do

custom login form

2005-03-01 Thread Jonathan Halliday
Hello tomcat users. Please can anyone suggest a way to meet the following requirements for a Java web app (Servlet 2.4 spec version) using tomcat 5.5. Extend the html login form for an existing web application, which uses FORM based authentication, to contain extra fields. Apply custom

Re: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Dan
You could do it that way but I don't feel that placing common resources in a specific application directory is the proper approach. For example, if I had shared dlls that are used for Microsoft Office, I wouldn't place them into the Word application's directory. At 10:50 AM 3/1/2005, Doug

Re: skipping state transfer. No members active in cluster group

2005-03-01 Thread Filip Hanik - Dev Lists
your multicast isn't working. Filip Randall Svancara wrote: I have a problem in my tomcat logs. I am using tomcat 5.5.7 and whenever I start up tomcat for the first time, I receive this error message. INFO: Manager[/testapp], skipping state transfer. No members active in cluster group. After the

Single Sign On

2005-03-01 Thread Nat Titman
Hi, I'm using Tomcat 5.5.3 running as part of an Apache webserver on Fedora Core 1. I need to protect all the webapps running on Tomcat under a username and password and have found in the docs that I should be using the Single Sign On functionality. I've put the following inside the Host ...

Re: session load-balancing and clustering of tomcat

2005-03-01 Thread Mladen Turk
Lionel Farbos wrote: 1) In server.xml : - uncomment the AJP 1.3 Connector (on port 8009), - set the jvmRoute in each Engine example : Engine name=Standalone defaultHost=host1 debug=0 jvmRoute=t1_ajp13 Session route *must* consists only of alphanumeric characters. See the:

Re: Installation problems on Windows

2005-03-01 Thread shenty
Some more updates... Tried the .EXE installer with JDK 1.5. Still no go, I get the same installer hang right after Using jvm. Tried the .ZIP installation again, and verified an accurate JAVA_HOME pointing to the 1.4 JDK in this case. Running service install resulted in a Failed to install

RE: Installation problems on Windows

2005-03-01 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: Re: Installation problems on Windows Tried the .ZIP installation again, and verified an accurate JAVA_HOME pointing to the 1.4 JDK in this case. Running service install resulted in a Failed to install service error. Sorry if

Re: JK1.2.9 and dynamic change of properties

2005-03-01 Thread dhay
Hi Mladen, Just to clarify - will this allow us to configure the load-balancing on the fly according to the load of the tomcat's involved? cheers, David |-+ | | Mladen Turk | | | [EMAIL PROTECTED]| | |

Re: Installation problems on Windows

2005-03-01 Thread John Najarian
Just to double check. Your 'path' env var includes an entry like: c:\j2sdk1.4.2_07\bin - (some people forget the \bin) and your java_home env var is like: c:\j2sdk1.4.2_07 -Original Message- From: [EMAIL PROTECTED] Sent: Mar 1, 2005 11:59 AM To: Tomcat Users List

Tomcat and IIS Authorization

2005-03-01 Thread Denny Lee
Hello All, I am creating a web app that has users and admins and I need to limit certain configuration pages only to admins. I must use NTLM to authenticate users into the web site and somehow get the credential to determine if the user has sufficient access or not. How can I do this? Can I do

RE: Tomcat and IIS Authorization

2005-03-01 Thread Allistair Crossley
Check out the NTLM part in my Tomcat 5.5 blog www.adcworks.com/blog Cheers, Allistair. -Original Message- From: Denny Lee [mailto:[EMAIL PROTECTED] Sent: 01 March 2005 17:26 To: tomcat-user@jakarta.apache.org Subject: Tomcat and IIS Authorization Hello All, I am creating a

Re: JK1.2.9 and dynamic change of properties

2005-03-01 Thread Mladen Turk
[EMAIL PROTECTED] wrote: Hi Mladen, Just to clarify - will this allow us to configure the load-balancing on the fly according to the load of the tomcat's involved? If you mean to balance according to CPU utilization, it won't do that. For that we would need some native component that would measure

Compatibility Package

2005-03-01 Thread Aron Beal
Hello Everyone, I'm trying to work with the latest stable(5.5.7) tomcat on OSX. Running the shutdown script gives me this message: This release of Apache Tomcat was packaged to run on J2SE 5.0 or later. It can be run on earlier JVMs by downloading and installing a compatibility package from the

Re: Installation problems on Windows

2005-03-01 Thread Jason Bainbridge
On Tue, 1 Mar 2005 06:43:06 -0800, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: You're right about jvm.dll... one typo and a bunch of cut-and-paste. None of the options you mentioned worked. Starting with using the ZIP file directly, I apparently have some JAVA_HOME or CLASSPATH problems

RE: Compatibility Package

2005-03-01 Thread Caldarale, Charles R
From: Aron Beal [mailto:[EMAIL PROTECTED] Subject: Compatibility Package Download the compat package from the binary download site: http://jakarta.apache.org/site/binindex.cgi Going there, I can not find this package anywhere. Follow the Tomcat - Tomcat 5 links. You'll end up here:

Re: session load-balancing and clustering of tomcat

2005-03-01 Thread Lionel Farbos
On Tue, 01 Mar 2005 17:55:15 +0100 Mladen Turk [EMAIL PROTECTED] wrote: Lionel Farbos wrote: 2) then add the module mod_jk in apache with jk workers defined like this : worker.list=t1_ajp13,t2_ajp13,loadbalancer This is not quite correct, although it will work. You should set

Re: JK1.2.9 and dynamic change of properties

2005-03-01 Thread dhay
Hi Mladen, We'd have our own mechanism to calculate the load on a particular server - I was actually asking if, and more importantly how (!), we'd adjust the balance factors on the fly from our app? cheers. David |-+ | | Mladen Turk

Custom Mbeans in tomcat admin console

2005-03-01 Thread Joseph Foster
Greetings, If this has been asked/answered several times already let me apologize in advance. I am trying to register a custom Mbean so that it will be visible through the included tomcat admin webapp. The strategies I have employed thusfar (to no avail): I added a resource element to the

Re: Compatibility Package

2005-03-01 Thread Aron Beal
Aaah, there it is. I need to enlarge the font on my browser. :) Appreciate the help, Aron Caldarale, Charles R wrote: From: Aron Beal [mailto:[EMAIL PROTECTED] Subject: Compatibility Package Download the compat package from the binary download site: http://jakarta.apache.org/site/binindex.cgi

Re: Installation problems on Windows

2005-03-01 Thread shenty
Yes, those are the path(s) I've used... including \bin in the path, and using the immediate parent directory of the \bin for JAVA_HOME. The following JREs and JDKs have been tried. Also, I've tried pointing the path and JAVA_HOME at the JRE, and the JDK for each version. J2RE1.4.2_06

Re: Installation problems on Windows

2005-03-01 Thread shenty
I'll check the Windows event log as you suggest... I haven't checked it yet. The Tomcat 5.x docs on the Jakarta site appear to assume the Windows installer will be used in every case... I'm not able to find different installation instructions for using the .ZIP distribution. Would the

Re: Custom Mbeans in tomcat admin console

2005-03-01 Thread Parsons Technical Services
Either make your modifications in the admin.xml or add a resource link there for the resource as you have it in the server.xml I am no expert on this one. As far as the bean goes, but am basing it on the resource entries. So there may be something still wrong. Doug - Original Message -

mod_jk

2005-03-01 Thread Jörg Lindner
Hello All, an ugly effect let me post this message in the list in hope of help. I run tomcat 5.0.28 connected per mod_jk (ajp13) in Apache 2. In Apache the mapping from webapp-URL to the servlet seems to work. My servlet get called. But the result differs by Webbrowsers. In InternetExplorer

RE: Installation problems on Windows

2005-03-01 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: Re: Installation problems on Windows The Tomcat 5.x docs on the Jakarta site appear to assume the Windows installer will be used in every case... I'm not able to find different installation instructions for using the .ZIP

Re: mod_jk

2005-03-01 Thread Tim Funk
You need to set a content type. -Tim Jörg Lindner wrote: Hello All, an ugly effect let me post this message in the list in hope of help. I run tomcat 5.0.28 connected per mod_jk (ajp13) in Apache 2. In Apache the mapping from webapp-URL to the servlet seems to work. My servlet get called. But

Re: Installation problems on Windows

2005-03-01 Thread John Najarian
Why are the 'J2RE...' included? I've never needed these in version 4.1, 5.19 or 5.28. -Original Message- From: [EMAIL PROTECTED] Sent: Mar 1, 2005 1:16 PM To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: Installation problems on Windows Yes, those are the path(s)

RE: mod_jk

2005-03-01 Thread Burgess, Jay S
I think you need to set the content type for your response. Try something like: res.setContentType(text/html); where res is the HttpServletResponse. Jay -Original Message- From: Jörg Lindner [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 01, 2005 12:26 PM To:

Re: Tomcat and IIS Authorization

2005-03-01 Thread Denny Lee
Hello Allistair, I looked at your blog but I am still lost as to how to setup IIS and Tomcat. I saw that you mentioned you have it setup but did not specify how to do so. -Original Message- Check out the NTLM part in my Tomcat 5.5 blog www.adcworks.com/blog Cheers,

Re: Tomcat and IIS Authorization

2005-03-01 Thread karjera
Laba diena. Dkojame, kad mums parate. Js atsista inut isaugota ms duomen bazje. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Installation problems on Windows

2005-03-01 Thread shenty
Regarding running Tomcat from the startup.bat and shutdown.bat... This *does* work, but only if JAVA_HOME is pointing to the parent directory of a JDK, not the parent to a JRE (this seems to contradict both the binary installer, and the Tomcat 5.x docs which state Tomcat no longer needs a JDK,

JavaMail API ?

2005-03-01 Thread Nikola Milutinovic
Hi all. I'm running Tomcat 5.5.7 on Windows XP and Sun JDK 1.5.0_01 I notice that JavaMail API is missing from BOTH Tomcat and JRE. There is no javax.mail.* hierarchy in ${JAVA_HOME}/lib/rt.jar As a consequence, I cannot use Mail API (javax.mail.*) without adding javamail-1.3.2.jar to

Migration from Tomcat 4.1 to Tomcat 5.0

2005-03-01 Thread Kiran Patel
I have a application runing on Tomcat 4.1. I want to change to Tomcat 5.0. I already installed Tomcat 5.0.28 and configured server.xml and web.xml according to the document. But when I click startup.bat, I get the error windows can not find '-Djava.endorsed.dirs=' . I get the same error

Re: Installation problems on Windows

2005-03-01 Thread shenty
Including the JREs were motiviated by two factors -- one, the Tomcat 5 docs indicate it needs a JRE, not a full-blown JDK, and two, for complete troubleshooting. As it turns out (see related message in this thread), JAVA_HOME in fact must be set to the parent directory of a JDK, *not* the

Re: Installation problems on Windows

2005-03-01 Thread Jason Bainbridge
On Tue, 1 Mar 2005 10:16:14 -0800, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Yes, those are the path(s) I've used... including \bin in the path, and using the immediate parent directory of the \bin for JAVA_HOME. The following JREs and JDKs have been tried. Also, I've tried pointing the

Re: SSL Question

2005-03-01 Thread Chris Hosler
Is this for a new web site or one that has been up and running for some time ? Christopher W. Hosler Network Administrator Ingham County MIS Department Email [EMAIL PROTECTED] As water reflects the face So a mans heart reflects the man [EMAIL PROTECTED] 3/1/2005 10:44:36 AM I have

RE: Tomcat Cluster

2005-03-01 Thread Randall Svancara
I used the tools that I downloaded from javagroups as described and I can send messages back and forth over multicast on 224.0.0.4 on port 45564 just fine. I am using the private address space of 10.111.22.x. My servers both contain one network card and each server defined as device eth0.

RE: Installation problems on Windows

2005-03-01 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: RE: Installation problems on Windows However, even with this correction to JAVA_HOME, the service.bat still fails in the same way -- Failed installing 'Tomcat5' service Is it possible that you might not have admin privileges on your

Re: SSL Question

2005-03-01 Thread Jason Bainbridge
On Tue, 1 Mar 2005 09:44:36 -0600, Reis, Tom [EMAIL PROTECTED] wrote: I have a quick question about SSL. If I am already running SSL on a server with a certificate imported into a .keystore file and I create a new certificate will it automatically overwrite the .keystore file by

Re: JavaMail API ?

2005-03-01 Thread Nikola Milutinovic
Nikola Milutinovic wrote: Hi all. I'm running Tomcat 5.5.7 on Windows XP and Sun JDK 1.5.0_01 I notice that JavaMail API is missing from BOTH Tomcat and JRE. There is no javax.mail.* hierarchy in ${JAVA_HOME}/lib/rt.jar It is also missing JAF (Java Activation Framework). I mean, no problem, I

Re: Installation problems on Windows

2005-03-01 Thread shenty
Jason, Thanks for the detail on the installation. I mentioned in a separate response within this thread that once JAVA_HOME was corrected (referencing the parent of the 1.5 JDK and not the public or private JRE) then the startup.bat method worked fine in the default installation directory the

RE: Installation problems on Windows

2005-03-01 Thread shenty
Nope... I've had the God-bit set since day one. :-) Steve -Caldarale, Charles R [EMAIL PROTECTED] wrote: - To: Tomcat Users List tomcat-user@jakarta.apache.org From: Caldarale, Charles R [EMAIL PROTECTED] Date: 2005-03-01 02:18PM Subject: RE: Installation problems on Windows From:

RE: JavaMail API ?

2005-03-01 Thread Caldarale, Charles R
From: Nikola Milutinovic [mailto:[EMAIL PROTECTED] Subject: Re: JavaMail API ? I notice that JavaMail API is missing from BOTH Tomcat and JRE. There is no javax.mail.* hierarchy in ${JAVA_HOME}/lib/rt.jar It is also missing JAF (Java Activation Framework). These are part of J2EE, not

RE: Tomcat Cluster

2005-03-01 Thread Randall Svancara
Ok, I figured this out. Just so everyone knows in tomcat 5.5.7, the cluster multicast functionality is a little flaky (no offense to the developers who spent long hours figuring this stuff out). IF YOU DO NOT HAVE A MULTIHOMED NETWORK, YOU DO NOT NEED TO SPECIFY THE PARAMETER

Re: Installation problems on Windows

2005-03-01 Thread Jason Bainbridge
On Tue, 1 Mar 2005 11:05:08 -0800, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Regarding running Tomcat from the startup.bat and shutdown.bat... This *does* work, but only if JAVA_HOME is pointing to the parent directory of a JDK, not the parent to a JRE (this seems to contradict both the

Re: JavaMail API ?

2005-03-01 Thread David Smith
No mistake that I know about. JAF and JavaMail are both separate downloads from Sun's site and have been all along. Licensing issues probably prevent them from being included in the Tomcat dist. --David Nikola Milutinovic wrote: Nikola Milutinovic wrote: Hi all. I'm running Tomcat 5.5.7 on

Re: JavaMail API ?

2005-03-01 Thread Frank W. Zammetti
I wouldn't have expected to see them in Tomcat frankly... Although sending eMails from a webapp is relatively common, it's not common enough to be included with an app server (well, except for Websphere, which generally includes everything under the sun!) I am kind of surprised it hasn't been

Re: Installation problems on Windows

2005-03-01 Thread Jason Bainbridge
On Tue, 1 Mar 2005 11:34:29 -0800, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Nope... I've had the God-bit set since day one. :-) Stupid question time Is there already a service named Tomcat5 already installed? -- Jason Bainbridge http://kde.org - [EMAIL PROTECTED] Personal Site -

[OT] LogWatch filter for Tomcat

2005-03-01 Thread Cindy Ballreich
Has anyone written a Tomcat filter for the LogWatch log analysys tool? http://www2.logwatch.org:81/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Installation problems on Windows

2005-03-01 Thread shenty
This is my own remote-office laptop, so I have the God-bit set (Administrators group), and have installed 50 or 60 programs / services over the last 12 months, including 20 or so after the SP2 upgrade. So it would seem Tomcat is trying to do something during installation that most other programs

Re: Installation problems on Windows

2005-03-01 Thread shenty
Jason, Definitely *not* a stupid question, as the answer is yes. Don't know how it got there, and it doesn't work (can't look at properties, can't start it, probably can't remove it...?) Undoubtedly an artifact from one of the dozen or so installation attempts. I've been clearing the

  1   2   >