Re: NoClassDefFoundError: TagExtraInfo missing?

2007-12-26 Thread AbelMacAdam
Hi David, I tried what you suggested (quote: "Just out of curiousity, are you trying to run your webapp from within Eclipse? If so, try it without Eclipse -- deploy it to your installed tomcat and see if the error continues. If the error goes away, it may be something funky with your Eclipse -

Re: Remote deployment in tomcat

2007-12-26 Thread Louis
Shreekanta Prasad wrote: Hi All, I want to deploy my web application(in the form of a war file) remotely through ant script. I have written ant script for that and it is doing deployment properly to the remote host. But still I am getting old application itself new changes are not

Remote deployment in tomcat

2007-12-26 Thread Shreekanta Prasad
Hi All, I want to deploy my web application(in the form of a war file) remotely through ant script. I have written ant script for that and it is doing deployment properly to the remote host. But still I am getting old application itself new changes are not getting updated. Once w

RE: ISAPI redirector error in Tomcat 4.1

2007-12-26 Thread Chacko Kuruvilla
Here it is... Created MBeanServer with ID: c4fe76:11716dc479f:-8000:DCHS-HIPAA-VM:1 Dec 26, 2007 8:30:11 AM org.apache.coyote.http11.Http11BaseProtocol init INFO: Initializing Coyote HTTP/1.1 on http-8080 Starting service Tomcat-Standalone Apache Tomcat/4.1.36 Dec 26, 2007 8:30:21 AM org.apach

Re: problem with tomcat admin tool

2007-12-26 Thread Shekhar . Dhotre
I had to cleanup and reinstall it to make it work. make sure java path is setup correctly. Regards, Shekhar Dhotre. UNIX Systems Engineer. IBM-Veritas-Sun- Microsoft Certified professional. W:678-355-3696 Abubakar Gurnah <[EMAIL PROTECTED]> 12/24/2007 11:22 AM Please respond to "Tomcat Users

Re: Regarding setting log size

2007-12-26 Thread Martin Gainty
yes the name of the class is 'RollingFileAppender' and you can specify maxFileSize with log4j.appender.file.maxFileSize parameter (as in log4.properties attributes entries located here) log4j.appender.file=org.apache.log4j.RollingFileAppender log4j.appender.file.maxFileSize=100KB http://www.lalilu

RE: ISAPI redirector error in Tomcat 4.1

2007-12-26 Thread Martin Gainty
all i see in the attachment is the tomcat standard annotation lines can you inline the relevant log errors? ThanksMartin Gainty__Disclaimer and confidentiality noteEverything in this e-mail and any attachments relates to the official business of Sende

RE: multi-connector capability for HTTPS in Tomcat

2007-12-26 Thread Hitesh Raghav
Thank you very much Mark for kind help. I tried. It works fine. Regards, -Hitesh -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 25, 2007 9:24 PM To: Tomcat Users List Subject: Re: multi-connector capability for HTTPS in Tomcat Hitesh Raghav wrot

RE: ISAPI redirector error in Tomcat 4.1

2007-12-26 Thread Chacko Kuruvilla
Thank you Martin for your response. I quickly reviewed the web site you recommended. I did not see any troubleshooting section. Attached is the entire log file as requested. Chacko. -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 26, 2007 9:15

ISAPI redirector error in Tomcat 4.1

2007-12-26 Thread Chacko Kuruvilla
Hello, I am in the process of setting up Tomcat 4.1 and IIS on a Windows 2003 server. Our web application is in JSP and Java servlets. The application works just fine off Tomcat 4.1 which is setup to run as a service. However, I am having trouble getting it to integrate with IIS 6.0. Initially,

Re: javax.servlet.ServletException

2007-12-26 Thread Martin Gainty
If you could demonstrate for us how does the very first page (index.jsp/index.html) of your webapp get produced? Take it step by step showing all the entries in web.xml, code for controller, interactions of controller, how are the beans configured and where is the code for the beans, how are you ac

javax.servlet.ServletException

2007-12-26 Thread rameau rameau1982
If somebody wants to know I've solved my problem. The UserVO class has to be: package webusr31.pracfinal.model.dao; public class UserVO { public int id; public String name; public String password; public int getId() { return id; } public String getName() { return name; } } And I w

RE: javax.servlet.ServletException

2007-12-26 Thread rameau rameau1982
${request.session.getAttribute('message_srv')} works perfectly because if I don't login when doing the: ERROR Session Error Volver it is desplayed perfectly, so the first clause is working properly. I'm not using JSP !!! I'm using a framework done by my teacher that is based on struts

RE: javax.servlet.ServletException

2007-12-26 Thread rameau rameau1982
I've done it exactly the same way you described and I still have the same problem From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: javax.servlet.ServletExceptionDate: Mon, 24 Dec 2007 09:48:52 -0500 the idea is to have one introductory display file for your webappthe introductory displ