Re: Page caching problem with JSP 1.1 on iPlanet 4.1

2001-09-05 Thread Steven Armstrong
lt;[EMAIL PROTECTED]> >Subject: Re: Page caching problem with JSP 1.1 on iPlanet 4.1 > >It is the problem of the borwser, Not the server > >- Original Message - >From: "Venkata Krishna MV" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Satur

Re: Page caching problem with JSP 1.1 on iPlanet 4.1

2001-09-04 Thread Rice, David
ssage- From: Hari Yellina [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 02, 2001 12:16 AM To: [EMAIL PROTECTED] Subject: Re: Page caching problem with JSP 1.1 on iPlanet 4.1 It is the problem of the borwser, Not the server - Original Message - From: "Venkata Krishna MV" <[EM

Re: Page caching problem with JSP 1.1 on iPlanet 4.1

2001-09-01 Thread Hari Yellina
It is the problem of the borwser, Not the server - Original Message - From: "Venkata Krishna MV" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, August 25, 2001 5:54 PM Subject: Page caching problem with JSP 1.1 on iPlanet 4.1 > Hi, > > I am

Re: Page caching problem with JSP 1.1 on iPlanet 4.1

2001-08-25 Thread M Sankar
Hi Venkat, 1)Try using this line before tag 2)Add these lines to ur jsp page <% response.setHeader("Cache-Control","no-cache"); %> <% response.setHeader("Pragma","no-cache"); %> <% response.setDateHeader ("Expires", 0); %> It works for me. Sankar Venkata Krishna MV wrote: > Hi, > > I am u

Page caching problem with JSP 1.1 on iPlanet 4.1

2001-08-25 Thread Venkata Krishna MV
Hi, I am using iPlanet 4.1 on Windows NT. Whenever a jsp is changed, iPlanet is expected to recompile the jsp and send updated page to browser. But, this is not happening. Every time I change a jsp, I have to clear cache and restart the service. Otherwise I get previous output. This works fine

Re: Caching problem

2001-04-13 Thread Shawn Zhu
D] > Subject: Re: Caching problem > > > I don't get it. > These are two conflicting statements you are having: > > 1."But i dont want to retrive all record at the same time > sothat it will take a lot of time for the first time." > > 2. "also n

Re: Caching problem

2001-04-13 Thread Mike Akerman
On Thu, 12 Apr 2001, Debasis Dash wrote: > I am requesting aquery which return 5000 results. But i want to show only 25 > record per page. But i dont want to retrive all record at the same time > sothat it will take a lot of time for the first time. also not want to > connect to dastabase for ea

Re: Caching problem

2001-04-12 Thread Debasis Dash
- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Nishit Trivedi Sent: Thursday, April 12, 2001 5:49 PM To: [EMAIL PROTECTED] Subject: Re: Caching problem I don't get it. These are two conflicting statements you are having: 1.&

Re: Caching problem

