Novell Bordermanager

2002-02-06 Thread David Bolsover

Hi all

I have a struts application hosted on a W2K server running Apache/Tomcat.

The application runs fine for most uses - but I have one user who is
accessing application from a system protected by bordermanager. For this
user, the pages do not refresh correctly (old pages are returned) despite
hitting refresh in the browser.  I am not certain but I think this might be
a bordermanager issue - has anyone else seen this problem? I have little
experience of bordermanager and am not certain this is the problem - Any
other ideas on what could be causing difficulty?  I have not yet tried
setting the appropriate response headers (no-cache etc.) but this does seem
difficult - would I have to alter all the action methods??

All advice welcome.

David

David Bolsover

E: [EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Novell Bordermanager

2002-02-06 Thread Jonathan Gibbons


My guess is that there is proxy caching going on someplace.  Setting the 
HttpServletResponse header fields should do it, not sure if there is a tag, but its 
easy enough to do in the JSP itself

%
response.addHeader(Pragma,no-cache);
response.addHeader(Cache-Control,no-cache);
%

Jonathan

 Message History 



From: David Bolsover [EMAIL PROTECTED] on 06/02/2002 10:42

Please respond to Struts Users Mailing List [EMAIL PROTECTED]

To:   Struts User [EMAIL PROTECTED]
cc:
Subject:  Novell Bordermanager


Hi all

I have a struts application hosted on a W2K server running Apache/Tomcat.

The application runs fine for most uses - but I have one user who is
accessing application from a system protected by bordermanager. For this
user, the pages do not refresh correctly (old pages are returned) despite
hitting refresh in the browser.  I am not certain but I think this might be
a bordermanager issue - has anyone else seen this problem? I have little
experience of bordermanager and am not certain this is the problem - Any
other ideas on what could be causing difficulty?  I have not yet tried
setting the appropriate response headers (no-cache etc.) but this does seem
difficult - would I have to alter all the action methods??

All advice welcome.

David

David Bolsover

E: [EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]






--

This e-mail may contain confidential and/or privileged information. If you are not the 
intended recipient (or have received this e-mail in error) please notify the sender 
immediately and destroy this e-mail. Any unauthorized copying, disclosure or 
distribution of the material in this e-mail is strictly forbidden.



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Novell Bordermanager

2002-02-06 Thread Christian Bouessay

In web.xml, you could add:

init-param
   param-namenocache/param-name
   param-valuetrue/param-value
/init-param

for Action Servlet configuration.

--
C. Bouessay

Jonathan Gibbons wrote:

 My guess is that there is proxy caching going on someplace.  Setting the 
HttpServletResponse header fields should do it, not sure if there is a tag, but its 
easy enough to do in the JSP itself
 
 %
 response.addHeader(Pragma,no-cache);
 response.addHeader(Cache-Control,no-cache);
 %
 
 Jonathan
 
  Message History 

 
 
 From: David Bolsover [EMAIL PROTECTED] on 06/02/2002 10:42
 
 Please respond to Struts Users Mailing List [EMAIL PROTECTED]
 
 To:   Struts User [EMAIL PROTECTED]
 cc:
 Subject:  Novell Bordermanager
 
 
 Hi all
 
 I have a struts application hosted on a W2K server running Apache/Tomcat.
 
 The application runs fine for most uses - but I have one user who is
 accessing application from a system protected by bordermanager. For this
 user, the pages do not refresh correctly (old pages are returned) despite
 hitting refresh in the browser.  I am not certain but I think this might be
 a bordermanager issue - has anyone else seen this problem? I have little
 experience of bordermanager and am not certain this is the problem - Any
 other ideas on what could be causing difficulty?  I have not yet tried
 setting the appropriate response headers (no-cache etc.) but this does seem
 difficult - would I have to alter all the action methods??
 
 All advice welcome.
 
 David
 
 David Bolsover
 
 E: [EMAIL PROTECTED]
 
 
 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]
 
 
 
 
 
 
 --
 
 This e-mail may contain confidential and/or privileged information. If you are not 
