Re: Deployment Web App on Debian

2008-11-07 Thread Zaki Akhmad
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, Nov 7, 2008 at 2:32 PM, Leon Rosenberg wrote: you should also check which java version is installed. If its not suns - remove it. Done that. [EMAIL PROTECTED]:~$ java -version java version 1.6.0_07 Java(TM) SE Runtime Environment (build

Sol 10/apache2.0.49/tomcat 5.5.17 - Assertion failed

2008-11-07 Thread Mark D'Amara
Hi. We had a crash of tomcat across 11 independent Solaris 10 servers all within a 3 day period and all with the same error: Assertion failed: jFieldID != 0, file ../../../../src/share/native/sun/security/pkcs11/wrapper/p11_convert.c, line 373 Servers are running: SunOS 5.10 Generic_118833-24

Re: Deployment Web App on Debian

2008-11-07 Thread Marcus Better
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Zaki Akhmad wrote: But how do I do it on Debian GNU/Linux? Drop the WAR file in /var/lib/tomcat5.5/webapps. It should auto-deploy. Cheers, Marcus -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux)

Deadlocks with Oracle

2008-11-07 Thread Mikolaj Rydzewski
Hi, I have following setup: Tomcat 5.5.23 with Oracle database 10.2.0.1.0 with DataSource defined as: Resource name=jdbc/db auth=Container type=javax.sql.DataSource maxActive=50 maxIdle=10 maxWait=1 validationQuery=select sysdate from dual testOnBorrow=true username=x password=x

Re: migrating from Tomcat 5.5.x to Tomcat 6.0.x

2008-11-07 Thread David Smith
As long as your webapp conforms to the servlet spec, it should just plain work in tomcat 6. Setup a test install and try it out. --David rajesh202023 wrote: Hi, I want to replace Tomcat 5.5.x running in my system with Tomcat 6.0.x. I want to do this in a manner such that the applications

Re: Deployment Web App on Debian

2008-11-07 Thread Kevin Jackson
Do you have the JDK installed or just the jre? Remember tomcat really needs a jdk to compile jsps Kev - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Exploded war folder becomes corrupt

2008-11-07 Thread Mikolaj Rydzewski
Mikolaj Rydzewski wrote: I have added following attribues to |META-INF/context.xml and it helped: ||unpackWAR=false ||antiJARLocking=true ||antiResourceLocking=true | Sorry for some strange characters, correct line is: unpackWAR=false antiJARLocking=true antiResourceLocking=true Please

Re: Deployment Web App on Debian

2008-11-07 Thread Markus Schönhaber
Kevin Jackson: Do you have the JDK installed or just the jre? Remember tomcat really needs a jdk to compile jsps No, it doesn't. A JRE is enough for modern Tomcat versions - at least this is true for the official builds from Apache. Regards mks

Re: Exploded war folder becomes corrupt

2008-11-07 Thread Mikolaj Rydzewski
Kenneth Westelinck wrote: Deleting the exploded war folder and restarting Tomcat resolves this issue ... but this is not an ideal situation of course. This error ocurs on my client's machine. I was not able to reproduce this on our local development machine. The client's machine is running

Exploded war folder becomes corrupt

2008-11-07 Thread Kenneth Westelinck
Dear list, I have an application (ApplicationA) running on Tomcat 6.0.16. Occasionally, when Tomcat is restarted, the contents of the folder where the exploded war resides becomes corrupt. I.e. jars that can be found underneath tomcat/webapps/ProjectA/WEB-INF/lib are removed, resulting in

Re: Tomcat clustering

2008-11-07 Thread Anupam Beri
Hello All , I am a newbie to the Tomcat and Tomcat clustering environment .I was just going through some posts on this forum for reference . I wish to deploy the classic JPetStore application which comes with the Spring framework in the clustered environment involving 2

RE: Sol 10/apache2.0.49/tomcat 5.5.17 - Assertion failed

