Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-09-03 Thread Suresh Kumar J
Haven't yet tried with Sun JRE. When I try setting the sslProtocol=ALL in server.xml, the tomcat error'd out the following in catalina.out: SEVERE: Error starting endpoint Throwable occurred: java.io.IOException: SSLContext ALL

Re: APR SSL not working

2008-09-03 Thread Gregor Schneider
Hi Filip, guess you're mixing things up: Since I'm using the APR (Apache Portable Runtime), according to http://tomcat.apache.org/tomcat-5.5-doc/apr.html, it has to be SSLEngine=on (check the HTTPS-Connector) The example given in the Tomcat-docs is Connector port=443

RE: Installing Multiple Instances on Windows Server 2003

2008-09-03 Thread Steve G.B.
Found the issue. I just needed a for cicle with millions of loops. There was only kernel calls that saturated CPU till 45-50%. A resource was waiting something. Don't know if it was the HDD or the network. I have to check. Thanks for the tip, Peter :) Peter Crowther wrote: From: Steve

Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-09-03 Thread Gregor Schneider
On Wed, Sep 3, 2008 at 8:20 AM, Suresh Kumar J [EMAIL PROTECTED] wrote: Am runing Harmony JRE in this case. Is this error related to Harmony JRE or Tomcat?. Suresh, sorry, but unfortunately my cristal ball is not available... Try it with the original SUN JDK - Not JRE and see if it works. I

[Possibly OT] Life after dojo, slow 'buggy' redeploy. Any experience here ?

2008-09-03 Thread Lyallex
Good Morning apache-tomcat-5.5.26 java 1.5.0_15 dojo 1.1.1 ant 1.7.0 I just bolted the dojo javascript libs into one of my web apps. I use the org.apache.catalina.ant.DeployTask and org.apache.catalina.ant.UndeployTask to redeploy my application from within an Ant script Before installing

Re: How to make to Apache-Tomcat 6.0.13 to support all of SSLv2/SSLv3 and TLS protocols

