Re: Tomcat 5.5 problem with log4j and policy

2008-01-08 Thread Vinu Varghese
ies files inside the webapp? Is there another more general way to do this so i do not have to modify it if I deploy the webapp on win instead of linux? Thanks R -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org Success always oc

Re: Database connectivity problem

2008-01-08 Thread Vinu Varghese
creating connection pool e.t.c. ) (I think ms server 2003 needs to be adjusted). Please help. -- Vinu Varghese [EMAIL PROTECTED] www.x-minds.org Success always occurs in private, and failure in full view. \/ ._ _ o .__| _ /\ ~~ | | | | | | (_| _\

Re: Tomcat consumes much memory when web.xml size grows

2008-01-08 Thread Vinu Varghese
egards unni -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org Success always occurs in private, and failure in full view. \/ ._ _ o .__| _ /\ ~~ | | | | | | (_| _\

Re: Monitoring Tomcat Clusters

2008-01-08 Thread Vinu Varghese
] -- Vinu Varghese [EMAIL PROTECTED] www.x-minds.org Success always occurs in private, and failure in full view. \/ ._ _ o .__| _ /\ ~~ | | | | | | (_| _\

Re: Monitoring Tomcat Clusters

2008-01-08 Thread Vinu Varghese
] -- Vinu Varghese [EMAIL PROTECTED] www.x-minds.org Success always occurs in private, and failure in full view. \/ ._ _ o .__| _ /\ ~~ | | | | | | (_| _\

Re: How Do I do (Can I do) Apache like redirects in Tomcat

2008-01-07 Thread Vinu Varghese
I'm having trouble with. Whenever a browser send a GET request to that port, I need to return a redirect to an entirely different server (different IP, etc) listening on port 28443. I cannot figure out anyway to do that. Any ideas? Thanks, Rob -- ..

Re: Tomcat6

2008-01-04 Thread Vinu Varghese
] For additional commands, e-mail: [EMAIL PROTECTED] -- Vinu Varghese [EMAIL PROTECTED] www.x-minds.org Success always occurs in private, and failure in full view. \/ ._ _ o .__| _ /\ ~~ | | | | | | (_| _\

Re: Failure to start tomcat

2007-11-02 Thread Vinu Varghese
Did you start Tomcat prior to Httpd ?, Just see catalina.out in logs folder of Tomcat installation Gaurav Agarwal wrote: Nothing has been recorded in tomcat's log for this duration -Original Message- From: Vinu Varghese [mailto:[EMAIL PROTECTED] Sent: Friday, November 02, 2007

Re: Failure to start tomcat

2007-11-02 Thread Vinu Varghese
www.innoviti.com/> Landline (Bglore): 080 - 41482608 -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org Success always occurs in private, and failure in full view. \/ ._ _ o .__| _ /\ ~~ | | | | | | (_| _\

Tomcat clustering without multicasting

2007-06-22 Thread Vinu Varghese
Hi all, I am trying clustering with tomcat, but I have machines with multicast disabled. So is there any way to do clustering without multicasting, like use tcp for notifying member addition and removal ? Thanks in advance - regards Vinu -- Vinu

Re: Is it possible to run multiple instances of Jboss Server on a single Windows 2k box

2007-06-21 Thread Vinu Varghese
Hi Shravan, Yes it is possible, but you've to change the ports in the second instance. -regards Vinu shravan kumar wrote: Is it possible to run multiple instances of Jboss Server on a single Windows 2k box -- .... Vinu Varghese [EMAIL PROTECTED]

Clustering - not joining the group

2007-05-08 Thread Vinu Varghese
oCache running in my application. It is configured on a different UDP address other than mcastAddress of Tomcat Server.xml's Membership element. Can anyone lash some light on this issue ? Thanks in advance. Regards --Vinu Varghese

Re: apache-tomcat-6.0.10 OutOfMemoryError

2007-03-15 Thread Vinu Varghese
Mail has the best spam protection around http://mail.yahoo.com - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Vinu Varghese [EMAIL PROTECTED] www.x-minds.org (Success always occurs in private, and failure in full view.)

Re: Tomcat, Timer and TimerTask question

2006-07-20 Thread Vinu Varghese
topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org -

Re: starting with windows service

2006-07-13 Thread Vinu Varghese
ny.bat file? SK - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: Getting the date/time from the client

2006-07-11 Thread Vinu Varghese
Thanks Pid, I think that is a good idea Let me try - Regards Vinu Pid wrote: you can get a Locale from the request, and adjust the time accordingly. Vinu Varghese wrote: but that still sets the server date - yes ? Pid wrote: write a filter that activates for that url, and get the

Re: forwarding to a remote host

2006-07-11 Thread Vinu Varghese
he request needs to be forwarded to a different servlet, which may be running on a different server. What is the best way to do that? Thanks, Zohar. -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: forwarding to a remote host

2006-07-11 Thread Vinu Varghese
ohar. -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: Getting the date/time from the client

2006-07-11 Thread Vinu Varghese
d. for example: function setDate(form) { form.dateField.value = new Date().toString(); } Example assumes a hidden form input field with name dateField. HTH, Jon Vinu Varghese wrote: SK, That javascript prints the current client time. But I want the client time with the request. The scenario

Re: Getting the date/time from the client

2006-07-11 Thread Vinu Varghese
quot;"); The other solution is to get it from the request header. protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { long l = request.getDateHeader("Date"); Date d = new Date(l); System.out.printl

Re: Getting the date/time from the client

2006-07-11 Thread Vinu Varghese
s to get it from the request header. protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { long l = request.getDateHeader("Date"); Date d = new Date(l); System.out.println(d); } SK - Original Message - From: &qu

Getting the date/time from the client

2006-07-11 Thread Vinu Varghese
Hi All, I am doing a project in jsp/servlet and tomcat, which requires to take the client date/time (ie the time of the machine the browser is running). Is there any way to accomplish this ? Thanks & regards Vinu -- .... Vinu Varghese [EMAIL PROTE

Re: Error in tomcat, after logging in to the Tomcat Administration page

2006-07-01 Thread Vinu Varghese
AIL PROTECTED] -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: Tomcat 5.0.28 - jsp:useBean causing a jsp error

2006-06-08 Thread Vinu Varghese
org.apache.jasper.compiler.Node$Visitor.visitBod... Anyone knows how can I solve it? Thanks. Angel -- Vinu Varghese [EMAIL PROTECTED] www.x-minds.org - To start a new topic, e-mail: users

Re: how to get value of

2006-03-24 Thread Vinu Varghese
Hi use request.getParameterValues(String paramName) HTH Vinu Prashant Saraf wrote: Hello all, can some one tell me how to get value of if it is multipal selected. like this -- Cup of Java + Suger of XML = Secure WebApp -- Vinu Varghese

Re: Hellp me Don't know whats the problem

2006-03-23 Thread Vinu Varghese
viruses or computer problems experienced. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] ----- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: error calling servlet (in Tomcat)

2006-03-23 Thread Vinu Varghese
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: error in tomcat

2006-03-13 Thread Vinu Varghese
the webapp. Vinu Varghese a écrit : default is a valid servlet name, but it is already defined in $CATALINA_HOME/conf/web.xml. So we can't use that name in our web.xmls Just check the introduction section inside that file. :-) - Regards Vinu David Delbecq wrote: Yes, renaming

Re: error in tomcat

2006-03-13 Thread Vinu Varghese
7;t see in servlet specs where it's stated 'default' is not a valid logical name for a servlet. Vinu Varghese a écrit : Just change the 'default' to something else like default.test , and check whether the error repeats David Delbecq wrote: Nope, downgrading

Re: error in tomcat

2006-03-13 Thread Vinu Varghese
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: Image files accesable for a servlet in Tomcat, but they were accesible in Java standalone program

2006-02-22 Thread Vinu Varghese
] -- Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: starting tomcat with opts - FC4

2006-02-19 Thread Vinu Varghese
Put that in catalina.sh file , $CATALINA_HOME/bin kevin wrote: Where is the best place of RHFC5 to add the code to start tomcat5 with CATALINA_OPTS="-Djava.awt.headless=true" Would it be in the dtomcat5 script in /usr/bin Thanks KP --

Re: JSP Servers

2006-02-04 Thread Vinu Varghese
ubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: the best way to distribute Tomcat with my web-application

2006-02-02 Thread Vinu Varghese
nal commands, e-mail: [EMAIL PROTECTED] -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: Cannot transform and load jsp file with Tomcat under Eclipse

2006-01-31 Thread Vinu Varghese
bscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] __ NOD32 1.1372 (20060119) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org

Re: Tomcat 5.5.9 + JDK 1.4.2 + Freebsd 5.3

2006-01-31 Thread Vinu Varghese
Hi Mike Thank you. But what is difference in using startup.sh and catalina.sh start. The startup.sh simply calls catalina.sh with start . - Regards Vinu Mike Sabroff wrote: and shutdown.sh Vinu Varghese wrote: Hi, I am running Tomcat 5.5.9 with JDK 1.4.2 on freebsd 5.3. I use the

Tomcat 5.5.9 + JDK 1.4.2 + Freebsd 5.3

2006-01-31 Thread Vinu Varghese
re exists some java processes that doesn't get killed. Why is this so ? - Regards Vinu -- .... Vinu Varghese [EMAIL PROTECTED] www.x-minds.org