RE: Logging for Dummies in Tomcat 5.5/6.0

2008-06-18 Thread Caldarale, Charles R
> From: André Warnier [mailto:[EMAIL PROTECTED] > Subject: Re: Logging for Dummies in Tomcat 5.5/6.0 > > What really puzzled me however, was that going down the hierarchy of > configuration files and directories, I never seemed to find a link > between Tomcat and the logging it was doing. You need

Re: Logging for Dummies in Tomcat 5.5/6.0

2008-06-18 Thread André Warnier
Chris, don't give up yet, please. There is a single question here. While I still do not agree with some of your comments below, I *do* immensely appreciate the time you put into it, the civility with which you answered, and the clues it provides. I also do understand that it is not easy to try

RE: JAASRealm problem moving from 5.5.23 -> 5.5.26

2008-06-18 Thread Caldarale, Charles R
> From: Stephen More [mailto:[EMAIL PROTECTED] > Subject: Re: JAASRealm problem moving from 5.5.23 -> 5.5.26 > > Take out the path attribute; it's not allowed unless the element is in server.xml (where it should never be, these days). It should be ignored, but... > useContextCla

Re: Questions related to configuring a REST API on Apache

2008-06-18 Thread Vinay Chilakamarri
I am using Apache Http Daemon for this simulation. I got what you are pointing to... I could have used a dynamic page for XML generation and returned it in response to the requests. May be I should configure Httpd for the virtual hosts and tune it to delegate jsp's to Tomcat? I've dealt with deplo

Re: Questions related to configuring a REST API on Apache

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Vinay, Vinay Chilakamarri wrote: | I mixed up the stuff a little there. It was actually a REST API as long as I | was talking about my own application. Since I am simulating the stuff (for | some testing purposes) I wanted to show our Global product

Re: Character encoding

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 nch, nch wrote: | You say: | Tomcat does not use any environment variables. The only settings that | affect the interpretation of the URI are the "URIEncoding" and | "useBody..." settings on the . Are you using more than one | connector? Are you usin

Re: Retriving polish characters from URL Query string in TOMCAT Server

2008-06-18 Thread Mark Thomas
Christopher Schultz wrote: Steve, Steve Ochani wrote: | From:Raghuveer <[EMAIL PROTECTED]> |> |> I had requirement of retrieving the login details like user_id, name |> from parent web application. |> |> At present I am retrieving by . |> |> request.getParameter("user_id") |> |> request.getP

Re: Questions related to configuring a REST API on Apache

2008-06-18 Thread Vinay Chilakamarri
Hi Chris, I mixed up the stuff a little there. It was actually a REST API as long as I was talking about my own application. Since I am simulating the stuff (for some testing purposes) I wanted to show our Global product as if 20 of those applications are sending responses when the Global thing ma

Re: Character encoding

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 nch, nch wrote: | But, if the URL is allways encoded in the same way and tomcat does | not receive any other information on what the resulting character | encoding should be. Why do I get different values from tomcat? Because the servers are configu

Re: Character encoding

2008-06-18 Thread nch
You say: Tomcat does not use any environment variables. The only settings that affect the interpretation of the URI are the "URIEncoding" and "useBody..." settings on the . Are you using more than one connector? Are you using Apache httpd out in front of Tomcat? Perhaps the JVM does and so tomcat

Re: Retriving polish characters from URL Query string in TOMCAT Server

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve, Steve Ochani wrote: | From: Raghuveer <[EMAIL PROTECTED]> |> |> I had requirement of retrieving the login details like user_id, name |> from parent web application. |> |> At present I am retrieving by . |> |> request.getParameter("user_id") |>

Re: Character encoding

2008-06-18 Thread nch
Chris, thanks for your help. Please, see my comments bellow. Kind regards. - Original Message From: Christopher Schultz <[EMAIL PROTECTED]> To: Tomcat Users List Sent: Wednesday, June 18, 2008 9:42:21 PM Subject: Re: Character encoding -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 n

Re: Questions related to configuring a REST API on Apache

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Vinay, Vinay Chilakamarri wrote: | While I got this to working, I now want to configure each of these | hosts to serve a REST API. How does your REST API differ from your, er... HTTP one? | In other words, I have to map a URL like: *http://localhos

Re: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread André Warnier
Caldarale, Charles R wrote: From: André Warnier [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat 5.5: Why can't I see the applications? And if the average Tomcat user or sysadmin were to install the official Tomcat, they would after that be in front of a nightmare in terms of overall system mainte

RE: Connection Pooling and Teradata

2008-06-18 Thread Katilie, John
Thanks, for the effort. It's interesting that when I moved my log4j jar file from my apps directory into tomcat/lib and added the log4j parm in my apps log4j.properties file I got tons of logging messages but none from dbcp.. log4j.logger.org.apache=ALL, DBCPCONSOLEAppender Thanks, jfk -Orig

Re: Logging for Dummies in Tomcat 5.5/6.0

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, Okay, I'll bite. André Warnier wrote: | Assume that one has installed Tomcat 5.5 (or 6.0) on some system just by | using the standard software package management system for his Operating | System, and consequently finds himself with some Tomc

Re: Connection Pooling and Teradata

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John, Christopher Schultz wrote: | I use log4j, and have it correctly configured to use log4j in my | application, so I added: | | log4j.category.org.apache.tomcat.dbcp=ALL I followed the instructions on this page (http://tomcat.apache.org/tomcat-5.

RE: Connection Pooling and Teradata

2008-06-18 Thread Caldarale, Charles R
> From: Christopher Schultz [mailto:[EMAIL PROTECTED] > Subject: Re: Connection Pooling and Teradata > > Perhaps it's because DBCP is loaded by TC before my > webapp, so it's using a differently-configured logger. I believe that's the case - different classloader, different logger. The DBCP clas

Re: Connection Pooling and Teradata

2008-06-18 Thread David Smith
There real unfortunate part with regard to log4j is the actual manual has to be purchased. The site docs are horribly lacking. Having said that ... I suspect because the DBCP pool is created by tomcat in tomcat's internal code, it has a different log factory instance and as a result, a diffe

Re: Character encoding

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 nch, nch wrote: | - I do remote debugging through Eclipse to both tomcat on windows | (same machine as eclipse, though) and tomcat on debian. Okay, remote debugging should not affect the server, but I'm still wondering if the server.xml you think yo

Re: Connection Pooling and Teradata

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John, Katilie, John wrote: | Chris, 1st I tried adding log4j.properies [...] I use log4j, and have it correctly configured to use log4j in my application, so I added: log4j.category.org.apache.tomcat.dbcp=ALL to my log4j.properties file, and that

Re: Connection Pooling and Teradata

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John, Katilie, John wrote: | Chris, 1st I tried adding log4j.properies [...] Take a look at all the messages running around the list this week about logging. Apparently, it's rocket science. - -chris -BEGIN PGP SIGNATURE- Version: GnuPG v1.

Re: Character encoding

2008-06-18 Thread nch
More info on this: - I do remote debugging through Eclipse to both tomcat on windows (same machine as eclipse, though) and tomcat on debian. - I open a debugging port on tomcat by setting CATALINA_OPTS=-Xmx1024m -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=4501

Re: JAASRealm problem moving from 5.5.23 -> 5.5.26

2008-06-18 Thread Stephen More
On Wed, Jun 18, 2008 at 2:10 PM, Caldarale, Charles R > Just to verify, your declaration is within the webapp's , > correct? > Could you post the element for the webapp? I'd like to see if > there's anything odd in it. My declaration is stored in META-INF/context.xml of the war.

RE: JAASRealm problem moving from 5.5.23 -> 5.5.26

2008-06-18 Thread Caldarale, Charles R
> From: Stephen More [mailto:[EMAIL PROTECTED] > Subject: Re: JAASRealm problem moving from 5.5.23 -> 5.5.26 > > The binary download does not output a stack trace for the error. I > added the stack trace to the src and recompiled. Here it is: Thanks. This will take a little while to reproduce. J

RE: Connection Pooling and Teradata

2008-06-18 Thread Katilie, John
Chris, 1st I tried adding log4j.properies in my webapp log4j.properties for the class org.apache.tomcat.dbcp, then after reading some doc I added: org.apache.naming.level=FINE org.apache.tomcat.dbcp.level=FINE in the tomcat/conf/logging.properties file. That seemed to produce nothing.. King Rega

RE: Redhat patch level cheatsheet?

2008-06-18 Thread Brandie.B.Huber
RHN = RedHat Network, which is where you find their errata. They may document it just fine, I just can't find their document. :) I've tried asking a RedHat sales rep, also, and I'm still coming up empty-handed. I was hoping asking the Apache mailing lists might turn up something. Thanks! Brandie

Re: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread jan
Um, wow. To answere summarily to everybody here - I did in fact install a repackaged version, one on Gentoo, one on Ubuntu, and in both cases I could easily get something up and running, but I couldn't get anything else to work. So I removed them and installed the one I downloaded from the To

Re: Redhat patch level cheatsheet?

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brandie, [EMAIL PROTECTED] wrote: | Anyone have a link to a cheatsheet that translates RedHat Enterprise's | backported patch levels for Apache products to Apache Tomcat's original | patch levels? I'm not able to find it via Google or RHN. We certa

Re: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 J, J ANDERSEN wrote: | I am trying to get Tomcat to work (Linux, 64 bits) - it runs fine, I | can connect to localhost:8080, but no matter what I have tried, there | doesn't seem to be any applications. It is probably just a question | of find the ri

Re: [OT] Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, André Warnier wrote: | To the original poster : please ignore [Chuck's] comment above. | Chuck seems to have something viscerally against any packaged form of | Tomcat, or any Tomcat that is not the very latest version. Actually, Chuck has an

Re: Character encoding

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 nch, nch wrote: | I have a form that has an input field named "query". I type "piraña" | an submit the form using the GET method. I can see the browser has | encoded this parameter into the URI as query=pira%C3%B1a Is this a correct UTF-8 encoding o

Re: Character encoding

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 nch, nch wrote: | This doesn't work either. :( | I removed the useBodyEncoding property, as you suggested, from the | Connector element, but the URI parameter coming in the request is | still being decoded into ISO-8859-1 instead of UTF-8. How do

RE: Questions related to configuring a REST API on Apache

2008-06-18 Thread Caldarale, Charles R
> From: Vinay Chilakamarri [mailto:[EMAIL PROTECTED] > Subject: Questions related to configuring a REST API on Apache > > In other words, I have to map a URL like: > *http://localhost/rec1/getInfo *to > an actual URL like* http://localhost:445/rec1/info.xml Sorry I can't answer your question, but

Re: Character encoding

2008-06-18 Thread Johnny Kewl
- Original Message - From: "Johnny Kewl" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, June 18, 2008 6:26 PM Subject: Re: Character encoding - Original Message - From: "nch" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, June 18, 2008 5:09 PM

Re: Connection Pooling and Teradata

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John, Katilie, John wrote: | Chris, Thanks for your reply. I'll do some more testing. May i ask a | dumb question? How did you turn on your tracing to get: I used the tracing provided by my JDBC driver (Connector/J), so you won't have this exact opt

Questions related to configuring a REST API on Apache

2008-06-18 Thread Vinay Chilakamarri
Hi, I am trying to simulate 20 servers (our applications) which offer a web API to communicate with a Global application. To do this, I thought of running 20 virtual hosts on Apache and somehow configure it to process the GET, PUT, POSTS requests that the Global application sends.I am running each

RE: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread Y Shiva
And what applications do you expect to see. --- On Wed, 6/18/08, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: From: Caldarale, Charles R <[EMAIL PROTECTED]> Subject: RE: Tomcat 5.5: Why can't I see the applications? To: "Tomcat Users List" Date: Wednesday, June 18, 2008, 9:49 AM > From: André

Re: JAASRealm problem moving from 5.5.23 -> 5.5.26

2008-06-18 Thread Stephen More
>> This setup has worked out of the box on both 5.5.23 and 6.0.16 without >> any changes to my CLASSPATH environment variable. > > Do you have anything in CLASSPATH? You shouldn't. Nope. CLASSPATH is empty. >> If I need to run multiple versions of a realm am I now forced >> to run multiple insta

RE: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread Caldarale, Charles R
> From: André Warnier [mailto:[EMAIL PROTECTED] > Subject: Re: Tomcat 5.5: Why can't I see the applications? > > And if the average Tomcat user or sysadmin were to install > the official Tomcat, they would after that be in front of a > nightmare in terms of overall system maintenance, with files >

Re: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread André Warnier
David Smith wrote: I hope you feel better having gotten that off your chest. The truth of the matter is that third party packagers do make breaking changes. I apologise if, in trying to take the defense of some people on this list, I have offended others. My main point was and is that m

Re: Retriving polish characters from URL Query string in TOMCAT Server

2008-06-18 Thread Mark Thomas
Raghuveer wrote: What changes i need to make in my JSP Struts web application in order to retrieve the polish characters In addition to any struts configuration, you'll need to set the URIEncoding on the connector. Mark -

Re: Character encoding

2008-06-18 Thread Johnny Kewl
- Original Message - From: "nch" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, June 18, 2008 5:09 PM Subject: Re: Character encoding There it goes. I have a form that has an input field named "query". I type "piraña" an submit the form using the GET method. I can see

Re: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread David Smith
I hope you feel better having gotten that off your chest. The truth of the matter is that third party packagers do make breaking changes. Those using these packages should seek support from the packager first as many times these third party packages aren't even binary jars from Apache. They

RE: JAASRealm problem moving from 5.5.23 -> 5.5.26

2008-06-18 Thread Caldarale, Charles R
> From: Stephen More [mailto:[EMAIL PROTECTED] > Subject: Re: JAASRealm problem moving from 5.5.23 -> 5.5.26 > > Is "Tomcat's classpath" defined somewhere in the docs ? It's normally just bin/bootstrap.jar; probably not explicitly defined in the docs, just discernable from the scripts. > This se

Re: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread Steve Ochani
Date sent: Wed, 18 Jun 2008 17:17:07 +0200 From: André Warnier <[EMAIL PROTECTED]> Subject:Re: Tomcat 5.5: Why can't I see the applications? To: Tomcat Users List Send reply to: Tomcat Users List > > Caldarale, Charles R

RE: Connection Pooling and Teradata

2008-06-18 Thread Katilie, John
Chris, Thanks for your reply. I'll do some more testing. May i ask a dumb question? How did you turn on your tracing to get: Wed Jun 18 09:39:20 EDT 2008 INFO: Profiler Event: [QUERY] at org.apache.tomcat.dbcp.dbcp.DelegatingStatement.executeQuery(DelegatingS tatement.java:208) duration: 0 ms

RE: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread Caldarale, Charles R
> From: André Warnier [mailto:[EMAIL PROTECTED] > Subject: Re: Tomcat 5.5: Why can't I see the applications? > > Chuck ssems to have something viscerally against any packaged form of > Tomcat, or any Tomcat that is not the very latest version. To Andre: don't try to guess my motivations. If you c

Re: Character encoding

2008-06-18 Thread Johnny Kewl
- Original Message - From: "André Warnier" <[EMAIL PROTECTED]> Could you give an example of such a UTF-8 encoded URI ? (and tell us what it should be decoded to) Thanks Andre have a look here... its not url encoding, thats something different It about being able to store japanese an

Re: JAASRealm problem moving from 5.5.23 -> 5.5.26

2008-06-18 Thread Stephen More
>> Just after that I am seeing a SEVERE message that it can not find my >> classes where I extend javax.security.Principal. These classes can be >> found in the deployed war file. > > Which is not where they're supposed to be. To quote from the doc: "Place > the compiled classes on > Tomcat's cl

Re: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread André Warnier
Caldarale, Charles R wrote: From: "J ANDERSEN" <[EMAIL PROTECTED]> Subject: Tomcat 5.5: Why can't I see the applications? I am trying to get Tomcat to work (Linux, 64 bits) - it runs fine, I can connect to localhost:8080, but no matter what I have tried, there doesn't seem to be any application

Re: Retriving polish characters from URL Query string in TOMCAT Server

2008-06-18 Thread Steve Ochani
Date sent: Wed, 18 Jun 2008 20:27:14 +0530 From: Raghuveer <[EMAIL PROTECTED]> Subject:Retriving polish characters from URL Query string in TOMCAT Server To: 'Tomcat Users List' Send reply to: Tomcat Users List Send reply to: [EMAIL PROTECTED] Organization: IEL > > > I

Re: Character encoding

2008-06-18 Thread nch
There it goes. I have a form that has an input field named "query". I type "piraña" an submit the form using the GET method. I can see the browser has encoded this parameter into the URI as query=pira%C3%B1a I set a breakpoint into the filter so when the request hits the filter I can see getChar

Re: tomcat 3.3 question

2008-06-18 Thread Robert Welz
Am 18.06.2008 um 15:33 schrieb Caldarale, Charles R: From: Robert Welz [mailto:[EMAIL PROTECTED] Subject: Re: tomcat 3.3 question is configured am I right in the assumption that the logfile is in / jakarta/logs/ ? Your version of Tomcat is so ridiculously old that very few - if any - peopl

Retriving polish characters from URL Query string in TOMCAT Server

2008-06-18 Thread Raghuveer
I had requirement of retrieving the login details like user_id, name from parent web application. At present I am retrieving by . request.getParameter("user_id") request.getParameter("name") Some times names can be in Polish language from parent web application. What changes i n

RE: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread Caldarale, Charles R
> From: "J ANDERSEN" <[EMAIL PROTECTED]> > Subject: Tomcat 5.5: Why can't I see the applications? > > I am trying to get Tomcat to work (Linux, 64 bits) - it runs > fine, I can connect to localhost:8080, but no matter what I > have tried, there doesn't seem to be any applications. Did you install

Re: Character encoding

2008-06-18 Thread André Warnier
nch wrote: Thanks, Christopher. This doesn't work either. Could you give an example of such a UTF-8 encoded URI ? (and tell us what it should be decoded to) Thanks - To start a new topic, e-mail: users@tomcat.apache.org To

Re: Character encoding

2008-06-18 Thread nch
Thanks, Christopher. This doesn't work either. I removed the useBodyEncoding property, as you suggested, from the Connector element, but the URI parameter coming in the request is still being decoded into ISO-8859-1 instead of UTF-8. Pages are displaying correctly, I use pageEncoding="UTF-8" c

Re: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread Johnny Kewl
- Original Message - From: "J ANDERSEN" <[EMAIL PROTECTED]> To: Sent: Wednesday, June 18, 2008 3:25 PM Subject: Tomcat 5.5: Why can't I see the applications? I am trying to get Tomcat to work (Linux, 64 bits) - it runs fine, I can connect to localhost:8080, but no matter what I have

Re: Character encoding

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 nch, nch wrote: | I'm having difficulties trying to decode URI parameters into UTF8. :( | When I moved the application | to linux (debian etch) I found out it was not working. We run on Linux as well. TC 5.5.23, Java 1.5.0_11. We have configured t

Redhat patch level cheatsheet?

2008-06-18 Thread Brandie.B.Huber
Anyone have a link to a cheatsheet that translates RedHat Enterprise's backported patch levels for Apache products to Apache Tomcat's original patch levels? I'm not able to find it via Google or RHN. Thanks in advance! Brandie smime.p7s Description: S/MIME cryptographic signature

RE: Jrockit Vs Sun

2008-06-18 Thread Steve Ochani
Date sent: Wed, 18 Jun 2008 09:32:41 +0100 From: James Law <[EMAIL PROTECTED]> Subject:RE: Jrockit Vs Sun To: Tomcat Users List Send reply to: Tomcat Users List > Here are the download links > http://commerce.bea.com/pro

Re: Load Balancing Tomcat 5.5

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hari, Hari Krishnan N wrote: | I am using windows version of Tomcat5.5. When the load increases, the | Tomcat crashes and I have to restart the server. I would like to | implement Tomcat Load Balance with another server using Sticky Sessions. | | Cou

Re: Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread André Warnier
J ANDERSEN wrote: I am trying to get Tomcat to work (Linux, 64 bits) - it runs fine, I can connect to localhost:8080, but no matter what I have tried, there doesn't seem to be any applications. It is probably just a question of find the right place to set things up, but where? I have tried t

Re: Connection Pooling and Teradata

2008-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Katilie, Katilie, John wrote: | Basically, I have a web application that communicates with Teradata | under Tomcat using a DBCP pooled connection. In my context.xml file I | have: [snip] | validationQuery="Select 1" [snip] | Via JNDI we get

RE: JAASRealm problem moving from 5.5.23 -> 5.5.26

2008-06-18 Thread Caldarale, Charles R
> From: Stephen More [mailto:[EMAIL PROTECTED] > Subject: JAASRealm problem moving from 5.5.23 -> 5.5.26 > > Just after that I am seeing a SEVERE message that it can not find my > classes where I extend javax.security.Principal. These classes can be > found in the deployed war file. Which is not w

RE: tomcat 3.3 question

2008-06-18 Thread Caldarale, Charles R
> From: Robert Welz [mailto:[EMAIL PROTECTED] > Subject: Re: tomcat 3.3 question > > is configured am I right in the assumption that the logfile is in / > jakarta/logs/ ? Your version of Tomcat is so ridiculously old that very few - if any - people remember how it works. The most recent 3.3 leve

Tomcat 5.5: Why can't I see the applications?

2008-06-18 Thread J ANDERSEN
I am trying to get Tomcat to work (Linux, 64 bits) - it runs fine, I can connect to localhost:8080, but no matter what I have tried, there doesn't seem to be any applications. It is probably just a question of find the right place to set things up, but where? I have tried to follow the user gui

Re: problem with javac

2008-06-18 Thread Robert Welz
Am 18.06.2008 um 15:13 schrieb Caldarale, Charles R: From: Robert Welz [mailto:[EMAIL PROTECTED] Subject: Re: problem with javac Where comes this "Globals" from? It's your code, not Tomcat's, so you tell us. Hmm. Yeah, I found a file Globals.java where these are declared as public stat

RE: Reload classfiles withour server restarting

2008-06-18 Thread Caldarale, Charles R
> From: Raghuveer [mailto:[EMAIL PROTECTED] > Subject: Reload classfiles withour server restarting > > Is there a way to configure my tomcat to reload class files > when compiled? Not individual class files, but you can reload each webapp in its entirety. > I remember it could be achieved by sett

Re: tomcat 3.3 question

2008-06-18 Thread Robert Welz
Am 18.06.2008 um 15:02 schrieb Robert Welz: A question: If I have a class / function Logger.Log (Logger.LOG_LEVEL_INFO, "Test " + Globals.BACKUP_STARTDIR); where will tomcat write these data out? so when In server.xml is configured am I right in the assumption that the logfile is in

RE: problem with javac

2008-06-18 Thread Caldarale, Charles R
> From: Robert Welz [mailto:[EMAIL PROTECTED] > Subject: Re: problem with javac > > Where comes this "Globals" from? It's your code, not Tomcat's, so you tell us. > Looks like a struct. This is Java - there are no structs. The proper term is interface. - Chuck THIS COMMUNICATION MAY CONTAIN

tomcat question

2008-06-18 Thread Robert Welz
A question: If I have a class / function Logger.Log (Logger.LOG_LEVEL_INFO, "Test " + Globals.BACKUP_STARTDIR); where will tomcat write these data out? - To start a new topic, e-mail: users@tomcat.apache.org To unsubscri

JAASRealm problem moving from 5.5.23 -> 5.5.26

2008-06-18 Thread Stephen More
I have been using 5.5.23 with a JAASRealm for some time now. In trying to upgrade to 5.5.26 I am now seeing a new log entry in catalina.out Jun 18, 2008 8:40:09 AM org.apache.catalina.realm.JAASRealm parseClassNames Just after that I am seeing a SEVERE message that it can not find my classes whe

Re: Reload classfiles withour server restarting

2008-06-18 Thread Johnny Kewl
- Original Message - From: "Raghuveer" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" Sent: Wednesday, June 18, 2008 1:05 PM Subject: Reload classfiles withour server restarting Is there a way to configure my tomcat to reload class files when compiled? Imaging I have modified my J

Re: Question about mod_ssl & mod_jk

2008-06-18 Thread Rainer Jung
Tan, Liao wrote: Rainer, Well, thanks for the instructions. In fact, had no idea on how old fashioned my version is, anyway, it´already installed and won´t be updated till 2nd order. I´m subscribing to httpd apache list. I´m not clear yet on how you found out that "You config snippets look like

Re: problem with javac

2008-06-18 Thread Robert Welz
The problem is solved, I created a proper Makefile. All modules install and compile but logs/jakarta.out tells me java.io.IOException: No such file or directory at java.io.UnixFileSystem.createFileExclusively(Native Method) at java.io.File.createNewFile(File.java:828)

RE: Question about mod_ssl & mod_jk

2008-06-18 Thread Tan, Liao
Rainer, Well, thanks for the instructions. In fact, had no idea on how old fashioned my version is, anyway, it´already installed and won´t be updated till 2nd order. I´m subscribing to httpd apache list. I´m not clear yet on how you found out that "You config snippets look like they are for htt

Character encoding

2008-06-18 Thread nch
Hi, there. I'm having difficulties trying to decode URI parameters into UTF8. I tried setting URIEncoding="UTF-8" and useBodyEncodingForURI="true" Connector properties. Didn't work. I tried adding a Filter by following the example at http://tompson.wordpress.com/2007/01/29/encoding-filter-for-ja

Reload classfiles withour server restarting

2008-06-18 Thread Raghuveer
Is there a way to configure my tomcat to reload class files when compiled? Imaging I have modified my Java file and compiled. Instead of restarting the server to load the latest class files...is there a way to configure in tomcat. I remember it could be achieved by setting reloadable to tr

Re: problem with javac

2008-06-18 Thread Robert Welz
javac -version javac: invalid flag: -version Usage: javac where possible options include: -gGenerate all debugging info -g:none Generate no debugging info -g:{lines,vars,source}Generate only some debugging info -nowarn Gen

Re: Class Loader Documentation

2008-06-18 Thread Johnny Kewl
- Original Message - From: "Ole Ersoy" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Tuesday, June 17, 2008 6:57 PM Subject: Re: Class Loader Documentation I think its because its just hard to explain, but maybe it could be made clearer. I think *ignores* is the wrong word. Es

high-resolution logos "Powered by Tomcat" and "Powered by Apache Axis2"

2008-06-18 Thread Kathrin04
we would like to start a campaign where we offer to create a SOA built on the Open Source Stack , therefore we have all logos of the stack on our flyer and we would like to have the "Powered by Apache Axis2" and "Powered by Tomcat" logos also there. Therefore we need a high-resolution logos for pr

Re: Question about mod_ssl & mod_jk

2008-06-18 Thread Rainer Jung
Pid wrote: This seems like a question intended for the Apache HTTPD list, rather than the Tomcat list, perhaps you could repost it there? Yes, this is mostly an httpd question. You config snippets look like they are for httpd 1.3.x, although your version says you are using httpd 2.0.x. Your

Re: Question about mod_ssl & mod_jk

2008-06-18 Thread Pid
This seems like a question intended for the Apache HTTPD list, rather than the Tomcat list, perhaps you could repost it there? p Tan, Liao wrote: All, My apache installed is has only the mod_jk.sl in the "libexec/" directory. I want to know what I need to do in order to to configure my cur

RE: Jrockit Vs Sun

2008-06-18 Thread James Law
Here are the download links http://commerce.bea.com/products/weblogicjrockit/jrockit_prod_fam-bea.js p I found them via the forums, you'd think they don't want you to download it! It seams Intel have bought out BEA so things could be looking up for JRockit. -Original Message- From: Johnny

Re: Help replacing mod_jserv with mod_jk

2008-06-18 Thread Yves Glodt
On Tuesday 17 June 2008, Sean Carolan wrote: > Hello Tomcat users: > > I need some help replacing the functionality of mod_jserv with mod_jk. Hello Sean, if you have to go through this, I suggest you to take a look at mod_proxy_ajp of apache 2.2. It can itself replace mod_jk, and in my project (