Re: tomcat webapps help

2005-10-26 Thread Anoop kumar V
Well - you can start off by adding a context in your server.xml file. It will be under the /conf folder You have not mentioned the version of tomcat you are using - or else peope could have given you more precise answers... -Anoop On 10/26/05, Raviteja Veerla <[EMAIL PROTECTED]> wrote: > > Hi, >

Re: How to load a class when tomcat starts

2005-12-10 Thread Anoop kumar V
The way we have done is to load a servlet during startup (very easy to do in web.xml) and through this servlet use Class.forName("classname") to load the required classes into memory. The reason we do this is to read a .properties file and store all the name value pairs in a hashmap to be retrieve

Re: How to load a class when tomcat starts

2005-12-25 Thread Anoop kumar V
he application is not connecting to the database > can u just quote the code snippet u had used? > thanks in advance > vineesh > On 12/10/05, Anoop kumar V <[EMAIL PROTECTED]> wrote: > > The way we have done is to load a servlet during startup (very easy to > do i

Re: About possible memory leak in Tomcat 5.x

2005-12-25 Thread Anoop kumar V
I think this is a great finding - it will certainly help all those teams faced with the Out of memory errors which curiously pops up oly after we move the code to production.. I hope you will have the tomcat developers look into this by sending this to tomcat-developers forum. THanks, Anoop On 1

request.getHeader() gives null

2006-02-03 Thread Anoop kumar V
<%@ page import="java.io.PrintWriter"%> <%-- @author Anoop Kumar V. Date: Jan 19, 2006 4:13:05 PM --%> <%@ page contentType="text/html;charset=UTF-8" language="ja

Re: request.getHeader() gives null

2006-02-04 Thread Anoop kumar V
I would really appreciate if someone can answer my question.. Thanks, Anoop On 2/3/06, Anoop kumar V <[EMAIL PROTECTED]> wrote: > > HI All, > > I am using Tomcat5. > I have a simple jsp displaying the header information that I have set in > another jsp page. For some

Re: request.getHeader() gives null

2006-02-08 Thread Anoop kumar V
Thanks a lot to both David Smith and Yue Mu - I am exploring other options of setting values. Also someone else has suggested that I use POST from a form - i willl try that too - thanks a ton, Anoop Kumar V. On 2/5/06, David Smith <[EMAIL PROTECTED]> wrote: > > Anoop -- > >

Disable HTTP / session messages on browser

2006-02-09 Thread Anoop kumar V
Hi, Once in about 4-5 times I make a request to a page in my simple JSF application deployed on Tomcat 5, I get this sort of message on the browser - I am sure that I am not setting these messages anywhere in my application or jsp's. HTTP/1.1 500 Internal Server Error Server: Apache-Coyote/1.1 Co

Re: Problem with Tomcat and Java versions

2006-02-09 Thread Anoop kumar V
Do you have the option of reinstalling Tomcat5 - so that Tomcat5 would just pick up java 5 and not have anything at all to do with java 1.4?? -Anoop On 2/9/06, Letícia Álvares Barbalho <[EMAIL PROTECTED]> wrote: > > Hey, > > First of all thank you very much for the attention. I got some reading

Re: how to install Tomcat 5.5.15 or 16 in Windows 2003?

2006-03-28 Thread Anoop kumar V
Did you try the non-exe install?? Tomcat actually does not install anything I think - it is mostly just a decompress of files and the setting of references to environment variables like JAVA_HOME etc.. setting of shortcuts on the start menu. initialising the service. So there should be a zippe

Re: installing a web application on apache tomcat

2007-01-13 Thread Anoop kumar V
I would suggest that you check out the samples that come installed with tomcat. Also - in tomcat all that matters is that you drop a war file (or a directory) containing required files according to the J2ee specs into the webapps directory. So it would be something like this: webapp + your-web-

User-specified log class 'com.sun.idm.logging.trace.TraceLogger' cannot be found or is not useable.

2007-01-23 Thread Anoop kumar V
When I start my tomcat server with our application, I get the following errors and the tomcat fails to startup: SEVERE: End event threw exception org.apache.commons.logging.LogConfigurationException: User-specified log class 'com.sun.idm.logging.trace.TraceLogger' cannot be found or is not useabl

Re: User-specified log class 'com.sun.idm.logging.trace.TraceLogger' cannot be found or is not useable.

2007-01-23 Thread Anoop kumar V
Yes - the documentation does help. But I think Tomcat is a bit too strict in applying the specs - or maybe the specs are too rigid. Why not load classes wherever they are found!! Anyways - The delivery of the environment was today and as soon as I deleted the j2ee.jar from the webapp//WEB-INF/li

Re: Java Web Parts v1.1 Beta 1 released

2007-04-13 Thread Anoop kumar V
hey - Where would I find pertinent information about the project. I mean suppose I want to look up what all types of filters are available for reuse, where is that infromations. Thanks, Anoop On 4/8/07, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: Hey everyone... just a quick weekend note to t

Re: Java Web Parts v1.1 Beta 1 released

2007-04-13 Thread Anoop kumar V
Architect > Omnytex Technologies > http://www.omnytex.com > AIM/Yahoo: fzammetti > MSN: [EMAIL PROTECTED] > Author of "Practical Ajax Projects With Java Technology" > (2006, Apress, ISBN 1-59059-695-1) > Java Web Parts - http://javawebparts.sourceforge.net > Supplying th

Re: [OT] Re: axis2 vs xfire

2007-06-06 Thread Anoop kumar V
Here are some links which do a comparison: http://myarch.com/choosing-between-axis2-and-xfire http://xfire.codehaus.org/Stack+Comparison http://stuffthathappens.com/blog/2006/05/08/xfire-or-axis2-10/ http://www.infoq.com/news/2007/02/axis2-xfire-benchmark Anoop On 6/6/07, Pid <[EMAIL PROTECTED

Re: SAML Cross-Domain SSO

2009-04-29 Thread Anoop kumar V
I have tried OpenSSO on Sun glassfish, weblogic and Oracle application server. It rocks! Although I have not tried it on tomcat, I am almost certain that it would be well supported and well documented. The agents link may help: https://opensso.dev.java.net/public/use/agents.html Thanks, Anoop O

Re: Application monitoring

2009-06-09 Thread Anoop kumar V
We use a tool called monit. It is very light weight and comes with its own embedded web server. It integrates easily with init and can use existing runlevel rc scripts to manage services. Best of all it is open source. Thanks, Anoop On Mon, Jun 8, 2009 at 9:28 AM, Chetan Chheda wrote: > I forgo