the intended recipient (or have received this e-mail in error) please notify the 
sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or 
distribution of the material in this e-mail is strictly forbidden.
 
 
 
 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]
 




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Novell Bordermanager

2002-02-06 Thread McDowell, Mark

My group has run into this kind of problem.  We found that bordermanager
defaults to not caching .asp files, but most everything else is cached.
In our case, we use lots of .jsp files, so we could have the sysadmin
configure bordermanager to not cache .jsp files, and we were good.  I'm
guessing (*really*) that if you use the *.do method, you could have them
set bordermanager to not cache *.do and that would fix it.  I'm even LESS
certain about /do/*...

Mark

-Original Message-
From: David Bolsover [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 06, 2002 4:42 AM
To: Struts User
Subject: Novell Bordermanager


Hi all

I have a struts application hosted on a W2K server running Apache/Tomcat.

The application runs fine for most uses - but I have one user who is
accessing application from a system protected by bordermanager. For this
user, the pages do not refresh correctly (old pages are returned) despite
hitting refresh in the browser.  I am not certain but I think this might be
a bordermanager issue - has anyone else seen this problem? I have little
experience of bordermanager and am not certain this is the problem - Any
other ideas on what could be causing difficulty?  I have not yet tried
setting the appropriate response headers (no-cache etc.) but this does seem
difficult - would I have to alter all the action methods??

All advice welcome.

David

David Bolsover

E: [EMAIL PROTECTED]


--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Novell Bordermanager

2002-02-06 Thread McDowell, Mark

A problem we've run into is that even with the methods used 
below, caching servers like bordermanager are not precisely
*required* to obey.  So, even when you tell it, *DO NOT CACHE*,
it still may unless configured properly... :(

Mark

-Original Message-
From: Christian Bouessay [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 06, 2002 7:29 AM
To: Struts Users Mailing List
Subject: Re: Novell Bordermanager


In web.xml, you could add:

init-param
   param-namenocache/param-name
   param-valuetrue/param-value
/init-param

for Action Servlet configuration.

--
C. Bouessay

Jonathan Gibbons wrote:

 My guess is that there is proxy caching going on someplace.  Setting the
HttpServletResponse header fields should do it, not sure if there is a tag,
but its easy enough to do in the JSP itself
 
 %
 response.addHeader(Pragma,no-cache);
 response.addHeader(Cache-Control,no-cache);
 %
 
 Jonathan
 
  Message History

 
 
 From: David Bolsover [EMAIL PROTECTED] on 06/02/2002 10:42
 
 Please respond to Struts Users Mailing List
[EMAIL PROTECTED]
 
 To:   Struts User [EMAIL PROTECTED]
 cc:
 Subject:  Novell Bordermanager
 
 
 Hi all
 
 I have a struts application hosted on a W2K server running Apache/Tomcat.
 
 The application runs fine for most uses - but I have one user who is
 accessing application from a system protected by bordermanager. For this
 user, the pages do not refresh correctly (old pages are returned) despite
 hitting refresh in the browser.  I am not certain but I think this might
be
 a bordermanager issue - has anyone else seen this problem? I have little
 experience of bordermanager and am not certain this is the problem - Any
 other ideas on what could be causing difficulty?  I have not yet tried
 setting the appropriate response headers (no-cache etc.) but this does
seem
 difficult - would I have to alter all the action methods??
 
 All advice welcome.
 
 David
 
 David Bolsover
 
 E: [EMAIL PROTECTED]
 
 
 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]
 
 
 
 
 
 
 --
 
 This e-mail may contain confidential and/or privileged information. If you
are not the intended recipient (or have received this e-mail in error)
please notify the sender immediately and destroy this e-mail. Any
unauthorized copying, disclosure or distribution of the material in this
e-mail is strictly forbidden.
 
 
 
 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]
 




--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]