2001-04-12 Thread Nishit Trivedi
rds 1 to 25 and so on... hope this may help you.. Nishit -Original Message- From: Debasis Dash [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001 5:13 PM To: [EMAIL PROTECTED] Subject: Caching problem I am requesting aquery which return 5000 results. But i want to show only 25 recor

Caching problem

2001-04-12 Thread Debasis Dash
I am requesting aquery which return 5000 results. But i want to show only 25 record per page. But i dont want to retrive all record at the same time sothat it will take a lot of time for the first time. also not want to connect to dastabase for each request for next 25 records. How to build the c

Caching problem....

2001-01-21 Thread Arun Prakash
Hi All., I have a caching problem with the JVMI'm using Include file(the files which are uploaded often). Even though the files are uploaded properly when i include the files its showing the contents of the old files. I think the file content is cached in the JVM. How can i

Re: ResourceBundle Caching Problem

2000-12-02 Thread Livaditis, Nicholas
PM To: 'A mailing list about Java Server Pages specification and reference' Subject: RE: ResourceBundle Caching Problem Using directives to disable cache for a document in transit won't help. The response headers you added will increase the chances of a browser or proxy not cac

Re: ResourceBundle Caching Problem

2000-12-02 Thread Livaditis, Nicholas
Singh [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 02, 2000 5:56 PM To: [EMAIL PROTECTED] Subject: ResourceBundle Caching Problem Hi, I am using a property file which contains some parameters, my JSP is reading everytime whenever its called (GET). For the first time its loading perfectly

ResourceBundle Caching Problem

2000-12-02 Thread Sushil Singh
Hi, I am using a property file which contains some parameters, my JSP is reading everytime whenever its called (GET). For the first time its loading perfectly, now if I change the values in property file, still my JSP is having old value, its uanble to refresh the values from Property file. I h

Re: Caching Problem in TomCat with Apache.....

2000-10-03 Thread satish mali
Dear Friend, Thanks for the reply. What happens when we save the edited file. then for the first time it creates the new versions at each time. Thanks --- Carlos Vasquez <[EMAIL PROTECTED]> wrote: > Try deleting your page compiled directory for the > JSP's . That should s

Re: Caching Problem in TomCat with Apache.....

2000-10-03 Thread Carlos Vasquez
Try deleting your page compiled directory for the JSP's . That should solve your problems. -Carlos Vasquez --- satish mali <[EMAIL PROTECTED]> wrote: > Dear Friends, > > > I am having a problem with Tomcat... > > I have a Apache web server running on Windows NT. > and I configured Tomcat for

Caching Problem in TomCat with Apache.....

2000-10-02 Thread satish mali
Dear Friends, I am having a problem with Tomcat... I have a Apache web server running on Windows NT. and I configured Tomcat for the JSP programing.. The version of Apache 3.1.6 and Tomcat 3.1 When i edit some jsp page on nt server. Chagnes gets reflected. but When edit some changes to

AW: Caching problem

2000-09-26 Thread Lemke, Volker
liche Nachricht- Von: Veronique Dupierris [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 1. September 2000 13:41 An: [EMAIL PROTECTED] Betreff: Re: Caching problem This is exalctly what is happening... the page corresponding to your refresh is cached, so the vrowser will not send the request t

Re: Caching problem

2000-09-01 Thread Veronique Dupierris
This is exalctly what is happening... the page corresponding to your refresh is cached, so the vrowser will not send the request to the server again but will get the cached file. So, you have to set one or all of the following headers in your pages ! I think that you have to use more than one of t

Caching problem

2000-09-01 Thread Anjan Ghosh
Hi all, I have the following problem. I have two frames - leftframe and rightframe - in an HTML page. The leftframe shows a list of key fields. On clicking one item in the list, the corresponding details is fetched from the database and shown in the rightframe. The user can edit the data in the ri

Re: Caching Problem

2000-06-12 Thread Lakshmi Anand K
nand K. MSPV Group Pavoorchatram | I am getting caching problem. My browser (I.E 5)always shows previous | versions of pages. | This problem occured suddenly. I am dynamically creating pages using | JSP.(Apache-JServ) === To

Caching Problem

2000-06-12 Thread Arun Nakkala
Hi, I am getting caching problem. My browser (I.E 5)always shows previous versions of pages. This problem occured suddenly. I am dynamically creating pages using JSP.(Apache-JServ) Is this a browser problem? how to get rid of this using JSP thanks Arun Reddy

Re: Caching Problem

2000-05-08 Thread Nuorteva Kare
> I have put already a "close database connection" method within the > destroy() method of the servlet but it does not seem to be called by > the webserver. Hi, Because You open/close database connection at the wrong place. You should open the connection just before the transaction and close it

Caching Problem

2000-05-08 Thread Ingo Oppelt
Hi there, I have got a question concerning session management. How can I manipulate the duration of a session between a servlet (jsp-page) and the client (web-browser) and what is the default value? Here is my problem: I am using the Sun Development Webserver (comes with jswdk- 1.0.1) to test a