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 wrote: > > > Ashish Kulkarni wrote: > > >Hi > >I was looking into cl

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,

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 wrote: > 2012/2/15 Ashish Kulkarni : > > I am trying to configure JNDIRealm in tomcat running as eclipse plugin, > so > > i copied ldap.jar in to lib folder, then m

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 wrote: > Sorry for any confusion there - I meant tomcat/lib, n

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 wrote: > Hello > > I have an web application which i am running in tomcat in eclipse, this web > appli

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 to

Re: Save session information in Memory database

2011-09-09 Thread Ashish Kulkarni
Hi I will look into Ehcache, but will this manage data we save in session, because i dont have time to change code, but try to move the session data out of tomcat, and into a database, Ashish On Fri, Sep 9, 2011 at 2:52 PM, Bob Hall wrote: > > > Fro

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 wrote: > On 09/09/2011 15:58, Ashish Kulkarni wrote: > > Hi &g

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 > &g

Re: Save session information in Memory database

2011-09-09 Thread Ashish Kulkarni
ch...@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

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 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 of

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 retrieve persisted session

2010-07-20 Thread Ashish Kulkarni
Hi I am using the default, how do i set session expiry time, i can think of only 1 place that is in web.xml -1 Is there any other way On Tue, Jul 20, 2010 at 10:25 AM, Pid wrote: > On 20/07/2010 14:58, Ashish Kulkarni wrote: > > Hi > > Where do i set this max age for

Re: How to retrieve persisted session

2010-07-20 Thread Ashish Kulkarni
; Hash: SHA1 > > 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 &

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 wrote: > On 19/07/2010 20:48, Ashish Kulkarni wrote: > > Hi > > I have configur

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 visite

Re: tomcat datasource, find active connections

2010-07-12 Thread Ashish Kulkarni
Hi Where do i specify data source factory? i have following setup On Fri, Jul 9, 2010 at 5:42 PM, Pid 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 con

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 has

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

2010-02-17 Thread Ashish Kulkarni
:03 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Ashish, > > On 2/17/2010 3:32 PM, Ashish Kulkarni wrote: > > Is it possible to find from log files or some where, what is preventing > from > &

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

2010-02-17 Thread Ashish Kulkarni
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 m

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

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 the

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: 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 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

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: > >

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 WhereK:\\myproject\WebRoot\\ is the network drive, I am getting following error w

Re: Run multiple instances of tomcat on windows

2007-06-24 Thread Ashish Kulkarni
AIL 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?

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 startup