2008-11-07 Thread Caldarale, Charles R
From: Mark D'Amara [mailto:Mark.D'[EMAIL PROTECTED] Subject: Sol 10/apache2.0.49/tomcat 5.5.17 - Assertion failed We had a crash of tomcat across 11 independent Solaris 10 servers all within a 3 day period and all with the same error: Assertion failed: jFieldID != 0, file

Re: a cookie question of one Server with two tomcat server

2008-11-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bon, Bon wrote: the logout Servlet will do something as following: 1. set the cookies maxAge to 0 and add them into response again. cookie.setMaxAge(0); response.addCookie(cookie); 2. set the session to invalidate

Re: Sol 10/apache2.0.49/tomcat 5.5.17 - Assertion failed

2008-11-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mark, Mark D'Amara wrote: Hi. We had a crash of tomcat across 11 independent Solaris 10 servers all within a 3 day period and all with the same error: Assertion failed: jFieldID != 0, file

Re: WARNING: User database is not persistable - no write permissions on directory

2008-11-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dimas, Dimas wrote: I've installed an Ubuntu Server 8.10 with the Tomcat6 package. When I start it this msg appears on the Catalina log: WARNING: User database is not persistable - no write permissions on directory Do you know why? My guess

Re: Tomcat Native library for Windows

2008-11-07 Thread Serge Fonville
Could you post your server xml (excluding comments) since I have the same situation working fine. On Fri, Nov 7, 2008 at 11:51 AM, zmeeagain [EMAIL PROTECTED] wrote: What I failed to report is that, now that the AprLifecycleListener is initialised and the library is loaded, I can't access

WARNING: User database is not persistable - no write permissions on directory

2008-11-07 Thread Dimas
Hi, I've installed an Ubuntu Server 8.10 with the Tomcat6 package. When I start it this msg appears on the Catalina log: WARNING: User database is not persistable - no write permissions on directory Do you know why? Anyway the Tomcat starts OK, but when I deploy an application

Re: Deployment Web App on Debian

2008-11-07 Thread David Smith
As written in the tomcat 5.5 RUNNING.txt file: Out of the box, Tomcat 5.5 requires the Java 2 Standard Edition Runtime Environment (JRE) version 5.0 or later. The OP really should post log information related to deploying their webapp on Debian. --David Kevin Jackson wrote: Do you have the

Re: Deployment Web App on Debian

2008-11-07 Thread Zaki Akhmad
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, Nov 7, 2008 at 7:57 PM, Kevin Jackson wrote: Do you have the JDK installed or just the jre? Remember tomcat really needs a jdk to compile jsps Yes I have. I have succesfully deploy sample.war from Tomcat example. But my own web

RE: Deadlocks with Oracle

2008-11-07 Thread Martin Gainty
Mikolaj Are you using the DBCP 1.2.2 distro as Filip suggested? Dziekuje/ Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a

Re: mod_jk 1.2.27 use_server_errors extension not working here

2008-11-07 Thread Rainer Jung
Please open an issue in Bugzilla. Sebastian schrieb: Hello, I'm in the process of integrating Tomcat with Apache httpd using the mod_jk Tomcat Connector. The just released mod_jk 1.2.27 seems to provide a solution for one of my open issues: the ability to use httpd's ErrorDocument instead

Re: Deadlocks with Oracle

2008-11-07 Thread Mikolaj Rydzewski
Martin Gainty wrote: Are you using the DBCP 1.2.2 distro as Filip suggested? Filip? Am I missing any emails from list? I use Tomcat 5.5.23. -- Mikolaj Rydzewski [EMAIL PROTECTED] - To start a new topic, e-mail:

Lambda Probe is back

2008-11-07 Thread Mark Thomas
Folks, I have been mentioning Lambdaprobe and its disappearance at ApacheCon and one of the attendees pointed out it is back. I don't believe the url has changed but for completeness: http://www.lambdaprobe.org/d/index.htm Mark

