RE: Antwort: RE: Antwort: RE: user principal, realm

2003-04-01 Thread Ralph Einfeldt
As I understood your problem I think that you have to implement your own RequestWrapper as your username is not in an official attribute but a private one. (So tomcat wouldn't know how to give this information to a realm) More on extending a RequestWrapper: http://java.sun.com/products/servlet/

RE: Taglib on tomcat 4.1.24

2003-04-01 Thread Arnaud HERITIER
Hi Dick. I'm agree with you and I will follow your advices. If I find some problems I'll post a Bug on Bugzilla. Thx for your explanations. Cheer Arnaud > -Message d'origine- > De : Dick Zetterberg [mailto:[EMAIL PROTECTED] > Envoyé : mardi 1 avril 2003 17:42 > À : [EMAIL PROTECTED] >

RE: Using JMX with Tomcat - registering my MBean

2003-04-01 Thread Michael Mattox
I've narrowed this down to the fact that Tomcat isn't finding my mbeans-descriptor.xml file. I put this in my server.xml file: But I have no idea where to place the actual mbean-descriptors.xml file. Right now I have it with my Java classes under my WEB-INF/classes directory but Tomcat must b

Antwort: RE: Antwort: RE: user principal, realm

2003-04-01 Thread Oliver Wulff
org.apache.catalina.connector.RequestWrapper I'm wondering if I could just implement my custom authenticator (compare BasicAuthenticator.java) or a custom Realm. But I don't know how I can register my authenticator. As mentioned already I want to read the delegated user from a http header attribu

RE: Antwort: RE: user principal, realm

2003-04-01 Thread Ralph Einfeldt
Which class/methods are you talking about ? > -Original Message- > From: Oliver Wulff [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 01, 2003 5:02 PM > To: Tomcat Users List > Subject: Antwort: RE: user principal, realm > > I took a look to JavaDoc and saw that all methods are deprecate

Re: JSP pages will not work for me. Please help

2003-04-01 Thread Bill Barker
It looks like you've got a stray XML parser lying around somewhere. My first guess would be $JAVA_HOME/jre/lib/ext, but you should check all of the usual suspects. "Donie Kelly" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all, I posted this earlier and no response and I've be

RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0)

2003-04-01 Thread Ralph Einfeldt
Is it possible that you have a tools.jar in the tomcat classpath that is older than j2sdk1.4.1_01 ? (AFAIK some versions of tomcat where delivered with tools.jar) > -Original Message- > From: Robert Priest [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 01, 2003 10:22 PM > To: [EMAIL PROT

Re: compilation of mod_jk, Solaris 8 (intel) using ANT

2003-04-01 Thread Bill Barker
I did this once a while back, just to see how. Then I decided to stick with "configure" and "make". The main thing that is needed is to add ${java.home}/../include/solaris to the section of jk/native/build.xml. If you a building from CVS HEAD, that should be enough. If you are building from th

Tomcat on Win2k with IIS problem

2003-04-01 Thread Serges N. Zubkoff
Hi all. I have connected Tomcat 4.1.18 on Win2k to IIS with isapi_redirector2.dll. Everyting works except data uploading through octed stream. When I try to save info to a file (GZip) archive comes wrong. Snding data to Tomcat directly or usiage of the old isapi_redirector.dll solves the problem. H

RE: Configuring Tomcat for multiple applications/users

2003-04-01 Thread Filip Hanik
just install several version of tomcat like c:\tomcat\jakarta-tomcat-5 c:\tomcat\jakarta-tomcat-4.24.1-A c:\tomcat\jakarta-tomcat-4.24.1-B and then under each conf/ directory, modify the port numbers in the server.xml Filip > -Original Message- > From: dwightHugget [mailto:[EMAIL PROTECT

Re: GUI for ant ...

2003-04-01 Thread David Orriss Jr
On Monday, March 31, 2003 9:06 AM, Reynir Hübner <[EMAIL PROTECTED]> wrote: > Hi guys.. > > How about http://ant.apache.org/projects/antidote/index.html > > -reynir > Hey.. thanks for sharing. That'll be a big help. We're trying to get our projects in jbuilder built around using ANT instead of

RE: Tomcat 4.1.24 Jasper Compile Problem

2003-04-01 Thread Steve Vanspall
Thanks, that will be my last resort. It's a pity that's what has to be done, because the older versions are fine with spaces in the path Steve -Original Message- From: Rosdi bin Kasim [mailto:[EMAIL PROTECTED] Sent: Wednesday, 2 April 2003 2:37 PM To: Tomcat Users List Subject: Re: Tomca

Re: Tomcat 4.1.24 Jasper Compile Problem

2003-04-01 Thread Rosdi bin Kasim
> [javac] javac: invalid flag: C:\Program Avoid using directory name with spaces, try to install your tomcat in c:\tomcat41 for example. - Original Message - From: "Steve Vanspall" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, April 02, 2003 12:16

Configuring Tomcat for multiple applications/users

2003-04-01 Thread dwightHugget
Can anyone point me to how to get this type of setup. I want to have multiple instance of tomcat running on the same machine under different ports, say 80, 8080, & . Would I achieve this if I setup an env variable called CATALINA_BASE as described in the RUNNING.txt file ? I have only one se

Tomcat 4.1.24 Jasper Compile Problem

2003-04-01 Thread Steve Vanspall
Hi there, I have this problem where Tomcat 4.1.24 doesn't let me compile the jsp's, I assume, as you will se ein the error message, that tomcat has a problem with there being spaces in the path to where it can find the JSP java code files. in my case this is under the Program Files/Apache Group/T

SSL via files for Apache ?

2003-04-01 Thread Jano Fetyko
Hi all, I have search the archive but didn't find an answer to my dilema. Our admin got me SSL certificate and private key that they use on their Apache server for SSL. It's signed by Verisign. I was wondering if there is a way to use these files to create the keystore instead of going thro

Re: Memory Woes

2003-04-01 Thread Mark Pease
Jake - you are a genius! I reverted back to 1.4.0_03 and the memory leak problem seems to have gone away. I am heavily dependent on StringBuffers for generating XML, so this bug was really causing problems. Thanks for your time! Mark - Original Message - From: "Jacob Kjome" <[EMAIL PROT

RE: session between domains

2003-04-01 Thread Filip Hanik
aahhh, now I see, you are asking about sessions between domains. That is always gonna be impossible with tomcat as it is right now. My question answered how to make a cookie persist across domains. the answer on how to do the "sessions between domains" depends on how much data you store in the ses

RE: Out of memory error

2003-04-01 Thread Goehring, Chuck Mr., RCI - San Diego
I just looked at this in Bug Parade. They put out a J2SE Version 1.4.1_02 but the release notes don't mention this bug. The bug (4724129) is still listed as "In progress". I don't see a "Known problem" section of the release notes either. This probably explains a bunch of problems reported re

RE: time zone

2003-04-01 Thread Chakradhar Tallam
thanks greg. that did the trick. -Original Message- From: Greg Speechley [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 11:04 AM To: Tomcat Users List Subject: RE: time zone I had the same problem when we put service pack 3 onto a win2k box. See bug report 4762673 at java.sun.

Re: session between domains

2003-04-01 Thread Troy A. Griffitts
Filip, Right, I think I understand your response, but, I believe I only have 1 webapp on the server. Regardless, I thank you for your assessment of the problem, and for your helpful suggestion. But I'm not quite sure what you mean: "then keep track of it yourself" Are you suggesting that I

RE: time zone

2003-04-01 Thread Greg Speechley
I had the same problem when we put service pack 3 onto a win2k box. See bug report 4762673 at java.sun.com. The problem is that the jre time is set to GMT by sp3. To fix it change the timezone to something different, save it then change it back to your timezone. Restart tomcat and problem should b

RE: Getting pretty far off topic here

2003-04-01 Thread mike jackson
java.lang.reflection... ;) -Original Message- From: Sandra Patricia Hunter [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 4:49 PM To: 'Tomcat Users List' Subject: RE: Getting pretty far off topic here Reflection is my friend? You haven't looked in my mirror lately! Sandra Patri

RE: session between domains

2003-04-01 Thread Filip Hanik
tomcat sessions are not only specific to your domain, but also to the actual webapp. tomcat per spec can not share cookies across webapps, even less across domain. why dont you set your own cookie, and set the domain to myserver.com, and then keep track of it yourself Filip > -Original Mess

RE: Getting pretty far off topic here

2003-04-01 Thread Sandra Patricia Hunter
Reflection is my friend? You haven't looked in my mirror lately! Sandra Patricia Hunter Systems Development and Web Design -Original Message- From: mike jackson [mailto:[EMAIL PROTECTED] Sent: April 1, 2003 4:38 PM To: 'Tomcat Users List' Subject: RE: Getting pretty far off topic her

RE: time zone

2003-04-01 Thread Chakradhar Tallam
the machine (operating system) is in correct time zone, but when tomcat runs it shows GMT times on tomcat's console. -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 10:37 AM To: Tomcat Users List Subject: RE: time zone change it on your mach

session between domains

2003-04-01 Thread Troy A. Griffitts
Hey guys. I have a standard site, say: http://mysite.myserver.com And eventually the user gets to a place where we'll need to jump them to something like: https://secure.myserver.com to take their credit card information. I lose my session when doing this. Both URLs point to the same serve

RE: Getting pretty far off topic here

2003-04-01 Thread mike jackson
It's that last little bit that's the hard part. If you can I'd put a column in the database that id's the card type (assuming you don't have that already). Also, remember that reflection is your friend... Good luck. --mikej -Original Message- From: Sandra Patricia Hunter [mailto:[EMAIL

RE: time zone

2003-04-01 Thread Filip Hanik
change it on your machine (operating system) Filip > -Original Message- > From: Chakradhar Tallam [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 01, 2003 4:17 PM > To: '[EMAIL PROTECTED]' > Subject: time zone > > > hi, > > here is a quick question. how do i change the time zone that

RE: Out of memory error

2003-04-01 Thread Jacob Kjome
Oh, definitely, yes. If you haven't used the -Xmx option then you are limiting yourself to 64meg of memory maximum! You can hit that pretty quickly. Jake At 06:22 PM 4/1/2003 -0500, you wrote: Thanks Nikolaos, The multiple (100 per minute) mapping server lines occur before the out of memory e

time zone

2003-04-01 Thread Chakradhar Tallam
hi, here is a quick question. how do i change the time zone that tomcat runs in? thanks in advance, - Chakradhar Tallam Consultant Object Consulting Level 11 / 75 Miller Street, North Sydney, NSW - 2060 Phone: +61 2 9459 3356 Fax: +61 2 9955 6659 Email: [EMAIL PRO

RE: Getting pretty far off topic here

2003-04-01 Thread Sandra Patricia Hunter
Thanks: I think just writing it down, Again, Helps me think it through. I've got the main steps you mention Mike, it's just that last little bit: what do I do with this now? I am going to play with string manipulation stuff and see where that gets me. Sandra Patricia Hunter Systems Development an

RE: Getting pretty far off topic here

2003-04-01 Thread mike jackson
First things first, you need some standard way to determine the card type. Then you need a configuration file which says do this for this card type. This could be a series of rules to follow, or could be a list of objects to instantiate to process the card type. If it's going to go the obj

RE: Getting pretty far off topic here

2003-04-01 Thread mike jackson
That's kind a where I'm going. I know I could build a system to do this, regardless of the complexity. However that said, I don't know that I want to spend the hours it'll take to understand the problem and work out a good and workable solution. --mikej -=- mike jackson [EMAIL PROTECTED] --

RE: Getting pretty far off topic here

2003-04-01 Thread Sandra Patricia Hunter
Tee hee. Thanks Filip! Lunch is on me! Sandra Patricia Hunter Systems Development and Web Design -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: April 1, 2003 4:02 PM To: Tomcat Users List Subject: RE: Getting pretty far off topic here he he he, isn't this what

RE: Getting pretty far off topic here

2003-04-01 Thread Filip Hanik
he he he, isn't this what you are getting paid to figure out :) have a wonderful April fools day Filip > -Original Message- > From: Sandra Patricia Hunter [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 01, 2003 3:55 PM > To: 'Tomcat Users List' > Subject: RE: Getting pretty far off top

RE: Getting pretty far off topic here

2003-04-01 Thread Sandra Patricia Hunter
Here's some more info: One database, several tables (about twenty). The tables hold information about someone who uses the card, a cardholder. Each card has a particular type. Each card type uses different information, for example one card type may need the cardholder's name and address, while

RE: Getting pretty far off topic here

2003-04-01 Thread mike jackson
1) Just to be sure, databases or tables? Or since it's Oracle, do you mean different Schemas? If it's different schemas then I'd create synonyms into a new schema for each of the different data sources (tables / schemas / databases whatever). 2) Sounds like you need a rule processor. If it were

Getting pretty far off topic here

2003-04-01 Thread Sandra Patricia Hunter
I am stumped about how to manage a process. Here is what I need to do: I have several "cards". Each card accesses specific data from the database. Each card accesses a different collection of data from different attributes of different tables. For the user to work with the data (add, update, del

RE: Out of memory error

2003-04-01 Thread Januski, Ken
Thanks Nikolaos, The multiple (100 per minute) mapping server lines occur before the out of memory error. But I now see that I also get these on days when there is no memory problem. So I guess they're unrelated. It just seems odd to see so many of them. I'll try the -Xms and -Xmx solutions and s

RE: JDBC-ODBC bridge error

2003-04-01 Thread mike jackson
Remember though that Oracle and Access syntax is a little different. If most cases it doesn't matter, but sometimes it does. For instance, if you're working with dates it's a little different (if you're converting the date from a SQL date to a text date). However, that said, here's some things t

connector ssl for apache / tomcat windows

2003-04-01 Thread noel . jean-baptiste
Hi, Wich connectors must i used if i want a secure connexion (ssl) Under winXP Apache 1.3.27, tomcat 4.0.6 ? And under winXP Apache 1.3.27, tomcat 4.1.xx ? And under winXP Apache 2, tomcat 4.1.xx ? Thanks - To unsubscribe,

RE: Out of memory error

2003-04-01 Thread Nikolaos Giannopoulos
> -Original Message- > From: Januski, Ken [mailto:[EMAIL PROTECTED] > > But no one has answered my original question: Do the 100s of multiple > "mapping server nnn.nnn.nnn.nn" lines reflect another symptom or the > possible cause of the memory error? They just look odd to me and so I > wond

RE: How to hand in the passwords to 3000 users [urgent!]

2003-04-01 Thread Goehring, Chuck Mr., RCI - San Diego
Nancy, Hope I understood you problem correctly. It might be worth doing a signup application, then advertise it through the management chain of command with a url and instructions. Have the app capture the information to a text file or database. Get the email, username and password that way

RE: Out of memory error

2003-04-01 Thread Januski, Ken
No, I'm using 1.4.0, so that shouldn't be it. But no one has answered my original question: Do the 100s of multiple "mapping server nnn.nnn.nnn.nn" lines reflect another symptom or the possible cause of the memory error? They just look odd to me and so I wondered if they might be the cause of the

JDBCRealm magic table names?

2003-04-01 Thread G. Wade Johnson
I just spent two hours tracking down a problem caused by new Oracle tables we created for my application. I'm running Tomcat 4.1.18 with Java 1.4.1. Our DBA created tables for my system to use with authentication thru the JDBCRealm. I populated the table and attempted to log in. The system consist

RE: Out of memory error

2003-04-01 Thread Nikolaos Giannopoulos
(1) We are seeing what seems to be this bug as well (we have no JSPs in our app btw) - Could it be that by using IBM's JRE for 1.4 that Steve essentially worked around this bug (2) I think its silly that SUN has slated fixing this bug for 1.5 and their workaround makes very little sense - Anyo

RE: Out of memory error

2003-04-01 Thread Jacob Kjome
could be because of this awful bug introduced in j2sdk1.4.1. It wasn't in j2sdk1.4.0 http://developer.java.sun.com/developer/bugParade/bugs/4724129.html Jake At 04:16 PM 4/1/2003 -0600, you wrote: I had the same problem on Redhat 7.1. I tried using the -Xmx and -Xms switches, but nothing s

jasper2/jspc null pointer errors on jsps with taglib/jstl

2003-04-01 Thread Hammad Sophie
Hi. My project has jsps, some of which use jstl/jakarta taglibs. I use ant to pre-compile/compile my jsps manually. All jsps which dont use taglibs still precompile/compile happily. However jsps with jstl/taglibs do NOT compile with ant because of some nullpointer exception: jsp_precompile:

RE: Out of memory error

2003-04-01 Thread Turoff, Steve
I had the same problem on Redhat 7.1. I tried using the -Xmx and -Xms switches, but nothing seemed to help. I then switched to IBMJava2-14 and it solved the problem. Steve -Original Message- From: Darian Shimy [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 1:16 PM To: 'Tomcat Us

RE: JDBC-ODBC bridge error

2003-04-01 Thread Sandra Patricia Hunter
Thanks guys! This is what works: String sqlString = "SELECT str_card_fields FROM card_type WHERE str_card_type='"+cardType+"';"; Sandra Patricia Hunter Systems Development and Web Design -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: April 1, 2003 2:06 PM To: To

RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0)

2003-04-01 Thread Robert Priest
Thanks for the reply. I just downloaded 1.4.1_ -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 3:27 PM To: Tomcat Users List Subject: RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0) Howdy, Make sure you're using: - T

RE: JDBC-ODBC bridge error

2003-04-01 Thread Filip Hanik
it is just a typo, I think what you want is this String sqlString = "SELECT card_type.str_card_fields FROM card_type WHERE (((card_type.str_card_type='"+cardType+"'));"; cardType, is from you java and is a parameter Filip > -Original Message- > From: Sandra Patricia Hunter [mailto:[EMA

RE: JDBC-ODBC bridge error

2003-04-01 Thread Jan Behrens
Hi Sandra, > String sqlString = "SELECT card_type.str_card_fields FROM card_type > WHERE (((card_type.str_card_type=cardType));"; you are using 3 opening brackets and only 2 closing ones in your where condition. IMHO it would be correct SQL to write: "SELECT card_type.str_card_fields FROM car

RE: JDBC-ODBC bridge error

2003-04-01 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
I get errors like that with coldfusion pages connecting to access if the variable type does not match the database field or if the value is null. if the database field is a string you I need to use single quotes around the value in the sql statement String sqlString = "SELECT card_type.str_car

JDBC-ODBC bridge error

2003-04-01 Thread Sandra Patricia Hunter
I am using the JDBC-ODBC bridge driver during development because I don't want to load Oracle on my system here and am using Access for now, and will be using Oracle in the final production. I know I know: it isn't good but I don't think it is the heart of the problem. I don't know if that is the s

Re: -Djava.endorsed.dirs=

2003-04-01 Thread Ramiro Gonzalez
The JAVA_HOME don't have to include then /bin directory... so the correct could be: JAVA_HOME C:\Programme\Java\j2re1.4.1_02 BUT... you need the SDK, not just the runtime, (j2re is the runtime). So, go to java.sun.com, and download the latest SDK. Saludos! Ines Robbers wrote: Hi, I have ins

RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0)

2003-04-01 Thread Robert Priest
Thanks. It's still happening, though: - The JDK (not JRE) - The right version of the JDK (preferably the latest stable version) just downloaded 1.4.1_02 afaik - the only version of rt.jar is in C:\j2sdk1.4.1_02\jre\lib\rt.jar I have down the JDK - An OS that has the patches required for the JDK,

compilation of mod_jk, Solaris 8 (intel) using ANT

2003-04-01 Thread Filip Hanik
hey ya'all I am compiling mod_jk on Solaris 8 on intel platform using ANT. I am compiling everything fine except jk_jni_worker.c that completely barfs on me. I had to do some tweaks before I could get the rest to work here are the steps 1. Add libtool to my path 2. Create a symbolic link from /u

-Djava.endorsed.dirs=

2003-04-01 Thread Ines Robbers
Hi, I have installed Tomcat under C:\Programme\Apache Group\Tomcat 4.1 and the JDK under C:\Programme\Java\j2re1.4.1_02 When trying to start up Tomcat with cd C:\Programme\Apache Group\Tomcat 4.1\bin\startup I get an error message: "The JAVA_HOME environment variable is not defined corr

Silent Installation of Tomcat 4.0.6

2003-04-01 Thread Timon, Vince
I have been searching multiple forums high and low for a definitive answer to the following question:   Is there a way to silent install tomcat 4.0.6, meaning the installation runs without displaying the user interface and the program uses default values or a response (.iss) file to compl

tomcat/apache manage ssl

2003-04-01 Thread noel . jean-baptiste
Hello, With tomcat 4.0.6 My tomcat is connected with Apache and I would like to have a connection protected with tomcat, but not for all my webApp of tomcat. The Apache server does not have protected connection SSL, and i don't want than Apache manage them. 1. Is this possible to have Apac

RE: tomcat IIS configuration please help

2003-04-01 Thread Januski, Ken
Do you get a 200 for the isapi rediretor in the iis logs? If you get a 401, like I did for a few days, then it can't find the page it's supposed to be redirecting to and something's still amiss on iis side. I asked the same questions about 2 weeks ago and got some useful responses. Let us know wha

RE: Not starting with j2ee.jar in /lib direcotry

2003-04-01 Thread Shapira, Yoav
Howdy, Get the classes you need piecemeal, e.g. mail.jar and activation.jar for JavaMail. Don't use j2ee.jar as it creates conflicts, for example with the javax.servlet packages. If you need all of J2EE, get a J2EE container e.g. JBoss, as tomcat doesn't fill your needs by itself. Yoav Shapira

Re: Not starting with j2ee.jar in /lib direcotry

2003-04-01 Thread Alexandre Alvarez Martini Santos
Hello Ramsay, That's what I'm doing, but it should not be this way. What if I need other classes from j2ee.jar? I put in th WEB-INF\lib but a msg( which I described in my previous mail) What do you think? thanks, al. - Original Message - From: "Ramsay Domloge" <[EMAIL PROTECTED]> To: "Tomc

RE: Printing options/tools available in Java

2003-04-01 Thread McBrayer, Roy
http://jasperreports.sourceforge.net/index.html -Original Message- From: Pooleery, Manoj [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 2:03 PM To: 'Tomcat Users List' Subject: Printing options/tools available in Java Hi, I am looking for any options that are available in java

How to hand in the passwords to 3000 users [urgent!]

2003-04-01 Thread Nancy Crisostomo Martinez
Hi all! I'm trying to entablish the best way to hand in their own user_id and password to the 3000 users of an applicattion developed to Internet. I don't know which could be the best way to do this without forgetting the security because each user has some confidential information in his/her ses

RE: Antwort: Tomcat not excepting changes in web-app

2003-04-01 Thread Jan Behrens
This is a test-environment so I am basically working in the webapp\myProject\ dir on the original sources. At this point I am not creating war-files yet. I am using the sun standard-compiler for building all binaries. Whenever I make changes in .java files throughout the project, I rebuild them and

RE: Jasper Error wrong version of Object.class (48.0 , should be 47.0)

2003-04-01 Thread Shapira, Yoav
Howdy, Make sure you're using: - The JDK (not JRE) - The right version of the JDK (preferably the latest stable version) - An OS that has the patches required for the JDK, if any This was a known bug in JDK 1.4.0b92 or something like that: search the BugParade on java.sun.com. Yoav Shapira Mill

Re: book on EJB

2003-04-01 Thread Anthony Marlowe
Hi, I'm running JBoss 3.n with Tomcat with no problem whatsoever. Tony On Tuesday, Apr 1, 2003, at 17:08 Europe/Berlin, Jeremy Whitlock wrote: Chris, I tried Jonas and JBoss and never got them working correctly with Tomcat. I use OpenEJB as it's easy to get working and is accessible vi

Jasper Error wrong version of Object.class (48.0 , should be 47.0)

2003-04-01 Thread Robert Priest
I am receiving the following error when my jsp file attempts to compile. Could there be another version of Object.class in the way? org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: -1 in the jsp file: null Generated servlet error: [javac] Compiling 1 so

RE: Tomcat not excepting changes in web-app

2003-04-01 Thread Shapira, Yoav
Howdy, Tomcat doesn't cache any of this in a way that persists across restarts. If you deploy a changed version of a class to the server and restart it, the new class will be loaded, as it's a new JVM instance, new classloader, etc. Any other behavior you're seeing is most likely an error of your

Antwort: Tomcat not excepting changes in web-app

2003-04-01 Thread horst . scheruga
You did not write how you deploy the changed class. Webapps are stored under the webapps directory There exists the war file and for each war file a directory with the unpacked content of the war file. Replacing all of this and restarting Tomcat should do it. [EMAIL PROTECTED] am 01.04.2003 2

Printing options/tools available in Java

2003-04-01 Thread Pooleery, Manoj
Hi, I am looking for any options that are available in java for printing excel/pdf documents. Anybody know of any tool/package that I can use? Thanks -Manoj Pooleery Senior Software Developer Synygy Inc. (www.synygy.com)

Tomcat not excepting changes in web-app

2003-04-01 Thread Jan Behrens
I am re-posting this as I still hope that anyone of the cracks out there can help me Hi List, I keep on having the following trouble... I have a web-app that connects to a database, the connection parameters are stored in a static class that serves only this particular cause. Whenever I nee

Does mod_jk2 and JNI work with the Apache2 prefork MPM?

2003-04-01 Thread Ken Cox
I'm stuck trying to use mod_jk2 (2.0.2) to connect Tomcat (4.1.24) to my prefork Apache (2.0.45) via JNI. Does anyone know have this type of setup working? What I really want is a servlet engine running in Apache's processes, so that it can make JNI calls back into my (thread unsafe) C++ code. T

RE: How to implements JavaBean in Tomcat 4.1.x in Win 2000 and solaris

2003-04-01 Thread Carlos Alberto Peláez Ayala
Hello friend, thanks for help me. I try with your idea, but appear the same problem. -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Enviado el: martes, 01 de abril de 2003 12:03 Para: [EMAIL PROTECTED] Asunto: RE: How to implements JavaBean in Tomcat 4.1.x in Win 2000 a

RE: Out of memory error

2003-04-01 Thread Darian Shimy
Set the memory using -Xmx and -Xms. This should take care of the memory problems. If you want to monitor the heap usage, add -verbose:gc -- Darian Shimy > -Original Message- > From: Januski, Ken [mailto:[EMAIL PROTECTED] > Sent: Monday, March 31, 2003 12:21 PM > To: Tomcat Users List

RE: Anyone successfully authenticating Tomcat users w/ windows login info using a JNDIRealm?

2003-04-01 Thread Darian Shimy
Try this: http://www.jguru.com/faq/view.jsp?EID=1045412 -- Darian Shimy > -Original Message- > From: Tim Funk [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 26, 2003 11:16 AM > To: Tomcat Users List > Subject: Re: Anyone successfully authenticating Tomcat users > w/ windows login

what's wrong with Example.ldif

2003-04-01 Thread Karamat Adil IHMD
Hi all, Can any one tell me why I cant run the sample file that is on the Tomncat website for adding entries in the OpenLdap directory tree ? The file is as follows -- # Define a user named 'tomcat' dn: cn=tomcat,dc=xxx,dc=com cn: tomcat userPassword: tomcat sn: Tomcat

JK2, listening on different port/address using server.xml

2003-04-01 Thread Kundrot, Steven
Strange behavior with JK2, Tomcat 4.1.12 on Linux 7.2. I configured JK2 with the default settings. Everything worked fine. I attempted to change the server.xml to use a different port than 8009. So, I updated the server.xml to use port 8089. The change took. The admin webapp displays the chan

Re: Form Auth

2003-04-01 Thread Michael D. Kirkpatrick
Thanks. I will look into it. Paul Yunusov wrote: > On Tuesday 01 April 2003 10:05 am, Michael D. Kirkpatrick wrote: > > I am not quite sure if this question is suitable for this mailing list. If > > not, please forgive me. > > > > I am using the form authentication for adding security to one of

RE: Using JMX with Tomcat - registering my MBean

2003-04-01 Thread Michael Mattox
> Howdy, > This will give you a start: > http://jakarta.apache.org/tomcat/tomcat-4.1-doc/mbeans-descriptor-howto. > html Thanks, this page was a great help. I'm stuck on one thing, what is the "Group" in the mbeans-descriptors.xml file? I have everything else set but I'm still getting: javax.ma

Re: JDBCrealm drops user after manager reload

2003-04-01 Thread Dan Allen
Filip Hanik ([EMAIL PROTECTED]) wrote: > I believe that during restart of a context, all sessions get serialized to > disk. > but the serialization does not serialize the principal. You can try to file > a bug for this, but I might be afraid that it may get shutdown because of > security concerns

RE: JDBCrealm drops user after manager reload

2003-04-01 Thread Filip Hanik
I believe that during restart of a context, all sessions get serialized to disk. but the serialization does not serialize the principal. You can try to file a bug for this, but I might be afraid that it may get shutdown because of security concerns Filip > -Original Message- > From: Dan A

Re: Form Auth

2003-04-01 Thread Paul Yunusov
On Tuesday 01 April 2003 10:05 am, Michael D. Kirkpatrick wrote: > I am not quite sure if this question is suitable for this mailing list. If > not, please forgive me. > > I am using the form authentication for adding security to one of my apps. > Since this app will be in use with several web sit

RE: Suggestions needed - customizing authorization

2003-04-01 Thread Shapira, Yoav
Howdy, >Before I dive into hacking a bunch of Tomcat source >code, I would very much like to solicit the opinions of >some more experienced users. I doubt you'll need to hack a bunch of tomcat source code. >I need a form-login authorization scenario that Authorization or authentication? >My i

JDBCrealm drops user after manager reload

2003-04-01 Thread Dan Allen
I am having a fairly painful problem here dealing with authentication using the JDBCReam and container managed security. In particular I am using securityfilter, but I seriously doubt that this problem involves that application directly. If I use the default SecurityRealm that comes with the secur

Using Ant for tomcat configuration

2003-04-01 Thread srinath narasimhan
Hi Can Ant be used to configure ( manipulate ) the server.xml in tomcat to create a host ? Thanks. Srinath. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: shared resources - a final answer?

2003-04-01 Thread Pat McGroin
Can anyone tell me which is right? Do shared resources across applications go in $CATALINA_HOME/common or $CATALINA_HOME/shared? The HOWTO doc. says the shared dir. is the place to put these resources. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html However, Paul tells me

RE: Seperate tomcats - one apache

2003-04-01 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
if you remove the vhost for host1 completely from apache to which tomcat do you get mapped? -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:10 AM To: Tomcat Users List Subject: Re: Seperate tomcats - one apache It doesn't work at all. Bel

Suggestions needed - customizing authorization

2003-04-01 Thread Barley
Before I dive into hacking a bunch of Tomcat source code, I would very much like to solicit the opinions of some more experienced users. I need a form-login authorization scenario that integrates with some of my other webapps. Specifically, I need to know the username, real name and group info of

Re: Seperate tomcats - one apache

2003-04-01 Thread John Turner
It doesn't work at all. Believe me, I've now spent 14 hours trying to make it work. I posted yesterday exactly what I have done so far ("Help with one Apache, mod_jk, two Tomcats, no load balancing"). http://host1.com:8080 -> Tomcat 1 works great http://host2.com:8081 -> Tomcat 2 works great A

RE: inconsistencies in Tomcat handling servlet filters...

2003-04-01 Thread Jacob Kjome
Many thanks to Jonathan Leech for pointing out how to fix my problem (below). See the original thread here: http://marc.theaimsgroup.com/?l=tomcat-user&m=104759543729238&w=2 and then the code I forgot to attach to the original message here: http://marc.theaimsgroup.com/?l=tomcat-user&m=1047595594

sample openLdap ldif file wont work

2003-04-01 Thread Karamat Adil IHMD
Hi all, Can any one tell me why I cant run the sample file that is on the Tomncat website for adding entries in the OpenLdap directory tree ? The file is as follows -- # Define a user named 'tomcat' dn: cn=tomcat,dc=xxx,dc=com cn: tomcat userPassword: tomcat sn: Tomcat

RE: Seperate tomcats - one apache

2003-04-01 Thread George Sexton
I routinely run via the CATALINA_BASE method for multiple instances and have no problems. Using mod_jk, all you have to do is define the connectors to be on different ports, and then configure each servlet engine to run mod_jk on a different port. -Original Message- From: Steve Harris [ma

Slightly OT: SocketException with MySQL

2003-04-01 Thread Geoff Peters
I am using Tomcat 4.1.18, MySQL 3.23, newest driver, running on Linux 7.3. Problem is similar to others who have posted on this subject, just want some advice (can't seem to get a definite answer). I'm not using connection pooling. If I walk away and leave the server running for several hours,

the latest stable release?

2003-04-01 Thread Xu, William [CC]
http://jakarta.apache.org/tomcat/index.html This page (paragraph 2 in section Tomcat 4.x) still shows the latest stable release is 4.1.18 as opposed to 4.1.24. Is there any specific reason for that or just that page has not been updated? Thanks in advance. Regards, William Xu -

Re: Form Auth

2003-04-01 Thread Michael D. Kirkpatrick
Same thing... Jeff Tulley wrote: > It is done through server.xml. I don't know what web server connector > you were using, but if it was Apache and mod_jk, you can still use it. > > On Tomcat's side, comment out the Coyote connector, which looks like: > port="8009" minProcess

RE: DriverclassName is required (mysql)

2003-04-01 Thread Mark.Gargan
Hi Folks, I was using the Tomcat within the Java WebServices Development Pack from Sun. I promptly got rid of it cos I like my dos output. Now instead of getting the error that the driverClassName is required, now Tomcat says that it cannot load JDBC class null. This would be fair enough

  1   2   >