2008-09-03 Thread bhooshanpandit
This is surely an issue with Harmony JRE as it does not have the implementation that you are looking for. Switch to Sun JRE and re-verify. -Original Message- From: Suresh Kumar J [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Wed, 3 Sep 2008 11:50 am Subject:

Re: War re-deployment

2008-09-03 Thread emerson cargnin
Does anyone know how tomcat should work regarding to this? On 01/09/2008, emerson cargnin [EMAIL PROTECTED] wrote: Hi Johnny But the way every one understands is... drop the war into webapps... thats it. Its smart... if the war has changed TC will fix things... If you drop a war into

Etags vs Week Etags

2008-09-03 Thread Yoryos
Hi all, I don't know if I should be postting the the dev list but let's try from here. I'm trying to understand how the etag are being applying to the static resources. My problem is that I would like to get rid of the week etags, that tomcat is applying. After a little bit of searching I ended

Re: Question regarding FormAutenticator

2008-09-03 Thread H. Hall
Gregor Schneider wrote: Hi guys, I have quite a bit of a problem here. Status quo: We have some heavily framed static html, which now should be served by Tomcat (5.5) only via SSL. The whole content needs to be protected, so I've implemented a FormAuthenticator. However, the heavy framing

RE: Trying to build tomcat 6.0.18

2008-09-03 Thread Martin Gainty
Jack- did you take chucks advice and build with JDK 1.5 ? 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 confidential nature and

Suggest A Best Option

2008-09-03 Thread Amit Dixit
I want to listen at two ports in Tomcat 5.5. One is SSL enabled and another is unsecured port. Currently I have created two Services in Tomcat, Is it the best strategy or I can satisfy this requirement using one Tomcat Service only. Thanks, ~AmitD The information contained in this electronic

Re: Problem with JNDI environment entry resources

2008-09-03 Thread Paul Pepper
Thanks Chuck, I just tested this by creating a context element in its own file under conf/Catalina/localhost/jnditest.xml and that worked. (BTW, Tomcat 6 docs states that docBase is a valid attribute in this situation. It is only illegal when the Context/ element is defined within

Re: Problem with JNDI environment entry resources

2008-09-03 Thread Paul Pepper
Martin, Thanks for the suggestion, though I think there may have been some misunderstanding. I'm attempting to access a simple java.lang.String, not a DataSource. Environment/ elements are used to place String resources in an application's environment, not Resource/ elements, AFAIK. Paul.

RE: Problem with JNDI environment entry resources

2008-09-03 Thread Caldarale, Charles R
From: Paul Pepper [mailto:[EMAIL PROTECTED] Subject: Re: Problem with JNDI environment entry resources Tomcat 6 docs states that docBase is a valid attribute in this situation. I'll have to check the docs again. However, docBase is only legal when the webapp is stored outside of the Host

Re: User Directories and context.xml?

2008-09-03 Thread Paul Pepper
Tim, The META-INF/context.xml should be placed within your application's docBase. I suspect that is likely to be ~/public_html/myapp/META-INF, where ~/public_html/ is the appBase for the localhost (as you've described it) and ~/public_html/myapp is the docBase of your application. Paul.

RE: Problem with JNDI environment entry resources

2008-09-03 Thread Martin Gainty
i havent used JNDI to obtain string valuesBR i use ResourceBundle to obtain the locale specific string value e.g. myResources.getString(CancelKey);BR http://java.sun.com/j2se/1.4.2/docs/api/java/util/ResourceBundle.htmlBR anyoneBR MartinBR __

RE: Default application or HTML redirect

2008-09-03 Thread Mostafa Mossaad
Any ideas Konstantin? Any ideas Mark? Regards, Mostafa -Original Message- From: Mostafa Mossaad [mailto:[EMAIL PROTECTED] Sent: Monday, September 01, 2008 3:56 PM To: Tomcat Users List Subject: RE: Default application or HTML redirect I forgot to add that yes, I can access my

Re: Question regarding FormAutenticator

2008-09-03 Thread Gregor Schneider
Hi there, On Wed, Sep 3, 2008 at 1:50 PM, H. Hall [EMAIL PROTECTED] wrote: Assuming that your login form is a jsp, why don't you put something like this in it: if(isOKLogin ){ RequestDispatcher rd = request.getRequestDispatcher(/index.html); rd.forward(request, response);

Re: Suggest A Best Option

2008-09-03 Thread Gregor Schneider
On Wed, Sep 3, 2008 at 2:15 PM, Amit Dixit [EMAIL PROTECTED] wrote: I want to listen at two ports in Tomcat 5.5. One is SSL enabled and another is unsecured port. Currently I have created two Services in Tomcat, Is it the best strategy or I can satisfy this requirement using one Tomcat

Re: Problem with JNDI environment entry resources

2008-09-03 Thread Paul Pepper
I'll have to check the docs again. However, docBase is only legal when the webapp is stored outside of the Host appBase directory. Otherwise, you risk ending up with double deployment. I don't see docBase described that way in the docs - at this moment I'm referring to

Re: Problem with JNDI environment entry resources

2008-09-03 Thread David Smith
There's an implicit association based on the context path. myWebApp.xml in conf/Catalina/localhost is implicitly associated with the webapp myWebApp in the webapps directory, whether it be as a .war or expanded folder. Illegal may be a strong word -- it implies that tomcat will flat out

Re: Trying to build tomcat 6.0.18

2008-09-03 Thread Jack Woehr
Martin Gainty wrote: Jack- did you take chucks advice and build with JDK 1.5 ? Yes .. now I've got a different problem :) E.g., compile: [javac] Compiling 1047 source files to /usr/local/src/Apache/Tomcat/apache-tomcat-6.0.18-src/output/classes [javac]

Doubt with the tomcat configuration

2008-09-03 Thread marcos gonzalez
Hello! Im new installing tomcat 5.5 and I have problems. Im using A linux platform (debian etch) and when I put the sample code. the *.war archives where goes? I put there in /var/lib/tomcat5.5/webapps and apparently tomcats extracts the application, but when I want to access using

Re: Trying to build tomcat 6.0.18

2008-09-03 Thread Mark Thomas
Jack Woehr wrote: Martin Gainty wrote: Jack- did you take chucks advice and build with JDK 1.5 ? Yes .. now I've got a different problem :) Clean out the build area and start again. With a 1.5 JDK it should be as simple as ant download ant Mark

RE: Problem with JNDI environment entry resources

2008-09-03 Thread Caldarale, Charles R
From: Paul Pepper [mailto:[EMAIL PROTECTED] Subject: Re: Problem with JNDI environment entry resources Besides, I don't see any other documented way of associating each application with its associated Context/ element within server.xml. Because you're not supposed to put Context elements in

Re: Problem with JNDI environment entry resources

2008-09-03 Thread Paul Pepper
2008/9/3 David Smith [EMAIL PROTECTED]: There's an implicit association based on the context path. myWebApp.xml in conf/Catalina/localhost is implicitly associated with the webapp myWebApp in the webapps directory, whether it be as a .war or expanded folder. Yes, I agree that the docs read

RE: Doubt with the tomcat configuration

2008-09-03 Thread Martin Gainty
would need to see the mappings.. please display web.xml HTH 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 confidential nature and

Re: Trying to build tomcat 6.0.18

2008-09-03 Thread Jack Woehr
Mark Thomas wrote: Clean out the build area and start again. With a 1.5 JDK it should be as simple as ant download ant Awesome, that works. But in dist.xml is there a target called something like [EMAIL PROTECTED] ? :) -- Jack J. Woehr# Self-delusion is http://www.well.com/~jax

Re: Doubt with the tomcat configuration

2008-09-03 Thread marcos gonzalez
Please could you say me which? Im refer if can specify the path where I understand that is. And I see is biggest,any special part? Best regards 2008/9/3 Martin Gainty [EMAIL PROTECTED] would need to see the mappings.. please display web.xml HTH Martin

Re: Default application or HTML redirect

2008-09-03 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mostafa, Mostafa Mossaad wrote: Any ideas Konstantin? Any ideas Mark? How about posting your entire server.xml file? - -chris -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with Mozilla -

share SessionID in different webapps - same tomcat

2008-09-03 Thread Andrew Hole
Is it possible to share sessionID between webapps in the same tomcat? How can I find a demo or some JSP to simulate it? Thanks a lot A.C

Re: j_security_check get password on the request

2008-09-03 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 lmk, lmk wrote: Im using form based jaas authentication, I have to call a stored procedure with the user name and password to ininitialize some business objects! how can I get the password on the j_security_check request? can we use servlet

Re: User Directories and context.xml?

2008-09-03 Thread Tim J Schumacher
Hi Paul, Thanks for the reply. I'm not sure I understand, I was thinking my user's application IS public_html, are you saying i have to make a directory called something like /home/myUserName/public_html/ROOT and move everything into there? I put my WEB-INF and META-INF directly in my

Re: JDBCRealm.getRoles causes NullPointerException

2008-09-03 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Lloyd, DIGLLOYD INC wrote: MySQL 5.0.51b + mysql-connector-java-5.1.6-bin.jar Have you tried downgrading to a 5.0 version? It might be worth it to see if there is some weird problem with their new driver. The only clue I see in catalina.out is

Re: Problem with JNDI environment entry resources

2008-09-03 Thread David Smith
I'm out then. I'm fine with the way tomcat operates and don't feel anything in the way context xml files are associated with webapps is ambiguous. It's really simple: 1. If you just want to deploy a webapp and don't need to define any resources like db pools, just drop the webapp in the

Re: share SessionID in different webapps - same tomcat

2008-09-03 Thread Gregor Schneider
http://tomcat.apache.org/tomcat-5.5-doc/config/host.html Search for SingleSignOn Gregor -- what's puzzlin' you, is the nature of my game gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2 gpgp-key available @ http://pgpkeys.pca.dfn.de:11371

Re: Etags vs Week Etags

2008-09-03 Thread Johnny Kewl
- Original Message - From: Yoryos [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Wednesday, September 03, 2008 1:14 PM Subject: Etags vs Week Etags Hi all, I don't know if I should be postting the the dev list but let's try from here. I'm trying to understand how the etag are

Re: share SessionID in different webapps - same tomcat

2008-09-03 Thread Andrew Hole
Thanks. And how can I test this feature? Could you help to write a JSP sample? Thanks On Wed, Sep 3, 2008 at 5:58 PM, Gregor Schneider [EMAIL PROTECTED]wrote: http://tomcat.apache.org/tomcat-5.5-doc/config/host.html Search for SingleSignOn Gregor -- what's puzzlin' you, is the nature of

Re: JDBCRealm.getRoles causes NullPointerException

2008-09-03 Thread Mark Thomas
DIGLLOYD INC wrote: Aug 31, 2008 5:30:48 PM org.apache.catalina.connector.CoyoteAdapter service SEVERE: An exception or error occurred in the container during the request processing java.lang.NullPointerException at

Re: Etags vs Week Etags

2008-09-03 Thread Johnny Kewl
Suppose I need to explain what I would try... You in the code already so stealing the getLastMosified routing or whatever is easy.. If you map a servlet to say... /MyStaticStuff/*.jsp /MyStaticStuff/*.jpg That servlet will get all those requests... Then you rename your static resources

question

2008-09-03 Thread Jojo Nadir
hi how are you, I have a probleme in the installation process of tomcat 5.5 under Windows 98 (I have an old computer), it always get me a message containing the following files with some number like this : jvm.dll and 1329 prunsrv.c   thank you for your help, best regards.

Tomcat 6 (Unable to find servlet or load servlet jar from a client jar)

2008-09-03 Thread Robert K. Vanderhoek
Unable to find servlet or load servlet jar from a client jar, can this be done with the default conf files? Do i have to create a web.xml file for each webapp? I'm using jar files created for Apache Jserv back in 1998 probably using the servlet specification 2.1 could this be part of the

Problems with Context/

2008-09-03 Thread Paul Pepper
A discussion regarding the use of the Context/ element, within server.xml and $CATALINA_BASE/conf/[enginename]/[hostname]/, grew from a thread with subject Problem with JNDI environment entry resources: http://marc.info/?l=tomcat-userm=122045686313688w=2 In that thread the question seemed to boil

Re: share SessionID in different webapps - same tomcat

2008-09-03 Thread Andrew Hole
Cookies (like you see in this site) is a good solution? *http://www.fwd.at/tomcat/sharing-session-data-howto.html* On Wed, Sep 3, 2008 at 6:21 PM, Andrew Hole [EMAIL PROTECTED]wrote: Thanks. And how can I test this feature? Could you help to write a JSP sample? Thanks On Wed, Sep 3,

Re: Etags vs Week Etags

2008-09-03 Thread Yoryos
On Wed, Sep 3, 2008 at 8:12 PM, Johnny Kewl [EMAIL PROTECTED] wrote: Flipping good question... and I have a feeling that there is some philosophy in the answer... reasons for the way it done... The short answer is that you cant (I think)... the default servlet makes em weak (thats the

Re: Tomcat 6 (Unable to find servlet or load servlet jar from a client jar)

2008-09-03 Thread Pid
Robert K. Vanderhoek wrote: Unable to find servlet or load servlet jar from a client jar, can this be done with the default conf files? Do i have to create a web.xml file for each webapp? Yes, if you want to use servlets. web.xml provides the means to map the servlet(s) to url patterns. p

Re: Etags vs Week Etags

2008-09-03 Thread Johnny Kewl
- Original Message - From: Yoryos [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Wednesday, September 03, 2008 8:57 PM Subject: Re: Etags vs Week Etags On Wed, Sep 3, 2008 at 8:12 PM, Johnny Kewl [EMAIL PROTECTED] wrote: Flipping good question... and I have

Remote RSS Feeds

2008-09-03 Thread Barry Fawthrop
My very first JSP application (perhaps too much for my first app.) Trying setup and home portal page. That reads three remote RSS feeds (news, weather, etc...) It will work for the first few seconds and then stops. I have to restart the tomcat 6.0.18 server and then it all works again.. (1)

Re: Problems with Context/

2008-09-03 Thread Mark Thomas
Paul Pepper wrote: A discussion regarding the use of the Context/ element, within server.xml and $CATALINA_BASE/conf/[enginename]/[hostname]/, grew from a thread with subject Problem with JNDI environment entry resources: http://marc.info/?l=tomcat-userm=122045686313688w=2 In that thread

Re: Etags vs Week Etags

2008-09-03 Thread Johnny Kewl
- Original Message - From: Johnny Kewl [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Wednesday, September 03, 2008 9:51 PM Subject: Re: Etags vs Week Etags - Original Message - From: Yoryos [EMAIL PROTECTED] To: Tomcat Users List

RE: Remote RSS Feeds

2008-09-03 Thread Martin Gainty
take a look at this fairly intuitive tutorial at http://java.sun.com/developer/technicalArticles/javaserverpages/rss_utilities/ /WEB-INF/rssutils.tld WEB-INF/lib/rssutils.jar ? Martin __ Disclaimer and confidentiality note Everything in this e-mail

Re: Tomcat 6 (Unable to find servlet or load servlet jar from a client jar)

2008-09-03 Thread Robert K. Vanderhoek
Thank you for responding to the post. I have looked at the web.xml in the /usr/apache-tomcat-6.0.18/conf directory. I've tried creating my own web.xml under the /usr/apache-tomcat-6.0.18/webapps/belknap/WEB-INF directory which i will attach. It would be greatly appreciated if you have any

RE: Tomcat 6 (Unable to find servlet or load servlet jar from a client jar)

2008-09-03 Thread Martin Gainty
sample web.xmlBR ?xml version=1.0 encoding=ISO-8859-1?BR !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.3//EN http://java.sun.com/dtd/web-app_2_3.dtd;BR web-appBR display-nameTest for Rob/display-nameBR servletBR

Do context.xml Parameter value changes require Tomcat restart?

2008-09-03 Thread hanan herzog
Hello, I am using context.xml to configure my web application. But when I change values in the context.xml, the application does not see the changes, unless I restart tomcat: Setup: Tomcat 6.0.18 (from distribution tarball, unmodified, except as explained below) Linux (Fedora 9)

Re: Remote RSS Feeds

2008-09-03 Thread Barry Fawthrop
Martin Gainty wrote: take a look at this fairly intuitive tutorial at http://java.sun.com/developer/technicalArticles/javaserverpages/rss_utilities/ /WEB-INF/rssutils.tld WEB-INF/lib/rssutils.jar ? Martin __ Disclaimer and confidentiality

How do I know if my server is setup to accept SSL connections?

2008-09-03 Thread SStech
How do I know if my server is setup to accept SSL connections? If so, what port does it use? Thanks in advance for any asisstance. sstech -- View this message in context: http://www.nabble.com/How-do-I-know-if-my-server-is-setup-to-accept-SSL-connections--tp19298165p19298165.html Sent from

RE: How do I know if my server is setup to accept SSL connections?

2008-09-03 Thread Martin Gainty
take a look at the SSL documentation at http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html check to see if the SSL port is listening e.g. netstat -a | grep 8443 Martin __ Disclaimer and confidentiality note Everything in this e-mail and any

Re: Remote RSS Feeds

2008-09-03 Thread Barry Fawthrop
If it helps here is the 500 Error Message HTTP Status 500 - type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception org.apache.jasper.JasperException: java.lang.NullPointerException

Re: question

2008-09-03 Thread Steve Ochani
On 3 Sep 2008 at 10:36, Jojo Nadir wrote: hi how are you, I have a probleme in the installation process of tomcat 5.5 under Windows 98 (I have an old computer), it always get me a message containing the following files with some number like this : jvm.dll and 1329 prunsrv.c I seriously

Re: question

2008-09-03 Thread Mark Thomas
Steve Ochani wrote: On 3 Sep 2008 at 10:36, Jojo Nadir wrote: hi how are you, I have a probleme in the installation process of tomcat 5.5 under Windows 98 (I have an old computer), it always get me a message containing the following files with some number like this : jvm.dll and 1329

Re: question

2008-09-03 Thread Len Popp
Sun says that their Java 5 does run on Windows 98 SE - see here: http://java.sun.com/j2se/1.5.0/system-configurations.html Jojo, can you post the whole error message? The problem might be that the Microsoft C runtime lib is missing - or maybe not. -- Len On Wed, Sep 3, 2008 at 17:48, Steve

Re: User Directories and context.xml?

2008-09-03 Thread Paul Pepper
Hi Tim, You're right. Reading this: http://tomcat.apache.org/tomcat-6.0-doc/api/org/apache/catalina/startup/UserConfig.html and the doc you originally referenced, it looks as though your original assumption is true - I guess characteristics established by any DefaultContext would include

RE: Do context.xml Parameter value changes require Tomcat restart?

2008-09-03 Thread Caldarale, Charles R
From: hanan herzog [mailto:[EMAIL PROTECTED] Subject: Do context.xml Parameter value changes require Tomcat restart? I am using context.xml to configure my web application. Where is your context.xml located? It should be under the webapp's META-INF directory. The conf/context.xml file is

RE: Tomcat 6 (Unable to find servlet or load servlet jar from a clientjar)

2008-09-03 Thread Caldarale, Charles R
From: Robert K. Vanderhoek [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat 6 (Unable to find servlet or load servlet jar from a clientjar) I have looked at the web.xml in the /usr/apache-tomcat-6.0.18/conf directory. That's not a good example, since it contains settings shared by all webapps.

RE: Do context.xml Parameter value changes require Tomcat restart?

2008-09-03 Thread hanan herzog
Hi, I realize that conf/context.xml is not the place to put application settings as this file is for Tomcat-instance-wide settings. I tried putting the settings in context directories, e.g., conf/Catalina/localhost/context.xml.default . But changes to this did not get picked up either. These

RE: Do context.xml Parameter value changes require Tomcat restart?

2008-09-03 Thread Caldarale, Charles R
From: hanan herzog [mailto:[EMAIL PROTECTED] Subject: RE: Do context.xml Parameter value changes require Tomcat restart? I tried putting the settings in context directories, e.g., conf/Catalina/localhost/context.xml.default . But changes to this did not get picked up either. Hmmm... I just

RE: Trying to build tomcat 6.0.18

2008-09-03 Thread Caldarale, Charles R
From: Jack Woehr [mailto:[EMAIL PROTECTED] Subject: Re: Trying to build tomcat 6.0.18 package org.eclipse.jdt.core.compiler does not exist There has been some recent revision of the Eclipse web site that was making it difficult for a script to retrieve the JDT jar. However, I just tried it

RE: Do context.xml Parameter value changes require Tomcat restart?

2008-09-03 Thread hanan herzog
Hi, Yes, indeed Tomat does redeploy the app. That also gave me the warm and fuzzy feeling that it must be loading the relevant context.xml anew as well. But sadly, it does not pick up changes to context.xml, at least not changes to Parameter elements. Would you mind trying my little JSP out

RE: Do context.xml Parameter value changes require Tomcat restart?

2008-09-03 Thread hanan herzog
I just tried again. Well, the problems turns out to be more subtle. Changing Parameter values in appName.xml works: redeployment occurs, Parameter (InitParameter) values are updated as expected. However, changing values in context.xml.default still does not work, which was what was stumping me.

RE: Do context.xml Parameter value changes require Tomcat restart?

2008-09-03 Thread Caldarale, Charles R
From: hanan herzog [mailto:[EMAIL PROTECTED] Subject: RE: Do context.xml Parameter value changes require Tomcat restart? Changing Parameter values in appName.xml works: redeployment occurs, Parameter (InitParameter) values are updated as expected. Good, because that's what I found to be

RE: Do context.xml Parameter value changes require Tomcat restart?

2008-09-03 Thread hanan herzog
Two things still leave a bad taste: 1. If the new values are not going to be picked up from context.xml.default why does a change in conf/engine/host/context.xml.default or conf/context.xml cause a redeployment (without an update in Parameter values?) 2. I could have multiple engines

RE: Do context.xml Parameter value changes require Tomcat restart?

2008-09-03 Thread Caldarale, Charles R
From: hanan herzog [mailto:[EMAIL PROTECTED] Subject: RE: Do context.xml Parameter value changes require Tomcat restart? 1. If the new values are not going to be picked up from context.xml.default why does a change in conf/engine/host/context.xml.default or conf/context.xml cause a

Problems with running 64-bit Tomcat 6 as a Windows service

2008-09-03 Thread Brian Clark
Hello, I am trying to get Tomcat 6.0.18 to run on my Win2k3 x64 edition server. I basically did the same thing talked about here: http://markmail.org/message/kptleixb6duxgwhm but it didn't work for me. I didn't use the service.bat install though. I installed the service manually with the sc.exe

RE: Problems with running 64-bit Tomcat 6 as a Windows service

2008-09-03 Thread Caldarale, Charles R
From: Brian Clark [mailto:[EMAIL PROTECTED] Subject: Problems with running 64-bit Tomcat 6 as a Windows service I didn't use the service.bat install though. I installed the service manually with the sc.exe command. Is there any particular reason you avoided that rather critical step? -

RE: Default application or HTML redirect

2008-09-03 Thread Mostafa Mossaad
Hello Konstantin, I believe I've miss lead you. I'm not using IIS and Tomcat concurrently. What I mean is that I had an older version of this application that used to run on IIS *instead* of Tomcat. When I had the IIS application, I used to access my URL directly, without the

Monitor and report number of concurrent user

2008-09-03 Thread Nix Hanwei
Hi Gurus, May I know if there's scripts or suggestions for reporting concurrent user in tomcat? Thanks in advance, wannabe New Email names for you! Get the Email name you#39;ve always wanted on the new @ymail and @rocketmail. Hurry before someone else does!

RE: Default application or HTML redirect

2008-09-03 Thread Mostafa Mossaad
@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] __ Information from ESET NOD32 Antivirus, version of virus signature database 3412 (20080903) __ The message was checked by ESET NOD32 Antivirus. Email message - is OK http

response.sendRedirect and request.getQueryString

2008-09-03 Thread Kamal
Hi All, I am running two web apps (one in Tomcat 5.0.30 and another in Tomcat 5.5). The app running in Tomcat 5.0.30 calls the app in Tomcat 5.5 (uses Form Authentication ). We have a JSP page in Tomcat 5.0.30 app that authenticates and generates the jsessionid for the app running in Tomcat

Re: Problems with running 64-bit Tomcat 6 as a Windows service

2008-09-03 Thread Johnny Kewl
- Original Message - From: Brian Clark [EMAIL PROTECTED] To: Tomcat Users users@tomcat.apache.org Sent: Thursday, September 04, 2008 4:00 AM Subject: Problems with running 64-bit Tomcat 6 as a Windows service Hello, I am trying to get Tomcat 6.0.18 to run on my Win2k3 x64 edition

Re: Failed to install Tomcat5 service

2008-09-03 Thread shivi
Hey, Even i was struggling to resolve it n ur solution worked. Thanks!! Hez wrote: Hi! The problem is resolved by deleting Tomcat5 service from Windows XP and redo the Tomcat installation: 1) Start | Run and type cmd in the Open: Click OK. 2) Type: sc delete Tomcat5 3) Reboot the

Re: Monitor and report number of concurrent user

2008-09-03 Thread Leon Rosenberg
I think it depends on what you call user. Leon On Thu, Sep 4, 2008 at 6:18 AM, Nix Hanwei [EMAIL PROTECTED] wrote: Hi Gurus, May I know if there's scripts or suggestions for reporting concurrent user in tomcat? Thanks in advance, wannabe New Email names for you! Get the Email

Re: Trying to build tomcat 6.0.18

2008-09-03 Thread Jack Woehr
Caldarale, Charles R wrote: There has been some recent revision of the Eclipse web site that was making it difficult for a script to retrieve the JDT jar. Thanks, Charles, clean and rebuild worked. -- Jack J. Woehr# Self-delusion is http://www.well.com/~jax # half the battle!

Oracle PL/SQL in Boston-Hot-Hot-Hot

2008-09-03 Thread Anand Bandarupally
Hello partner, Please respond to [EMAIL PROTECTED] or [EMAIL PROTECTED] *Position : Oracle PL/SQL in Boston* *Location : Boston area (not downtown)* *Duration : 6 months* *Hourly rate : DOE* *Industry : Financial* We just received this position for our client in the *Boston* area (not