clustering

2008-11-07 Thread John Coleman
Hi, I am trying to set up load balancing and clustering, but whenever I put in a request to the lb server I get: java.lang.IllegalArgumentException: Required property mcastClusterDomain is missing. at org.apache.catalina.cluster.mcast.McastService.hasProperty(McastService. java:253)

Re: clustering

2008-11-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John, John Coleman wrote: I am trying to set up load balancing and clustering, but whenever I put in a request to the lb server I get: java.lang.IllegalArgumentException: Required property mcastClusterDomain is missing. Seems pretty

Re: Tomcat Native library for Windows

2008-11-07 Thread zmeeagain
My server.xml: http://www.nabble.com/file/p20379495/server.xml server.xml Serge Fonville wrote: Could you post your server xml (excluding comments) since I have the same situation working fine. On Fri, Nov 7, 2008 at 11:51 AM, zmeeagain [EMAIL PROTECTED] wrote: What I failed to

Re: Tomcat Native library for Windows

2008-11-07 Thread zmeeagain
What I failed to report is that, now that the AprLifecycleListener is initialised and the library is loaded, I can't access Tomcat anymore!!! Hitting localhost:8080 gives me (Firefox): Connection Interrupted The document contains no data. The network link was interrupted while negotiating a

Re: Lambda Probe is back

2008-11-07 Thread Mark Thomas
Christopher Schultz wrote: Mark, Mark Thomas wrote: I have been mentioning Lambdaprobe and its disappearance at ApacheCon and one of the attendees pointed out it is back. Woo hoo! +1 Any word on what the problem was? No idea. Sorry. Mark

Re: Lambda Probe is back

2008-11-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mark, Mark Thomas wrote: I have been mentioning Lambdaprobe and its disappearance at ApacheCon and one of the attendees pointed out it is back. Woo hoo! Thanks for bringing it to everyone's attention. Any word on what the problem was? - -chris

Re: Tomcat Native library for Windows

2008-11-07 Thread Serge Fonville
I looked at your server.xml and compared it to mine. I see no difference that would cause this.I use tomcat 6.0.18 with JDK 5 Have you set all variables correctly JAVA_HOME,CATALINA_HOME,PATH Did you use the x64 tomca6.exe and tomcat6w.exe Have you tried other browsers (ie,opera,chrome,mozilla)

mod_jk 1.2.27 use_server_errors extension not working here

2008-11-07 Thread Sebastian
Hello, I'm in the process of integrating Tomcat with Apache httpd using the mod_jk Tomcat Connector. The just released mod_jk 1.2.27 seems to provide a solution for one of my open issues: the ability to use httpd's ErrorDocument instead of Tomcat's default error pages or error-page definitions

Re: Deployment Web App on Debian

2008-11-07 Thread Zaki Akhmad
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Or maybe I misconfigure tomcat? There are something I miss? Here's the error[1] - -za, [1]error HTTP Status 500 - type Exception report message description The server encountered an internal error () that prevented it from fulfilling this

Re: Deployment Web App on Debian

2008-11-07 Thread David Smith
java.security.AccessControlException: access denied (java.util.PropertyPermission org.apache.tapestry.enable-reset-service read) java.security.AccessControlContext.checkPermission(AccessControlContext.java:323) Your tomcat is running with the security manager. You'll have to configure

absolute url only working - urget hel p needed

2008-11-07 Thread Srinivas Jonnalagadda
Hi, I need urget help configuring Apache HTTP Server 2.0.63, Tomact 5.5.9 and mod_jk1.2.26. Now i am inable to access with relative url and unless i give absolut servre name with port. For Example: http://serverhostname.ebiz.com:8080/kanaCallBack/ssoCallback.jsp then i am able to access. If i

Re: absolute url only working - urget hel p needed

