Re: Clusterning tomcat app server for production use

2012-09-11 Thread Ashish Kulkarni
HI Which one is better for clustering tomcat in production environment - mod_jk the classic Apache/Tomcat module - mod_proxy another Apache module On Tue, Sep 11, 2012 at 9:07 AM, Mark Thomas ma...@apache.org wrote: Ashish Kulkarni ashish.kulkarn...@gmail.com wrote: Hi I

Re: Error configuring JNDIRealm in tomcat 6.0.2 in eclipse, trying to connect to localhost:389

2012-02-14 Thread Ashish Kulkarni
Hi Thanks very much, as i removed extra n it worked fine, On Tue, Feb 14, 2012 at 4:48 PM, Konstantin Kolinko knst.koli...@gmail.comwrote: 2012/2/15 Ashish Kulkarni ashish.kulkarn...@gmail.com: I am trying to configure JNDIRealm in tomcat running as eclipse plugin, so i copied ldap.jar

Re: Error configuring JNDIRealm in tomcat 6.0.2 in eclipse, trying to connect to localhost:389

2012-02-14 Thread Ashish Kulkarni
I have another question, how can i configure in web.xml so that all roles has authority to login, then in my application i control what is displayed to the user? Ashish On Tue, Feb 14, 2012 at 5:11 PM, Ashish Kulkarni ashish.kulkarn...@gmail.com wrote: Hi Thanks very much, as i removed extra

Re: Certificate issued by GeoTrust Global CA is not appearing at client browser's side

2011-11-17 Thread Ashish Kulkarni
I had to deal with this issue in Websphere, got Thwate certificate and no matter what i was not able to get the primary and secondary certificate to work in IE browser, only in Firefox and chrome, finally i got a certificate from Verisign and it works well in IE and chrome but not in firefox, this

Re: ODBC jar files

2011-10-20 Thread Ashish Kulkarni
If there are common classes it will be very hard to tell which one will be loaded by class loader check this document, http://tomcat.apache.org/tomcat-6.0-doc/class-loader-howto.html On Thu, Oct 20, 2011 at 3:00 PM, Propes, Barry L barry.l.pro...@citi.comwrote: Sorry for any confusion there

Re: Save session information in Memory database

2011-09-09 Thread Ashish Kulkarni
...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ashish, On 9/8/2011 2:17 PM, Ashish Kulkarni wrote: Has anyone configured tomcat to save session information in memory database like java DB or hsqldb, I'm sure it can be done, as Tomcat provides

Re: Save session information in Memory database

2011-09-09 Thread Ashish Kulkarni
database instead or conventional database Regards Ashish On Fri, Sep 9, 2011 at 10:50 AM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Ashish Kulkarni [mailto:ashish.kulkarn...@gmail.com] Subject: Re: Save session information in Memory database What do you mean it will slow

Re: Save session information in Memory database

2011-09-09 Thread Ashish Kulkarni
could save session information in a database instead of in heap it would work, and so in memory database and it would be faster to access then regular DB2 database So any ideas Ashish On Fri, Sep 9, 2011 at 12:46 PM, Pid p...@pidster.com wrote: On 09/09/2011 15:58, Ashish Kulkarni wrote: Hi

Re: Save session information in Memory database

2011-09-09 Thread Ashish Kulkarni
: From: Ashish Kulkarni ashish.kulkarn...@gmail.com To: Tomcat Users List users@tomcat.apache.org Sent: Friday, September 9, 2011 11:38 AM Subject: Re: Save session information in Memory database Hi I have inherited this application, and it was developed this way, i dont have time and resources

calling HTTPS URL from tomcat in eclipse fails with unable to find valid certification path to requested target Error

2011-09-09 Thread Ashish Kulkarni
Hello I have an web application which i am running in tomcat in eclipse, this web application calls a Web Service to get data, recently we moved these Web services to use HTTPS, but when i try to call this HTTPS URL from web service i get following error I have created a key store, added it to

Re: calling HTTPS URL from tomcat in eclipse fails with unable to find valid certification path to requested target Error

2011-09-09 Thread Ashish Kulkarni
Hi It worked, i added following lines in tomcat configuration -Djavax.net.ssl.trustStore=C://mypath_to_keystore/keys.jks Ashish On Fri, Sep 9, 2011 at 3:25 PM, Ashish Kulkarni ashish.kulkarn...@gmail.com wrote: Hello I have an web application which i am running in tomcat in eclipse

How to set start up sequence of application in tomcat

2010-09-15 Thread Ashish Kulkarni
Hi I have deployed 3 applications in tomcat, is there a way to setup startup sequence of these applications in tomcat, for example if i have test, test1, test2 as application then i would like to start test2 first, test1 second and test last, as test needs some information from test1. Any ideas

Re: How to set start up sequence of application in tomcat

2010-09-15 Thread Ashish Kulkarni
Hi So there is no way of doing it through tomcat, how can i do it? Ashish On Wed, Sep 15, 2010 at 3:47 PM, Mark Thomas ma...@apache.org wrote: On 15/09/2010 20:43, Ashish Kulkarni wrote: Hi I have deployed 3 applications in tomcat, is there a way to setup startup sequence

Re: How to retrieve persisted session

2010-07-20 Thread Ashish Kulkarni
, On 7/19/2010 4:48 PM, Ashish Kulkarni wrote: Is there a way i can save this session cookie, so i can access it later? is it possible Set the maxAge of the session to something other than -1 (the default, which means this cookie will die when the browser shuts down). How does yahoo or gmail

