Re: [Commercial] Part time developer - Delhi / noida

2011-01-03 Thread Vivek Mohan
Hi Abhishek, Wish you a happy new year. Did you get any one for this requirement of yours? -- vivek. On Sun, Dec 26, 2010 at 6:28 PM, abhishek jain wrote: > Hello , > I am looking for a part time developer for java with struts and hibernate > and a good knowledge of mysql preferably open to vis

Re: Delete Tomcat logs

2007-08-22 Thread Vivek Mohan
; Hash: SHA1 > > Vivek, > > Vivek Mohan wrote: > > Is there a way to delete tomcat logs which are "older" than 5 days? > > You could configure Tomcat to use log4j instead of juli and use a > DailyRollingFileAppender -- it will generate a new file every day and >

Re: Delete Tomcat logs

2007-08-22 Thread Vivek Mohan
Is there a way to delete tomcat logs which are "older" than 5 days? On 8/22/07, Peter Stavrinides <[EMAIL PROTECTED]> wrote: > You might want to truncate, 'not delete', instead. > > David Smith wrote: > > AFAIK, this won't work on Windows unless you stop tomcat before and > > restart tomcat after.

Re: java:comp/UserTransaction NameNotFoundException Tomcat 5.0.28

2006-07-24 Thread Vivek Mohan
sorry, I meant, "java:comp/env/UserTransaction" -- Vivek. On 7/24/06, Vivek Mohan <[EMAIL PROTECTED]> wrote: try using java:comp/env.UserTransaction for JNDI lookup. -- Vivek. On 7/24/06, Seetha Rao <[EMAIL PROTECTED]> wrote: > Hi I'm using JOTM for transaction

Re: java:comp/UserTransaction NameNotFoundException Tomcat 5.0.28

2006-07-24 Thread Vivek Mohan
try using java:comp/env.UserTransaction for JNDI lookup. -- Vivek. On 7/24/06, Seetha Rao <[EMAIL PROTECTED]> wrote: Hi I'm using JOTM for transaction management with Tomcat 5.0.28. I have all the required jar files as given in http://jotm.objectweb.org/current/jotm/doc/howto-tomcat-jotm.html T

best transaction manager and connection pool for tomcat

2006-05-30 Thread Vivek Mohan
Hi all, I'm using Tomcat 4 for my web application (don't ask me the reason why) and I was trying to evaluate different transaction managers and connection pool managers. The db is on MS Sql Server 2000. We've tried using JOTM + XAPool but we've run into a lot of connection closure issues. Is the

Re: stylesheets giving 404 after a long response time

2006-05-09 Thread Vivek Mohan
server in front of it? I'm wondering if session timeout isn't playing role somehow (not sure how it would, but with a request time that long, not very much would surprise me). Frank Vivek Mohan wrote: > Hi People, > > I've an application running on tomcat 4.1. In one parti

stylesheets giving 404 after a long response time

2006-05-09 Thread Vivek Mohan
Hi People, I've an application running on tomcat 4.1. In one particular request, I could find that the server response takes a long time, say around 20 minutes, and when the page comes back all the stylesheets and header jsps are missing from the page. If I check my access logs, I see a 404 respo

Re: Tomcat 4.1.24 - Out of memory

2006-04-25 Thread Vivek Mohan
First guess, there are many memory leaks in your application...things like unclosed connections and all... Did you check on those? -- Vivek. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

Passing data across Tomcat installations

2006-04-25 Thread Vivek Mohan
HI All, Is there a way to pass data (as sensitive as usrname) from one tomcat to another? To be more precise, I've an entry point server(Tomcat server), which shows links to many other other Tomcat installations. The user authenticates on the entry point server and then sees several links (to ot

Re: is there a possibility to define the startup order for webapps?

2006-04-24 Thread Vivek Mohan
I believe that the loading of webapps is based on the order of the webapp folders (or war files) coming into the purview of the tomcat webapp loader. This is mostly in the order the OS lists the files/folders within the webapps folder. I think you can experiment with changing the name of the datab