2008-11-07 Thread Rainer Jung
Srinivas Jonnalagadda schrieb: I need urget help configuring Apache HTTP Server 2.0.63, Tomact 5.5.9 and mod_jk1.2.26. Now i am inable to access with relative url and unless i give absolut servre name with port. For Example: http://serverhostname.ebiz.com:8080/kanaCallBack/ssoCallback.jsp

Problem with connectors

2008-11-07 Thread Martin Spinassi
I've been trying to implement apache2 + connectors + tomcat on our servers, put keep having disconnections from connectors and tomcat. Here I post some output from jk_mod_log: own, stopped or network problems (errno=110) [Fri Nov 07 16:32:18.585 2008] [31998:670424352] [error]

Re: Problem with connectors

2008-11-07 Thread Rainer Jung
Martin Spinassi schrieb: I've been trying to implement apache2 + connectors + tomcat on our servers, put keep having disconnections from connectors and tomcat. Here I post some output from jk_mod_log: own, stopped or network problems (errno=110) [Fri Nov 07 16:32:18.585 2008]

Re: absolute url only working - urget hel p needed

2008-11-07 Thread André Warnier
Rainer Jung wrote: Srinivas Jonnalagadda schrieb: I need urget help configuring Apache HTTP Server 2.0.63, Tomact 5.5.9 and mod_jk1.2.26. Now i am inable to access with relative url and unless i give absolut servre name with port. For Example:

Re: Lambda Probe is back

2008-11-07 Thread supareno
Mark , the demo didn't work :-( http://demo.lambdaprobe.org/probe/index.htm : internal server error supareno Christopher Schultz wrote: Mark, Mark Thomas wrote: I have been mentioning Lambdaprobe and its disappearance at ApacheCon and one of the attendees pointed out it is back.

[Fwd: [Announce] Call For Papers opens for ApacheCon US 2009]

2008-11-07 Thread Mark Thomas
If you have only 30 seconds to read this; Join us in celebrating the ASF's 10th Anniversary at ApacheCon! The Call for Papers is now open for ApacheCon US 2009, taking place 2-6 November in Oakland, California. Proposals are being accepted at http://us.apachecon.com/c/acus2009/cfp/ and can be

Re: Deadlocks with Oracle

2008-11-07 Thread Juha Laiho
Mikolaj Rydzewski wrote: I have following setup: Tomcat 5.5.23 with Oracle database 10.2.0.1.0 ... There are several webapps deployed. After some time, depending on usage, applications get stucked - I mean every request that needs database connection hangs. Thread dump looks ALWAYS the same:

manifest error loading portlets (liferay)

2008-11-07 Thread Bhatti, Shahzad
I am using Tomcat 5.5 with Liferay 5.1 and I am getting following error when deploying some portlets. I didn't see any liferay or my application code in the stack trace. Has anyone seen something like this or suggest something. Also, I am not sure where it's getting xerciesImpl... because I

RE: manifest error loading portlets (liferay)

2008-11-07 Thread Caldarale, Charles R
From: Bhatti, Shahzad [mailto:[EMAIL PROTECTED] Subject: manifest error loading portlets (liferay) I am using Tomcat 5.5 with Liferay 5.1 and I am getting following error when deploying some portlets. The code in question is scanning the META-INF/MANIFEST.MF entries in each jar in your

Re: [cluster] httpd Loadbalancer issue

2008-11-07 Thread Rainer Jung
János Löbb schrieb: Hi, I have three machines with three different FQDN. Two has apache 2.2.9 on it with Tomcat 6.0.18 and with mod_jk. From this two one has three Tomcat instances running and it is a Mac, the other has one Tomcat instance and it is a PC. I use a web application for

Re: Tomcat Logging Wrong time in tomcat logs

2008-11-07 Thread carrieg
Hi - I am having the same problem. Did you figure it out? Mon Cab wrote: Good day I am not sure why but tomcat seems to have started logging the incorrect time in logs. My server is on PDT, and tomcat is logging 8 hours ahead in the logs (GMT). Eg when it is 2008-01-28 20:53