Re: Browser's cache

2002-09-24 Thread Antoni Reus
El Mar 24 Sep 2002 22:07, Antoni Reus escribió: > PD: I looks like that in Struts 1.1 ForwardConfig is used instead of > ActionForward to configure a forward. > > Should className in be a subclass of ForwardConfig? > I have looked deep into this, ActionForward is now a subclass of ForwardConfig

Re: Browser's cache

2002-09-24 Thread Antoni Reus
In this case you would need to subclass of ActionMapping, and specify 'type' in or 'className' in every Action. Then you would need to subclass RequestProcessor to provide the required headers. I could be done by subclassing ActionForward too : PD: I looks like that in Struts 1.1

RE: Browser's cache

2002-09-24 Thread Chanoch
-Original Message- From: BONNET Francois-Xavier [mailto:[EMAIL PROTECTED]] Sent: 24 September 2002 13:05 To: Struts Developers List Subject: Re: Browser's cache Message "This page has expired" occurs when you go back to a page resulting from a "POST" HTTP r

Re: Browser's cache

2002-09-24 Thread BONNET Francois-Xavier
l tag to "GET". I hope this helps. - Original Message - From: "Chanoch" <[EMAIL PROTECTED]> To: "'Struts Developers List'" <[EMAIL PROTECTED]> Sent: Tuesday, September 24, 2002 12:03 Subject: RE: Browser's cache > As a slight side

RE: Browser's cache

2002-09-24 Thread Chanoch
computer. Although we routinely screen for viruses, recipients should check this e-mail and any attachment for viruses. We make no warranty as to absence of viruses in this e-mail or any attachments. -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: 23 September 200

RE: Browser's cache

2002-09-23 Thread Martin Cooper
feel free to develop a proposal. ;-) -- Martin Cooper > -Original Message- > From: BONNET Francois-Xavier > [mailto:[EMAIL PROTECTED]] > Sent: Monday, September 23, 2002 7:55 AM > To: [EMAIL PROTECTED] > Subject: Browser's cache > > > Hi everyone,

Re: Browser's cache

2002-09-23 Thread David Graham
ve >From: "BONNET Francois-Xavier" ><[EMAIL PROTECTED]> >Reply-To: "Struts Developers List" <[EMAIL PROTECTED]> >To: "Struts Developers List" <[EMAIL PROTECTED]> >Subject: Re: Browser's cache >Date: Mon, 23 Sep 2002 18:06:34

Re: Browser's cache

2002-09-23 Thread BONNET Francois-Xavier
on classes. - Original Message - From: "David Graham" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 23, 2002 17:40 Subject: Re: Browser's cache All browsers do not listen to the nocache meta tag, which is what I think you're talking ab

Re: Browser's cache

2002-09-23 Thread Eddie Bush
What I meant is that you will only be able to use the attributes declared in the DTD for the tag. For any other properties you need to set, you'll have to use elements inside of your action: I think my first explaination was as clear as mud. Hopefully this states it more clearly (

Re: Browser's cache

2002-09-23 Thread Eddie Bush
It would be simple to subclass Action and add the properties. The only problem is that digester is only going to set the properties for the action you subclass (the one in the DTD -- this is how I understand it), so you'll have to nest some elements into your action to configure your custom

Re: Browser's cache

2002-09-23 Thread David Graham
ding which would acheive what you want just not through struts-config.xml. Dave >From: "BONNET Francois-Xavier" ><[EMAIL PROTECTED]> >Reply-To: "Struts Developers List" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Subject: Browser's cach

Browser's cache

2002-09-23 Thread BONNET Francois-Xavier
Hi everyone, A good way to improve applications performances is to use browsers caches, reusing a cached page makes you save a lot of CPU and network traffic. HTTP protocol is rich enough to let you decide when you want a page to be recalculated or retreived from cache but Struts does not take