Re: 2 questions

2004-02-06 Thread Johannes
>, javagroup <[EMAIL PROTECTED]>, parvez <[EMAIL PROTECTED]>, tomcat <[EMAIL PROTECTED]> cc Subject 2 questions 1) What is the differences between two ? res.sendRedirect(" http://localhost:8080/authendication/Logout/body_logout.jsp";); or getServletContext()

Re: 2 questions

2004-01-22 Thread Harry Mantheakis
Hello The sendRedirect method sends a response back to the client browser with a special header that instructs the *browser* to make a *new* request to whatever URL you have specified - usually back to your server, but it can be to anywhere. The forward method is quite different: it 'calls' anoth

2 questions

2004-01-22 Thread Pinguti Sridevi
1) What is the differences between two ? res.sendRedirect("http://localhost:8080/authendication/Logout/body_logout.jsp";); or getServletContext().getRequestDispatcher("/authendication/Logout/body_logout.jsp").forward(req, res); 2) 1 )Whenever for the first time if the user enters, I want

Re: 2 Questions ..

2003-10-10 Thread Tim Funk
Its probably the java compiler. If your constant is declared final, the compiler may be performing an optimization and taking the value insteadof a run-time reference. You can get around this by not using a constant and using a get method. -Tim Mufaddal Khumri wrote: Hi, Am running my webapp

2 Questions ..

2003-10-10 Thread Mufaddal Khumri
Hi, Am running my webapp under tomcat 4.1.18. Everything was fine till yesterday. I am facing this issue today. I wrote a new taglib - nextPrevLink for a jsp page called PotatoList.jsp. Now when i change the value of the Constants.POTATO_LIST_DISPLAY_SIZE in the Constants.java and "reload"

taglib - 2 Questions.

2003-10-09 Thread Mufaddal Khumri
Hi, Am running my webapp under tomcat 4.1.18. Everything was fine till yesterday (always is:)). I am facing this issue today. I wrote a new taglib for a jsp page called PotatoList.jsp. Now when i change the value of the Constants.POTATO_LIST_DISPLAY_SIZE in the Constants.java and "reload" my

RE: REPOST: 2 questions..requests...

2002-06-19 Thread Reynir Hübner
nd of misterperentation of the .jsp ending, within ie6. thanx -reynir > -Original Message- > From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] > Sent: 18. júní 2002 21:50 > To: Tomcat Users List > Subject: Re: REPOST: 2 questions..requests... > > > > > On Tu

Re: REPOST: 2 questions..requests...

2002-06-18 Thread Craig R. McClanahan
On Tue, 18 Jun 2002, Reynir Hübner wrote: > Date: Tue, 18 Jun 2002 10:00:53 - > From: Reynir Hübner <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: REPOST: 2 questions..requests... > > > >

REPOST: 2 questions..requests...

2002-06-18 Thread Reynir Hübner
hi, I have 2 questions (not really related) : 1. How can I get the header "if-modified-since", from the request object, when I print out the enumeration of getHeaderNames() it's not there. 2. I've been writing some scripts in java, mainly regluar-expression relate

2 questions..requests...

2002-06-13 Thread Reynir Hübner
hi, I have 2 questions (not related): 1. How can I get the header "if-modified-since", from the request object, when I print out the enumeration of getHeaderNames() it's not there. 2. I've been writing some scripts in java, mainly regluar-expression related stuff,downl