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 abhishek.netj...@gmail.comwrote: Hello , I am looking for a part time developer for java with struts and hibernate and a good knowledge of

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. Windows

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

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 management with Tomcat 5.0.28. I have

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

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

Re: stylesheets giving 404 after a long response time

2006-05-09 Thread Vivek Mohan
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 particular request, I could find that the server

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

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

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

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 users@tomcat.apache.org To: users@tomcat.apache.org Subject: Tomcat embedded Valve's Date: Sun, 16 Apr 2006 19:12:22 +0200

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

Re: Context starts twice

2006-03-29 Thread Vivek Mohan
give a couple examples with dir names? For example, I'm not sure what appbase is. Thanks! Dola --- Vivek Mohan [EMAIL PROTECTED] wrote: This can happen if you have a separate context path configured for your webapp and its present in your appbase. If thats the case

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. --- Vivek Mohan [EMAIL PROTECTED] wrote: Do you have

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

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

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:host:port. Here's a snippet of my server.xml: !-- Define the default virtual host -- Host

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

2005-11-30 Thread Vivek Mohan
application's direcotry to webapps/ROOT and everything has been working fine. Is there anything wrong with doing it that way ? Like I said, everything has been working great so far, which has been about 3 months. Thanks, Joe On 11/30/05, Mark Thomas [EMAIL PROTECTED] wrote: Vivek Mohan

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 true