Re: How to retrieve persisted session

2010-07-20 Thread Ashish Kulkarni
Schultz ch...@christopherschultz.net wrote: Ashish, On 7/19/2010 4:48 PM, Ashish Kulkarni wrote: Is there a way i can save this session cookie, so i can access it later? is it possible Set the maxAge of the session to something other than -1 (the default, which means

How to retrieve persisted session

2010-07-19 Thread Ashish Kulkarni
Hi I have configured my tomcat to save session in database as per documentation, and it works as expected i can see the session is saved in database, Now if the user closes the browser, and then reopens i dont want to show the login screen but get the session from database and go to the last

Re: How to retrieve persisted session

2010-07-19 Thread Ashish Kulkarni
Hi Is there a way i can save this session cookie, so i can access it later? is it possible How does yahoo or gmail keep me signed on for 2-3 days Ashish On Mon, Jul 19, 2010 at 4:43 PM, Mark Thomas ma...@apache.org wrote: On 19/07/2010 20:48, Ashish Kulkarni wrote: Hi I have configured my

Re: tomcat datasource, find active connections

2010-07-12 Thread Ashish Kulkarni
...@pidster.com wrote: On 09/07/2010 20:03, Ashish Kulkarni wrote: Hi I have following in context.xml, and it works fine. But i would like to find how many active connections are there in data source or how many total connections are there? 1 is it possible to do so? 2 Can i change type

tomcat datasource, find active connections

2010-07-09 Thread Ashish Kulkarni
Hi I have following in context.xml, and it works fine. But i would like to find how many active connections are there in data source or how many total connections are there? 1 is it possible to do so? 2 Can i change type javax.sql.DataSource to com.ibm.as400.access.AS400JDBCDataSource, as this

Re: Configure tomcat in my development environment, and save session across restart

2010-02-17 Thread Ashish Kulkarni
, there are no objects in session class. Ashish On Tue, Feb 16, 2010 at 4:44 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ashish, On 2/16/2010 4:35 PM, Ashish Kulkarni wrote: I use tomcat 5.5.28 for my development in eclipse, when ever i

Re: Configure tomcat in my development environment, and save session across restart

2010-02-17 Thread Ashish Kulkarni
? Context docBase=C:/akulkarni/code/workspace_3.5/myapp/WebContent/ path=/myapp reloadable=true /Context On Wed, Feb 17, 2010 at 4:03 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ashish, On 2/17/2010 3:32 PM, Ashish Kulkarni

Configure tomcat in my development environment, and save session across restart

2010-02-16 Thread Ashish Kulkarni
Hi I use tomcat 5.5.28 for my development in eclipse, when ever i change any class it restarts my tomcat and i loose my session, so i have to go through login process to get the session. Is it possible to save this session across restarts, it would be great and save me a lot of time in development

how to configure tomcat 5.5.28 or tomcat 6.0 and apache 2.2

2010-02-09 Thread Ashish Kulkarni
Hi Is there any document showing how to configure apache 2.2 with tomcat 5.5.28 or tomcat 6.0 -- Ashish www.ayurwellness.com www.mysoftwareneeds.com

Re: how to configure tomcat 5.5.28 or tomcat 6.0 and apache 2.2

2010-02-09 Thread Ashish Kulkarni
Thanks, got it working On Tue, Feb 9, 2010 at 3:32 PM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Ashish Kulkarni [mailto:ashish.kulkarn...@gmail.com] Subject: how to configure tomcat 5.5.28 or tomcat 6.0 and apache 2.2 Is there any document showing how to configure

Re: save session information

2010-02-03 Thread Ashish Kulkarni
Hi Is there any document which explains how to do so Ashish On Wed, Feb 3, 2010 at 1:49 AM, Mark Thomas ma...@apache.org wrote: On 03/02/2010 05:28, Ashish Kulkarni wrote: Hi Is it possible with tomcat to save session information in database or some where which can be retrieved after

Error starting static Resources, With Network drive

2008-04-09 Thread Ashish Kulkarni
Hi I am running tomcat on Windows XP, i have mapped a network drive to this PC running Tomcat. Under \conf\Catalina\localhost i created a xml file for specifying document root This XML file contains following code ?xml version='1.0' encoding='utf-8'? Context crossContext=true path=/myproject

Re: Error starting static Resources, With Network drive

2008-04-09 Thread Ashish Kulkarni
Hi I did try docBase as //mydrive/test/myproject/WebRoot where k drive is mapped to //mydrive/test, but i still get the same error Is there a specific way to define UNC path in docbase? Ashish On 4/9/08, Mark Thomas [EMAIL PROTECTED] wrote: Ashish Kulkarni wrote: What may be the reason

Re: Run multiple instances of tomcat on windows

2007-06-24 Thread Ashish Kulkarni
PROTECTED] wrote: On 6/23/07, Ashish Kulkarni [EMAIL PROTECTED] wrote: Hi I want to run 2 instance of tomcat on windows server, both of them are 5.5.20, 1. Is it possible to have them as 2 services so i can stop and start them independently? yes, each instance run its own service. 2. Do

Run multiple instances of tomcat on windows

2007-06-23 Thread Ashish Kulkarni
Hi I want to run 2 instance of tomcat on windows server, both of them are 5.5.20, 1. Is it possible to have them as 2 services so i can stop and start them independently? 2. Do i have to install it twice? 3. Can i use java 1.4.2 for one and java 1.5.0 for other 4. I can setup one tomcat as