Re: pager taglib not working after migrating to tomcat 4.1.12 from tomcat 4.0.4

2003-02-12 Thread James Klicman
Hi Ashish, You will want to upgrade to version 2.0 of the Pager tag library. It is compatible with JSP 1.2 and Tomcat 4.1.12. -James On Wed, Feb 12, 2003 at 04:37:42PM -0800, Ashish Kulkarni wrote: > Hi, > > I have been using the pager tag lib from > http://jsptags.com/tags/navigation/pager/ind

RE: Tomcat Performance Measuring

2003-02-12 Thread Jacob Hookom
There is an article at javaworld on filters that accomplish this, otherwise head over to opensymphony.com to download the filter itself. -Bocaj | -Original Message- | From: p niemandt [mailto:[EMAIL PROTECTED]] | Sent: Thursday, February 13, 2003 12:11 AM | To: Tomcat Users List | Subject

Re: mod_jk2 and apache13

2003-02-12 Thread Bill Barker
"liug" <[EMAIL PROTECTED]> wrote in message b2bbic$4bj$[EMAIL PROTECTED]">news:b2bbic$4bj$[EMAIL PROTECTED]... > Bill Barker <[EMAIL PROTECTED]> wrote: > > "liug" <[EMAIL PROTECTED]> wrote in message > > b24kvg$7ku$[EMAIL PROTECTED]">news:b24kvg$7ku$[EMAIL PROTECTED]... > >> mod_jk2 (tomcat 4.1.18

Re: Moving to Tomcat 4.1.18

2003-02-12 Thread Ramkumar Krishnan
Hi, Thanks for your valuable information. I read that in tomcat 4.1.18 our Servelet 2.2 Application will degrade..Is it so?.. Moreover l dont know about interceptors...Please tell me somehing about that. We connect to our clients staging URL for testing. That time we are using realms for

Re: 3.3.1 Standalone and Client-Auth

2003-02-12 Thread Bill Barker
"Alex Tang" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Tue, Feb 11, 2003 at 10:42:33PM -0800, Bill Barker wrote: > > > > "Alex Tang" <[EMAIL PROTECTED]> wrote in message > > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > > Hi folks. > > > > > > I was w

Re: Moving to Tomcat 4.1.18

2003-02-12 Thread Bill Barker
Ben's timeline is a good one. The problems that will bite you first is if you have any custom Interceptors (e.g. Realms) in your 3.2.x app. These won't port without a total re-write. If your not accessing Tomcat internals, then the port should be painless (famous last words :). "Ben Ricker" <[E

Re: where put the business components properties file

2003-02-12 Thread Bill Barker
"Pedro Cardoso" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > but i read the properties file by inicialize(View object) after an > useBean tag; and when i run the project in tomcat 4.1 show this: > org.apache.jasper.JasperException: java.lang.RuntimeException:

Re: How to hide a context path?[urgent!]

2003-02-12 Thread Bill Barker
"Sean Dockery" <[EMAIL PROTECTED]> wrote in message 01f701c2d2e1$128f7020$640a@loki">news:01f701c2d2e1$128f7020$640a@loki... > You cannot mask your context path. Not really true, but it usually costs more in effort than it is worth :). I use Sean's method below to hide the names of my JS

Re: AJP 1.3 Connector jk/jk2

2003-02-12 Thread Bill Barker
I actually have one site that is using the mod_jk 1.1 Apache code (that ships with Tomcat 3.3) talking happily to Tomcat 4.1.x using the Jk2 CoyoteConnector. (I'm doing this because I need to switch between TC 3.3 & 4.1 for testing). If the CoyoteConnector can speak perfect v1.1 Ajp13 protocol, t

RE: [beginner question] reloading classes

2003-02-12 Thread Nandish A
add in you server.xml file -Original Message- From: Bert Catsburg [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 9:00 PM To: Tomcat Users List Subject:Re: [beginner question] reloading classes Hm, I do not understand why I should restart Tomcat. The manager

Tomcat security configuration guide

2003-02-12 Thread Manavendra Gupta
Hi, I have begun to work on a tomcat security configuration guide as a one-stop guide for helping system administrators, security professionals and programmers to configure system user accounts and groups, file permissions, tomcat security realms, java security manager, etc in the optimal way ther

Re: Tomcat Performance Measuring

2003-02-12 Thread p niemandt
There is some stuff on filters for doing this on the web: do a google, but the basic idea is you write a filter that filters the request, get the current time, dispatches the request, filter the response, work out the difference, and return to the browser ... hth, paul On Thu, 2003-02-13 at 04:3

Security Hole in 3.2.3

2003-02-12 Thread Ramkumar Krishnan
Hi All,             I heard that there is a major security hole in 3.2.3. What is that?.. How to simulate this security hole?..   thanks, Ramkumar

RE: JkMount error starting Apache

2003-02-12 Thread Turner, John
For the record, Apache 1.3 needs AddModule, Apache 2 doesn't. John -Original Message- From: Barley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 7:14 PM To: Tomcat Users List Subject: Re: JkMount error starting Apache OK, So, this *was* the problem. When I had tried i

Re: The string "--" is not permitted within comments

2003-02-12 Thread Jeanfrancois Arcand
Sorry, you are right. That's the dtd file I am reffering to (web-app_2_3.dtd). Sorry for the confusion.Still, I strongly recommend you try Xerces 2.3 :-). If you look how long it tooks to reproduce the problem (OK I'm was slow on that one :-) ), I'm not sure removing the 80 characters in a

Re: The string "--" is not permitted within comments

2003-02-12 Thread Jesus M. Salvo Jr.
Didn't know there was a 2.2.2 and there is also a bug in 2.3.0 that may actually affect me ( but not Tomcat ). Anyway ... thanks for that ... but I am a little bit confused: You mentioned below that the file that Xerces is complaining about is struts-config.xml, but in the URL you mentione

Tomcat Performance Measuring

2003-02-12 Thread Garrett Dangerfield
I've looked through the documentation I could find, and I looked through the source for AccessLogValve and I didn't see the option for what I'm looking for. I'm looking for getting a measurement of "page duration" (the time, preferrably in milliseconds, between when the server originally receiv

Re: get User object from tomcat

2003-02-12 Thread Jeanfrancois Arcand
Humm...not clear. I guess you mean the principal. Looks at: HttpServletRequest.getUserPrincipal() that returns the current authenticated user HttpServletRequest.isUserInRole(String role) to see if the current authenticated user is included in the specified logical role. -- Jeanfrancois fangfan

Tomcat 4.1.18 Manager app

2003-02-12 Thread John Brosan
Hello Everyone, It has been a long time since I was last on this list, so if this question has been answered before I apologise. I did not see anything in the achives. I have setup Tomcat 4.1.18 on Windows XP SP1. Everything seems to work correctly with the lone exception of the manager app. I

Re: The string "--" is not permitted within comments

2003-02-12 Thread Jeanfrancois Arcand
Xerces 2.2.1 is broken :-) 2.2.2 also :-) ... with Tomcat. See http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13282 for the real story. The file that produce the error is struts-config.xml, but you cannot predict on which file it will crach. Xerces 2.3.0 works fine for me. You should give

Very newbie question, Bootstrap: Class loader creation threw exception

2003-02-12 Thread Matt
I recently downloaded tomcat to try it out, and learn new parts of server programs.(Kind of an odd thing) I installed the JDK and put the PATH to it as the first entry in my path statement I went and ran startup.bat and it spawns a new window, and goes away quickly, so I stepped through startup.b

The string "--" is not permitted within comments

2003-02-12 Thread Jesus M. Salvo Jr.
I know this question has been asked before here: http://marc.theaimsgroup.com/?l=tomcat-user&m=103649805401229&w=2 So I posted a question to the Xerces mailing list trying to confirm on which release it was fixed, but I got no response: http://marc.theaimsgroup.com/?l=xerces-j-user&m=10442537990

Re: How to write custom authentication method forTomcat as well asweblogic/orion?

2003-02-12 Thread Soefara Redzuan
From: "Craig R. McClanahan" <[EMAIL PROTECTED]> > Whilst Tomcat's JDBC Realm's are easy to set up and get working, > (http://jakarta.apache.org/tomcat/tomcat-4.1-doc/realm-howto.html), I'm > wondering how easy it might be to write our own authentication mechanism > using Filters ? You might wan

Re: How to write custom authentication method forTomcat as well asweblogic/orion?

2003-02-12 Thread Craig R. McClanahan
On Wed, 12 Feb 2003, Soefara Redzuan wrote: > Date: Wed, 12 Feb 2003 14:38:22 +0800 > From: Soefara Redzuan <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: How to write custom authentication method forTomcat as well as > weblogic/orion

RE: MY ATTITUDE

2003-02-12 Thread jsp
Wow, I thought the idea was to help people out that just don’t get it? Not tell someone READ THE FRIGIN MANUAL. What kind of crap is that? Some people don’t just GET the obvious. You don’t have time to answer a dumb question ?? SO WHY DO YOU HAVE TIME TO WHINE AND CRY FOR 8 PARAGRAPHS,

RE: default error page in tomcat

2003-02-12 Thread unix guy
Thank you John for the quick reply. I am finally able to prevent outsiders from seeing what version of tomcat I am running. - Original Message - From: "Turner, John" <[EMAIL PROTECTED]> Date: Wed, 12 Feb 2003 15:29:17 -0500 To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Subject: RE: defa

jk2 config -- uri directive for root context?

2003-02-12 Thread Jake Robb
Okay, I've almost got this figured out. I've got JK2 working with Tomcat 4.1.18 and Apache 2.0.44, with much credit due to Paul Branson and his tutorial, found here: http://undergraduate.cs.uwa.edu.au/units/233.410/submissions/bransp02/presen tation.pdf My only remaining problem is that I'm not

Re: MY ATTITUDE

2003-02-12 Thread Rosdi bin Kasim
> RTFM means "Read the friggin' manual". It is used in almost any place My oh my..., I thought it means "Read The Fine Manual"..., man I was mislead - Original Message - From: "Erik Price" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, February

get User object from tomcat

2003-02-12 Thread fangfang cai
Hi, Does anyone know how to get the User object(MemoryUser object) which contains user's fullname, roles .? Thanks, Fang - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Running the servlet !

2003-02-12 Thread Swapneel Dange
hey Filip ! thanx man ! i got it running ! i think ur right for the package name ! Swapneel Dange 505-642-4126 http://www.cs.nmsu.edu/~sdange From: "Filip Hanik" <[EMAIL PROTECTED]> Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Subject: RE: Ru

nsapi_redirector.so

2003-02-12 Thread Craig Pardey
Hi, I have spent a very frustrating 2 days trying to get Tomcat 4.1.8 to work with Netscape Enterprise Server 4 on Solaris 8. Before you ask why, I'll tell you that I don't have any say in the environment. I have tried just about everything I dowloaded the connectors so that I could compile n

RE: Running the servlet !

2003-02-12 Thread Filip Hanik
does your HelloWorld.java have package swapneel.servlets; as the first statement? Filip -Original Message- From: Swapneel Dange [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 5:17 PM To: [EMAIL PROTECTED] Subject: Running the servlet ! Thanx All ! i got my servler comp

Re: Taglibs are not interpreted with Tomcat 4.1.18

2003-02-12 Thread Sean Dockery
Your actual tag class implementation should be located in... /WEB-INF/classes/org/sourcepark/taglibs/kato/db_dropdown.class ...which is very different from your... /WEB-INF/classes/org.sourcepark.taglibs.kato.db_dropdown.class This also means that the first line in your db_dropdown.java source

Running the servlet !

2003-02-12 Thread Swapneel Dange
Thanx All ! i got my servler compiled but now when i try to see the same SERVLET using the following address --- http://localhost:8080/swapneel/hello then i get the following errors -- * Error: 500 Location: /swapneel/hello Internal Servl

JSPC skips files - Please help

2003-02-12 Thread Robert Skoczylas
Folks, I'm trying to compile my jsps using the JSPC class using Tomcat 4.1.12 and ANT 1.5. When running it with the -webapp option, there are no problems, all jsps compile and are placed in the destination dir/package. But we have a requirement to create different packages so I have created man

pager taglib not working after migrating to tomcat 4.1.12 from tomcat 4.0.4

2003-02-12 Thread Ashish Kulkarni
Hi, I have been using the pager tag lib from http://jsptags.com/tags/navigation/pager/index.jsp for controling the number of records to be displayed on each JSP, It was working fine on tomcat4.0.4, but since i migrated to tomcat4.1.12, it is not working I get 10 records on first page, but nothing

Re: JkMount error starting Apache

2003-02-12 Thread Oscar Carrillo
Glad to hear it. On Wed, 12 Feb 2003, Barley wrote: > OK, > > So, this *was* the problem. When I had tried it before, > I guess I had my AddModule line in the wrong place. I > tried it again and added the line at the end of all of > the other AddModule lines and it fired up just fine. No > warni

Re: JkMount error starting Apache

2003-02-12 Thread Barley
OK, So, this *was* the problem. When I had tried it before, I guess I had my AddModule line in the wrong place. I tried it again and added the line at the end of all of the other AddModule lines and it fired up just fine. No warning from Apache about the module being already loaded either. Thanks

Re: JkMount error starting Apache

2003-02-12 Thread Barley
Sorry if I'm being dense...here's my LoadModule line: # Load mod_jk LoadModule jk_module /usr/lib/apache/mod_jk.so And here's yours: #Try changing to this # Load mod_jk LoadModule jk_module /usr/lib/apache/mod_jk.so So, you think I should add quotes somewhere? Thanks again, and sorry I'm so con

Custom-built Tomcat 4.0.5 on J2SE 1.4.1 can't find SAXParserFactoryprovider

2003-02-12 Thread Alex Cruise
Hi folks, I've got a custom-built Tomcat 4.0.5 that won't start; it says: "javax.xml.parsers.FactoryConfigurationError: Provider for javax.xml.parsers.SAXParserFactory cannot be found". I'm running on J2SE 1.4.x, so I've configured ${light.dist}=on and xerces.jar isn't being included in my dis

Re: JkMount error starting Apache

2003-02-12 Thread Oscar Carrillo
The quotes and the lack of a newline. Oscar On Wed, 12 Feb 2003, Barley wrote: > I've tried including the auto-generated file. It didn't > make a difference, and I'd rather manually configure in > httpd.conf. It shouldn't make any difference, right? > > And, I'm sorry Oscar, but what should I c

Re: Taglibs are not interpreted with Tomcat 4.1.18

2003-02-12 Thread THG
On Wed, 12 Feb 2003 13:13:09 Sean Dockery wrote: >Uh, no. tagclass is not defined anywhere in your original message. You >omitted it. > > > what did you put in here? > http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd";> 1.0 1.1 kato /WEB-INF/katolib.tld

Re: JkMount error starting Apache

2003-02-12 Thread Barley
I have tried this, but it doesn't change anything. Additionally, Apache gives me this error warning: [warn] module mod_jk.c is already added, skipping Thanks for the idea, though. Gregg > Does your httpd.conf have AddModule directives? If so, add one for > mod_jk.c - that's solved the problem f

Re: JkMount error starting Apache

2003-02-12 Thread Barley
I've tried including the auto-generated file. It didn't make a difference, and I'd rather manually configure in httpd.conf. It shouldn't make any difference, right? And, I'm sorry Oscar, but what should I change? I don't see any difference between your LoadModule line and mine. Thanks for the sugg

RE: compiling servlets !

2003-02-12 Thread Wendy Smoak
> i tried the stuff u said about compiling the SERVETS, but only thing it does > is to give me errors like these -- > HelloWorld.java:21: illegal escape character > out.println("\cf2 \cf0 ");\par Good! Now you're actually compiling something. Did you write this code? What are all those '\

RE: compiling servlets !

2003-02-12 Thread Tim Moore
http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html# 101084 -- Tim Moore / Blackboard Inc. / Software Engineer 1899 L Street, NW / 5th Floor / Washington, DC 20036 Phone 202-463-4860 ext. 258 / Fax 202-463-4863 > -Original Message- > From: Swapneel Dange [mailto:[EMA

Re: JkMount error starting Apache

2003-02-12 Thread Oscar Carrillo
Good point, but he says it loads up. But it does seem it's not really loaded. Barley, check your logs on Tomcat and Apache too. Here's my mod_jk dependency line (or whatever you call it): LoadModule jk_module modules/mod_jk.so You can check your configuration agains my install HOWTO: http:/

Re: JkMount error starting Apache

2003-02-12 Thread Oscar Carrillo
Try chaning the lines below: The other thing you could do is also trying to include the auto mod_jk file in httpd.conf such as: Include /usr/local/tomcat/conf/auto/mod_jk.conf But I'd try below first. Oscar On Wed, 12 Feb 2003, Barley wrote: > I am using Apache 1.3 and Tomcat 4.1, RedHat 7.3.

Re: tomcat crash puzzle

2003-02-12 Thread Justin Ruthenbeck
Hi Dan -- If you're seeing intermittent crashes and there isn't an obvious machine or OS level problem, I'd suspect it has something to do with available memory. I'm doubly suspicious because you're allocating max 256M, which wouldn't take a long time to get eaten up, depending on your app.

Re: JkMount error starting Apache

2003-02-12 Thread Lajos
Does your httpd.conf have AddModule directives? If so, add one for mod_jk.c - that's solved the problem for me before Lajos Barley wrote: I am using Apache 1.3 and Tomcat 4.1, RedHat 7.3. Tomcat runs fine standalone. I am now trying to integrate Tomcat with Apache using mod_jk.so. I compiled mo

RE: Setting up Tomcat

2003-02-12 Thread Turner, John
In recent versions of Tomcat, the Invoker servlet is disabled for security reasons by default. The Invoker servlet is what lets you just dump a class into WEB-INF and call it without mapping a URL. You either need to enable the Invoker servlet (not recommended, especially in production), or expl

JkMount error starting Apache

2003-02-12 Thread Barley
I am using Apache 1.3 and Tomcat 4.1, RedHat 7.3. Tomcat runs fine standalone. I am now trying to integrate Tomcat with Apache using mod_jk.so. I compiled mod_jk.so from source and put it in my modules/ directory. The module loads fine, but Apache won't start, because it doesn't recognize the JkMou

RE: JTHOWTO

2003-02-12 Thread Oscar Carrillo
Yeah, like somewhere where there's no internet access. LOL. John, you spend more time responding to this list than I do playing video games. Wow! Oscar On Wed, 12 Feb 2003, Turner, John wrote: > > I just need a vacation. > > John > > > > -Original Message- > > From: jsp [mailto:[EM

Setting up Tomcat

2003-02-12 Thread Terje Hopsø
Hello, I have used Tomcat 4.0.4 (I think it was) on my portable computer for testing. Now I am setting up 4.1.18 on my stationary but it will not work. I have a index.html which contains a menu.jsp (both on root-catalog) which is calling a Katalog.class that is stored in WEB-INF/classes. I the

RE: compiling servlets !

2003-02-12 Thread Swapneel Dange
hi Wendy ! i tried the stuff u said about compiling the SERVETS, but only thing it does is to give me errors like these -- ^ HelloWorld.java:21: illegal escape character out.println("\cf2 \cf0 ");\par ^ HelloWorld.

tomcat crash puzzle

2003-02-12 Thread Dan McGowan
All, I am having recurring problems with tomcat crashing. It crashes routinely several times per week during peek access and off hours. Particulars: version: 4.1.12 os: Mac OS X 10.2.3 hardware: X-Serve 512 mb ram java: 1.3.1 db: MySQL 3.23.53 java framework: struts 1.0 Note: not using c

RE: compiling servlets !

2003-02-12 Thread Wendy Smoak
> But i guess i am having problems > with the compilation of the SERVLETS on the tomcat. I have also deifned the > classpath as following : > C:\tomcat\jakarta-tomcat-3.3.1a\jakarta-tomcat-3.3.1a\lib\common\servlet.jar Is that really the location of servlet.jar? With jakarta-tomcat-3.3.1a in it

RE: Beware: Don't use JNI inprocess mode with JK2, it's badly broken

2003-02-12 Thread Paul Gregoire
In the attachments to Rahul's bug it appears he is using Win32; we have Apache 2.0.44 / Tomcat 4.1.18 / JK2 2.0.2 working inprocess just fine on our windows boxes. I ran into a problem when i tried to use inprocess on Linux and have given up for now; I can however run it out of process just fine

[HOWTO] Apache 2.0.4x Tomcat 4.1.x JK2

2003-02-12 Thread Paul Gregoire
I have a howto that works for us at http://www.vmdirect.com/ for our windows based installs. http://www.gregoire.org/howto/Apache2_Jk2_TC4.1.x_JSDK1.4.x.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

compiling servlets !

2003-02-12 Thread Swapneel Dange
hi there ! i am trying to install and run TOMCAT 3.3.1 But i guess i am having problems with the compilation of the SERVLETS on the tomcat. I have also deifned the classpath as following : C:\tomcat\jakarta-tomcat-3.3.1a\jakarta-tomcat-3.3.1a\lib\common\servlet.jar and while compiling i am usi

RE: AJP 1.3 Connector jk/jk2

2003-02-12 Thread Turner, John
I won't deny that I am lucky, though it's usually bad luck. ;) CoyoteConnector speaks JK just fine. In fact, if you enable Ajp13Connector, you will have problems with the MBeans that are configured earlier in server.xml. John > -Original Message- > From: liug [mailto:[EMAIL PROTECTED]

AJP 1.3 Connector jk/jk2

2003-02-12 Thread liug
now that we are pretty much on an agreement that jk2 is not usable on a unix platform, we should concentrate on mod_jk :) with tomcat 4.1, dev team decided that jk2 is ready and enabled it on the tomcat side by default (so I heard). The question is: if I use mod_jk.so on the apache side, do I nee

Tomcat/Apache/IIS configuration issues

2003-02-12 Thread Brantley Hobbs
All, Let me just say up front that I'm relatively new to Tomcat, but I do know my way around Apache and IIS pretty well. My Problem: No matter what I do, I cannot sucessfully connect a webserver to Tomcat using either the IIS redirector or mod_jk2. I get HTTP 500 errors (Internal Server Error) w

Re: How to hide a context path?[urgent!]

2003-02-12 Thread Sean Dockery
You cannot mask your context path. You can hide the directories in your JSP path by making the following entry in your web.xml file... ValidateJSP /security/pass/Validate.jsp ValidateJSP /validation/Validate.jsp ... Please note that this assumes that your Context path="

Re: Beware: Don't use JNI inprocess mode with JK2, it's badly broken

2003-02-12 Thread liug
As I mentioned in other posts, all the success stories I've seen so far are with Microsoft Windows platform. Is that me or someone else can imply from the response in that bug report that the developer also uses Microsoft Windows? Frank Rahul Bhargava <[EMAIL PROTECTED]> wrote: > http://nagoya.ap

RE: NES and Tomcat on Solaris

2003-02-12 Thread Craig Pardey
I don't have a choice, NES is our corporate-wide web server and all traffic has to go through it. Presently we've got JRun hooked into it but we're moving to a webapp structure and need to upgrade to tomcat. Craig >>> [EMAIL PROTECTED] 02/13/03 01:18am >>> Howdy, Make sure it's worth it. We

How to hide a context path?[urgent!]

2003-02-12 Thread Nancy Crisostomo Martinez
Hi everyone! Is it possible to mask all the directory tree referenced in a webapp context when you called in a navigator? I mean: now I type this url to access to a jsp file placed in webapps/security/pass/ : http://servername:8080/security/pass/Validate.jsp But I would like to hide or to m

Log4J and tomcat

2003-02-12 Thread Sloan Seaman
I'm deploying a war file using tomcat and I wish to use Apache's common logging api to log things (log4j behind the scenes). For some reason my configuration file seems to be getting ignored but my log.info msgs are showing up in the console window for Tomcat. Can someone tell me why this is happ

Re: Beware: Don't use JNI inprocess mode with JK2, it's badly broken

2003-02-12 Thread Rahul Bhargava
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16974 _ Rahul Bhargava - Original Message - From: "Francesa Lacreativa" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, February 11, 2003 12:21 PM Subject: Re: Beware: Don't use

RE: JTHOWTO

2003-02-12 Thread Turner, John
I just need a vacation. John > -Original Message- > From: jsp [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 12, 2003 4:17 PM > To: 'Tomcat Users List' > Subject: RE: JTHOWTO > > > Yeah man, like. way to go dude ! I'm like, rollin on the > floor man. > I cant stop laughin

RE: JTHOWTO

2003-02-12 Thread jsp
Yeah man, like. way to go dude ! I'm like, rollin on the floor man. I cant stop laughing. The MR RICKER part and the part like, WOW dude . Your humor is like WY NARLY BRA ! -Original Message- From: Geoff Peters [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 12

Re: failing installation server.xml file

2003-02-12 Thread Jon Roberts
Jake Robb wrote: I tried using the Tomcat RPM, and have had nothing but bad luck. Removing it (rpm -e ) and then installing using a normal binary has helped a lot. I agree. I'm already having more success with the binary. Let whoever is responsible for the rpms take note. It may not be worth y

RE: failing installation server.xml file

2003-02-12 Thread Ben Ricker
A few hints on using RPMs: get to know the --query (or '-q') option to RPM. Specifically, you can list out all files installed by an rpm by typing: 'rpm -ql Package_name'. To get the exact package name (RPM usually requires the full version number), type 'rpm -qa |grep package_name'. For example,

Re: where put the business components properties file

2003-02-12 Thread Pedro Cardoso
but i read the properties file by inicialize(View object) after an useBean tag; and when i run the project in tomcat 4.1 show this: org.apache.jasper.JasperException: java.lang.RuntimeException: JSP Registry could not locate runtime property file:jsp_bc_BcModule.properties the file is in CLASSP

RE: JTHOWTO

2003-02-12 Thread Geoff Peters
Too funny John! -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 4:37 PM To: 'Tomcat Users List' Subject: RE: JTHOWTO Excuse me, Mr. Ricker, I don't believe we have ever met before, but if we have and I have forgotten *please* excuse m

RE: JTHOWTO

2003-02-12 Thread Turner, John
Excuse me, Mr. Ricker, I don't believe we have ever met before, but if we have and I have forgotten *please* excuse me, as I am not well versed in all of the, how shall we say, "social graces". Now, I am sure there are others on this list who will *cringe* at my question, but I am still having a

Re: failing installation server.xml file

2003-02-12 Thread Jake Robb
I tried using the Tomcat RPM, and have had nothing but bad luck. Removing it (rpm -e ) and then installing using a normal binary has helped a lot. -Jake - Original Message - From: "Turner, John" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Sent: Wednesday, February 1

Re: JTHOWTO

2003-02-12 Thread Ben Ricker
On Wed, 2003-02-12 at 14:00, Alberto A C A S Magalhães wrote: > John, i am using your document, Red Hat Linux 7.2 + Apache... + Tomcat > 4.1.18, > I finish installing, java and tomcat. > When i startup tomcat, it gives an error, of, JAVA_HOME environment variable > not correctly defined!! > Can yo

RE: failing installation server.xml file

2003-02-12 Thread Turner, John
Sorry, I'm stumped. Wish I could help, but I know next to nothing about the RPM. John > -Original Message- > From: Jon Roberts [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 12, 2003 3:32 PM > To: Tomcat Users List > Subject: Re: failing installation server.xml file > > > Turn

RE: default error page in tomcat

2003-02-12 Thread Turner, John
If by "turn off" you mean "use my own", then yes, its in web.xml, the error-page element. John > -Original Message- > From: unix guy [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 12, 2003 2:43 PM > To: [EMAIL PROTECTED] > Subject: default error page in tomcat > > > How do I tu

Re: failing installation server.xml file

2003-02-12 Thread Jon Roberts
Turner, John wrote: What does "move tomcat4" mean? You changed the location of CATALINA_HOME? Did this change get propagated through all startup and admin scripts? John I changed the location of CATALINA_HOME, which the rpm put in /var/tomcat4. The only place I updated this value was in the

RE: where put the business components properties file

2003-02-12 Thread Filip Hanik
put it in WEB-INF/classes then you can access it from your servlet or JSP by using the classloader for example, Properties prop = new Properties(); InputStream in this.getClass().getClassLoader().getResourceAsStream("xxx_bcModule.properties"); if ( in != null ) prop.read(in); Filip -Ori

default error page in tomcat

2003-02-12 Thread unix guy
How do I turn off the default error page in tomcat? I cannot find it in the docs, but I am probably looking in the wrong place. Is it in the web.xml? Thanks, newbie -- ___ Get your free Verizonmail at www.verizonmail.com --

where put the business components properties file

2003-02-12 Thread Pedro Cardoso
I have 2 projects developed with Oracle JDeveloper 3.2.3: one for business componets and another for JSP's. The connection are made with the xxx_bcModule.properties file. Where should i put this file to run the projects in tomcat? i try to put this file in one directory outside the tomcat root

Re[2]: Setting up logging - Log4j

2003-02-12 Thread Jacob Kjome
Hello tomcat, Sorry, but the PDF was the book. If you really want to know *everything* about Log4j, that is what you should get. It will be well worth it to avoid the frustration you may feel when you have questions that you can't find answers for elsewhere. However, the other links that I poin

RE: JTHOWTO

2003-02-12 Thread Turner, John
Go back to the HOWTO, find the section titled "Install JDK" and follow the two instructions there. You will need to set an environment variable named JAVA_HOME, with a value of your JDK installation directory. For example: JAVA_HOME=/usr/local/j2sdk1.4.1_01 export JAVA_HOME Note that if you do

Re: JAKARTA 3.2.1

2003-02-12 Thread Sean Dockery
Why would restarting Tomcat help your applets? How do your applets communicate with SQL Server? - Original Message - From: "Vernon Callantine" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 12, 2003 12:26 Subject: JAKARTA 3.2.1 > Every Monday morning I get the fol

RE: newbie installation problem

2003-02-12 Thread Ron Day
Redhat Package Management (Redhat make a version of Linux) -Original Message- From: Steve Burrus [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 1:59 PM To: Tomcat Users List Subject: RE: newbie installation problem Excuse my ignorance please, but what does RPM stand for ex

Re: Taglibs are not interpreted with Tomcat 4.1.18

2003-02-12 Thread Sean Dockery
Uh, no. tagclass is not defined anywhere in your original message. You omitted it. what did you put in here? - Original Message - From: "THG" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]>; "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, February 12, 200

Re: newbie installation problem

2003-02-12 Thread Jens Skripczynski
Steve Burrus: > Excuse my ignorance please, but what does RPM stand for exactly?? I guess that the >PM is "package management". Ciao redhat packet manager (i believe) Jens Skripczynski -- E-Mail: skripi(at)myrealbox(dot)com One of the richest men in the world made his billions selling a toy `op

Re: Off-Topic(?) j2ee 1.4 jar not found

2003-02-12 Thread Jens Skripczynski
hi, Shapira, Yoav: > 1. Don't use the j2ee distribution jar. Use the mail and activation > jars separately. Do not have the j2ee jar anywhere in the tomcat > installation. > 2. These two jars (mail.jar and activation.jar) should go in the > /WEB-INF/lib directory of your web application. 1) why

RE: newbie installation problem

2003-02-12 Thread Ignacio J. Ortega
Steve, > > Excuse my ignorance please, but what does RPM stand for > exactly?? I guess that the PM is "package management". > Do you use google? http://www.google.com Go to the editbox put RPM inside, click "Search".. the first link you will get IS the RPM explanation .. most if not ALL y

Re: newbie installation problem

2003-02-12 Thread David Kavanagh
R="Redhat", correct on the other letters... Steve Burrus wrote: Excuse my ignorance please, but what does RPM stand for exactly?? I guess that the PM is "package management". - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

JTHOWTO

2003-02-12 Thread Alberto A C A S Magalhães
** Este email assim como os ficheiros que possa ter em anexo são confidenciais e para uso exclusivo da pessoa ou organização para o qual foi enviado. Se recebeu este email por engano por favor notifique [EMAIL PROTECTED] Esta nota

Re: newbie installation problem

2003-02-12 Thread Jake Robb
RPM is "RedHat Package Manager" -Jake - Original Message - From: "Steve Burrus" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, February 12, 2003 2:59 PM Subject: RE: newbie installation problem > Excuse my ignorance please, but what does RPM stand for e

RE: newbie installation problem

2003-02-12 Thread Steve Burrus
Excuse my ignorance please, but what does RPM stand for exactly?? I guess that the PM is "package management".

RE: failing installation server.xml file

2003-02-12 Thread Turner, John
What does "move tomcat4" mean? You changed the location of CATALINA_HOME? Did this change get propagated through all startup and admin scripts? John > -Original Message- > From: Jon Roberts [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 12, 2003 3:00 PM > To: Tomcat Users List

Re: failing installation server.xml file

2003-02-12 Thread Jon Roberts
Wendell Holmes wrote: Your default context is commented out [line 277 in your server.xml]. As you have it now, http://localhost:8080/examples should work, as there is a context for 'examples', but not for http://localhost:8080, the default context. Nope. If I try http://localhost:8080/examples

RE: Memory issue with Tomcat/4.0.3

2003-02-12 Thread alain
Sorry for not including system specs in original post. Intel Xeon 2.2 ghz, 2 GB Memory, Redhat 7.2 kernel 2.4.9-34, Sun JRE 1.4.0_01 I will adjust the heap sizes and test on another machine the latest kernel with IBM JRE. Thanks for the replies!!! Alain --

Re: Jakarta 4.1.18 Web Server Administration

2003-02-12 Thread Ben Ricker
See http://jakarta.apache.org/tomcat/tomcat-4.1-doc/index.html in the "Manager App HOW-TO" link. Ben Ricker On Wed, 2003-02-12 at 11:47, João Augusto Charnet wrote: > I've just installed Jakarta 4.1.18, and I'd like to know where do I > configure the Web Administration ? > I'd appreciate any kin

  1   2   3   >