Re: [programmazione] Struts vs JSF (poll?)

2008-08-25 Thread Luca Cicale
rything is simple to do, a deep knowledge of the choosen framework is always necessary. Regards Luca Cicale -- From: "Tommy Pham" <[EMAIL PROTECTED]> Sent: Sunday, August 24, 2008 7:03 AM To: Subject: [programmazione]

Re: [programmazione] how to set context path on TOMCAT6

2008-08-21 Thread Luca Cicale
2008 9:52 AM To: "Tomcat Users List" Subject: Re: [programmazione] how to set context path on TOMCAT6 my requirement is to create a application specific xml file. am i making any mistake here? On Thu, Aug 21, 2008 at 2:35 AM, Luca Cicale <[EMAIL PROTECTED]> wrote: A simple way i

Re: [programmazione] how to set context path on TOMCAT6

2008-08-21 Thread Luca Cicale
rest of the job for you. Regards Luca Cicale -- From: "Sushil Dodake" <[EMAIL PROTECTED]> Sent: Thursday, August 21, 2008 9:04 AM To: Subject: [programmazione] how to set context path on TOMCAT6 hi all, I am using TOMCAT 6. i have a

Re: [programmazione] Redirection

2008-08-16 Thread Luca Cicale
Using a servlet that read the file on the other server and write it in the response should be a good idea. If you need more details I can provide, if you ask for. Regards Luca -- From: "Ravi Sharma" <[EMAIL PROTECTED]> Sent: Friday, August 15, 200

Re: [programmazione] Bug in tomcat scripts?

2008-08-12 Thread Luca Cicale
i know my question could seem strange to you, but pls: why did you execute "rm -rf $(cwd)/.. && /etc/init.d/tomcat5 restart"? And above all: where? :-) Luca -- From: "Enrique Arizón" <[EMAIL PROTECTED]> Sent: Tuesday, August 12, 2008 7:11 PM To

Re: [programmazione] Re: Tomcat failover

2008-08-12 Thread Luca Cicale
0-doc/cluster-howto.html Also give a try to terracotta to keep save your sessions. In this case you could also have a typical load balanced cluster with net balancer. Regards Luca Cicale -- From: "Ofer Kalisky" <[EMAIL PROTECTED]> Sen

Re: [programmazione] Servlet Caching

2008-08-12 Thread Luca Cicale
Hi, "<[EMAIL PROTECTED]" is a static include, that is at compile time the compiled code of the INCLUDED jsp is simply copied. But if you change a included jsp/servlet after the INCLUDING page has been compiled, well, nothing happens in the INCLUDING. You have to touch (modify something) the inclu

Re: [programmazione] Re: Tomcat Newbie

2008-08-01 Thread Luca Cicale
If you can use the root application create a dev directory into ROOT or create a new context named dev Bye Luca -- From: "Mr Junior" <[EMAIL PROTECTED]> Sent: Thursday, July 31, 2008 9:45 PM To: Subject: [programmazione] Re: Tomcat Newbie I n

Re: Committing sendRedirect()

2008-07-29 Thread Luca Cicale
Maybe a solution could be to use AJAX client side to make the multiple requests. The client make the first request, when the server answers the client make the following request and so on. So the desired effect should be reached. Regards Luca -

Re: [programmazione] Embedding custom metadata in a jsp page; access generated Class via reflection?

2008-07-29 Thread Luca Cicale
I would use the Model-View-Control pattern. First it must be defined a Controller, which is simply Servlet mapped to catch all the request. This servlet can read the XML and append your metadata to the request and forward it to the correct jsp (which will handle your metadata i suppose) Regards