Re: Tomcat embedded Valve's

2006-04-17 Thread Vivek Mohan
and how was it solved? On 4/17/06, Ugur Dincer <[EMAIL PROTECTED]> wrote: > problem solved :-) > > > From: "Ugur Dincer" <[EMAIL PROTECTED]> > Reply-To: "Tomcat Users List" > To: users@tomcat.apache.org > Subject: Tomcat embedded Valve's > Date: Sun, 16 Apr 2006 19:12:22 +0200 > MIME-Version: 1.0

Re: EJB

2006-04-07 Thread Vivek Mohan
Can you do that? I thought Tomcat doesn't support EJBs! On 4/7/06, Jeyabalan, Prakash <[EMAIL PROTECTED]> wrote: > How to configure EJB in Tomcat? > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-m

get SSL port in tomcat 4.1

2006-03-29 Thread Vivek Mohan
Hi, Is it possible to get hold of the SSL port for the tomcat installation programmatically? Thanks, Vivek. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Context starts twice

2006-03-29 Thread Vivek Mohan
you're welcome!! -- Vivek. On 3/30/06, Dola Woolfe <[EMAIL PROTECTED]> wrote: > Yes I do!!! Thank you. > > > My guess is that Eclipse sneaked that line in there > when I experimented with creating Tomcat projects. > Good grief! > > Thanks again. > >

Re: Context starts twice

2006-03-29 Thread Vivek Mohan
t; From: Dola Woolfe [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, March 29, 2006 1:48 PM > > To: Tomcat Users List > > Subject: Re: Context starts twice > > > > Hi, > > > > I'm sorry, can you give a couple examples with dir > > n

How to pass basic auth credentials from one tomcat server to another - SSO

2006-03-28 Thread Vivek Mohan
My scenario is something like this: There's an entry server webapp (tomcat 4.0 installation) which takes in the username/password from the user for basic authentication, authenticates the user and makes available links to various other webapps on different tomcat (4.0)installations. These can be on

Re: Context starts twice

2006-03-28 Thread Vivek Mohan
This can happen if you have a separate context path configured for your webapp and its present in your appbase. If thats the case, then Tomcat will try to load the webapp twice, once for the different context path and once for the presence of the war or folder in appbase. This is a known feature(or

Re: Context startup order

2006-03-28 Thread Vivek Mohan
Do you have all the contexts mentioned in one server.xml? or do you have separate context xmls for your separate contexts? If its the former case, then I guess, the order in which you mention the contexts in server.xml is going to be the order of starting them up by Tomcat. -- Vivek. On 3/28/06,

Re: How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-12-01 Thread Vivek Mohan
I need to take care of when I do this? -- Vivek. On 12/1/05, Mark Thomas <[EMAIL PROTECTED]> wrote: > Vivek Mohan wrote: > > Question: > > > > I want to have myWebapp as the root context webapp in my tomcat > > server. And I don't want to rename it to "

Re: Deploying in ROOT folder using a war file

2005-11-30 Thread Vivek Mohan
Tomcat is extracting the files to localhost/_ because thats where it knows it has to extract anything from the ROOT application. -- Vivek. On 12/1/05, Gautam Gothoskar <[EMAIL PROTECTED]> wrote: > Mark, > I have deleted the ROOT folder from the webapps > directory. I have the unpackWARs set to

Re: How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-11-30 Thread Vivek Mohan
anks, > Joe > > On 11/30/05, Mark Thomas <[EMAIL PROTECTED]> wrote: > > Vivek Mohan wrote: > > > Question: > > > > > > I want to have myWebapp as the root context webapp in my tomcat > > > server. And I don't want to rename it to "RO

How to deploy my webapp as root context webapp without tomcat loading it twice?

2005-11-30 Thread Vivek Mohan
Hi, Scenario: I've a webapplication in my tomcat4 installation, called myWebapp. I've configured it to be my root webapplication since I want users to be able to access it using the url: "http::". Here's a snippet of my server.xml: myWebapp has a init servlet which is lo