RE: Designing Systems Help!

2003-11-20 Thread Shapira, Yoav
Howdy, Dude, google. http://www.business-seek-easy.com/document-management/open-source-docume nt-management.htm Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Vaneet Sharma [mailto:[EMAIL PROTECTED] >Sent: Thursday, November 20, 2003 4:19 AM >To: Tomcat Users List >S

RE: Java memory model and web applications

2003-11-20 Thread Shapira, Yoav
Howdy, >I have recently been reading the Java Language Specification (JLS) >concerning threads, locks and the Java memory model > >http://java.sun.com/docs/books/jls/second_edition/html/memory.doc.html# 3020 >6 >and the book excerpt "Synchronization and the Java Memory Model" from >"Concurrent Pr

RE: server error

2003-11-20 Thread James Ostad
check you packaging information in the file that your are using category, in logservice.java. -Original Message- From: Subramaniyam Hemalatha [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 10:44 PM To: '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject: server error he

RE: Is this a bug???

2003-11-20 Thread Shapira, Yoav
Howdy, Actually this is interesting. You're not supposed to see this in the webapps that ship with tomcat by default. I would tend to blame Windows98 as we've seen other encoding-related issues with it recently (and this is an encoding-related issue). Yoav Shapira Millennium ChemInformatics >

RE: Dead threads

2003-11-20 Thread Shapira, Yoav
Howdy, If a thread is dead it will have been GCed. Use a thread dump (kill -s QUIT ) to get the current list of threads and what they're doing on stdout. There are also programmatic ways to go about this: I've posted at least three times in the past the complete code for a thread-crawler type of

Sunone Studio and Tomcat issue

2003-11-20 Thread James Ostad
Hi, I am new in Tomcat realm. I am working on SunOne Studio 4U1. I have a web application that works fine in SunOne, but once I move it to Tomcat area by creating a war file , it won't function right. In the sunone, I am using an external Tomcat installation, the same one that I move the applica

Re: Can Tomcat run on JRE only?

2003-11-20 Thread Florian Ebeling
Hi Thierry, you can compile JSPs into Java source code using the jspc. But this is rather meant for debugging and interpreting stack trace line numbers and the like. You could generate source and compile. But you still would have to invoke them. I don't know how one could convince the JSP-Servl

Session Repication

2003-11-20 Thread Drinkwater, GJ (Glen)
Hi I am trying to replicate my sessions via clustering with tomcat5 behind a apache. The problem is that i get this exception when i try to add a string to a session. code: String name= request.getParameter("name"); session.setAttribute("name", name); exception: java.lang.IllegalArgumentExcept

Re: Installation problem (For Harry and the rest....)

2003-11-20 Thread Harry Mantheakis
Hello > I faced this kind of problem before, a window disappear as soon as it > appears. I notice (after i checked the log files in the tomcat directory) > that's because of the IP binding... my background environment is still > running the services thus when i start again... give me the same > sy

ClassCastException whilst extending Log4J Logger

2003-11-20 Thread Scerri, Antony (ELSLON)
Hi My scenario is that I am running a webapp consisting of JSP pages and Java classes. I have run this under WebSphere 5.x and Tomcat 4.1.x. I have overridden the Logger class in the same manner as in the Log4J example subclass/MyLogger.java. This allows per-thread logging levels to be altered at

Re: Installation problem

2003-11-20 Thread Harry Mantheakis
Hello > Got this error message Sancha, please copy and paste into an email the complete contents of the 'web.xml' file located in the '$CATALIA_HOME\webapps\Sancha\WEB-INF' directory. I had not intended that you provide a 'welcome' page - the intention was for you to place documents in the 'Sanc

Tomcat Mager Application

2003-11-20 Thread Avoodaiyappan, Subbulakshmi
Hi, I have configured tomcat server on WINDOWS XP machine using the jakarta-tomcat-4.1.12 source. I am able to start the server and view the tomcat's homepage with the url http://localhost:8080 The problem is with the manager application. When i browse for the Manager application with the url htt

Can Tomcat run on JRE only?

2003-11-20 Thread Thierry Thelliez
My understanding is that the full JDK is needed for compiling JSPs. What if the JSPs are already compiled? Can on deploy a JSP site without the full JDK, only the JRE? Can I deploy the site without the JSP files themselves? With a copy of the work directory? Thanks, Thierry

server error

2003-11-20 Thread Subramaniyam Hemalatha
hello , i get this following error when i run my jsp page. will u be able to guide me. thks hema Error 500--Internal Server Error java.lang.NoClassDefFoundError: org/apache/log4j/Category at com.ncs.app.framework.service.LogService.(LogService.java:30) at com.ncs.app.servlet

Re: append text into a file

2003-11-20 Thread Harry Mantheakis
Hello > Could please give me some advice about how to append some data into an existed > log file? Thanks. The GenericServlet.log method (which HttpServlets inherit) appends to the log file - within a servlet, just call 'log'. In a JSP you can do the same thing using the ServletContext.log metho

Re: jsp cache issue

2003-11-20 Thread Tim Funk
Actually[without more digging] - I thought tomcat should be writing to $CATALINA_HOME/work -Tim Justin Ruthenbeck wrote: If it wrote to the same place you started it from (ie where the scripts/exe live), that could be a potential problem. It's actually writing to it's own exclusive work direc

TomCat 5.0.14 JSP 2.0 not working

2003-11-20 Thread tbrida
Please help, I am using TomCat 5.0.14 under windows and I am trying to run a jsp page that I found at http://www.javaworld.com/javaworld/jw-05-2003/jw-0523-calltag-p2.html and it looks like the JSP 2.0 expressions are not working? (JSP 1.0 stuff works) Here's the page : <%@ taglib prefix="tf

Re: mod_jk, missing post parameters

2003-11-20 Thread Luca
Hi I have exactly the same problem but not solution. I tried with mod_jk2 too. I have the same problem. Now I’m trying with apache for Windows. I want see if is OS problem. Is a bug of mod_jk/mod_jk2? Luca --- Marco Manini <[EMAIL PROTECTED]> wrote: > Hi, > I have this configuration: > > -

mod_jk, missing post parameters

2003-11-20 Thread Marco Manini
Hi, I have this configuration: - a linux machine with Apache 2.0.47 and mod_jk 1.2.5 configured for load balancing and sticky session. - two linux machine with tomcat 4.1.x. Load Balancing and sticky session work fine, but when there is a node failure and mod_jk switch the courrent request to the

Java memory model and web applications

2003-11-20 Thread Mark . Shotton
Hello I have recently been reading the Java Language Specification (JLS) concerning threads, locks and the Java memory model http://java.sun.com/docs/books/jls/second_edition/html/memory.doc.html#30206 and the book excerpt "Synchronization and the Java Memory Model" from "Concurrent Prog

Re: JDBC Realm

2003-11-20 Thread Jon Wingfield
mySQL is case-sensitive on column names. In mysql describe the users and user_roles tables. Use the column names as returned. eg: mysql>describe bobbins; +---+--+--+-+-+---+ | Field | Type | Null | Key | Default | Extra | +-

Dead threads

2003-11-20 Thread Walter do Valle
How to know what Tomcat threads are dead (or hanged, os blocked, or inoperative, or... ) in an Tomcat running on Linux? Any help is welcome.

Re: Installation problem

2003-11-20 Thread [EMAIL PROTECTED]
Hi timo, Did as told again. I am having the index.jsp(the code belonging to u) in the path , "C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\Sancha" Typed "http://127.0.0.1:8080/Sancha/";; in the URL, Got this error message HTTP Status 500 - -

RE : mod_jk2 not working anymore

2003-11-20 Thread Laurent Michenaud
I resolved my problem configuring the mapping In the httpd.conf : JkUriSet worker ajp13:localhost:8009 JkUriSet worker ajp13:localhost:8009 JkUriSet worker status:status So, I think that the mapping with pcre in the mod_jk2 is not working properly. -Message d'

mod_jk2 not working anymore

2003-11-20 Thread Laurent Michenaud
Hi, I've upgraded to apache 2.0.48/mod_jk2/jakarta-tomcat-4.1.29 and the mappings in workers2.properties don't work correctly anymore. I was working with apache-2.0.46/mod_jk2/jakarta-tomcat-4.1.24. My uri mapping are : [uri:/*.jsp] worker=ajp13:localhost:8009 [uri:/servlet/*] worker=ajp13:

Designing Systems Help!

2003-11-20 Thread Vaneet Sharma
Hi all. . Currently i am designing a document management system. According to the architecture proposed, it will be a three - tier architecture. (web based)I am looking forward to use J2EE .. i will be using Tomcat to run it. What i need to know is ? Is there any open source project for "Docume

Re: RedHat 9 & tomcat

2003-11-20 Thread satou hotmail
Hello, > Hello All, > Today I tired to port my application which was running fine on Redhat 8 > to redhat 9. My Application > spawns multiple threads. What I found interesting was thread were not > behaving as they were supposed to. > I am not sure do I have to do anything special about RedHat

Re: Installation problem

2003-11-20 Thread Timo
Sorry Sancha, forgot to mention it should be in the root directory, not WEB-INF in your case the file "index.jsp" should be in "C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\Sancha\index.jsp" Let me know if it works, good luck! don't forget to restart Tomcat! - Original Mess

Re: cannot access my web application (resource is not available)

2003-11-20 Thread Martin Monsorno
(Hmm, the mailing list server seems to have swallowed the message text part of my posting - here it is:) Hi *, after managing to install my web-app, I cannot access it with my browser. The installation is as follows: - I set CATALINA_BASE to a directory - created a conf/server.xml with the fo

Re: Is this a bug???

2003-11-20 Thread Rodrigo Ruiz
Do you have any other tomcat installed on the machine? I sometimes forget to set the correct value to my CATALINA_HOME / CATALINA_BASE environment variables ;-P Regards, Rodrigo Ruiz Gabriel Jenik wrote: Chris... Thanks for answering... Maybe that's the problem... I don't know...I am just sta

Re: How to convert SSL Certificates and Private Keys to Tomcat (JKS) format?

2003-11-20 Thread Bill Barker
@see http://www.comu.de/docs/tomcat_ssl.htm. The Tomcat 5 docs also include an example on how to do this using a jkcs12 file. "Raghu Karamel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi Experts, > > Need your help on figuring out how to do the following. > > I have the privat

Re: Installation problem

2003-11-20 Thread [EMAIL PROTECTED]
Hi Timo, Did as told. Copied your hello tomcat code created 'index.jsp', then saved it in 'C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\Sancha\WEB-INF' but when i tried 'http://127.0.0.1:8080/Sancha/' , i got the 404 http status error. Please help me to solve this problem. Th

Re: Where to find Tomcat RPMs?

2003-11-20 Thread Antony Paul
Check this http://marc.theaimsgroup.com/?l=tomcat-user&m=106639528807348&w=2 Antony Paul - Original Message - From: "Jens Ove Lillegraven" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, November 20, 2003 1:03 PM Subject: Where to find Tomcat RPMs? Hello

Re: Would this work? (Load Balance Question)

2003-11-20 Thread Antonio Fiol Bonnín
We do that, with a firewall in front of the Apache, and one behind it, in front of the TC and DB. BTW: It works ;-) Antonio Andreas Mohrig wrote: Dave, although I have never set up such a configuration, I have thought about it quite a lot. This is exactly the thing I would try and I'm pretty

Where to find Tomcat RPMs?

2003-11-20 Thread Jens Ove Lillegraven
Hello I cannot find any more rpm packets for Tomcat installation. I usually found them at http://jakarta.apache.org I've got 4.1.24. Is there any newer rpms for Tomcat 4.x, maybe for Tomcat 5.x? rpm are more suitable for our use than tar. Thanks Jens Ove

<    1   2