Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3280518
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:42:49+00:00 2026-05-17T19:42:49+00:00

I uploaded my web application already in my Production Tomcat Web Server. I am

  • 0

I uploaded my web application already in my Production Tomcat Web Server.
I am trying to test it already and it works fine on FF/IE7/IE8 but I am having a problem
on display on IE6.

I notice in the status bar that IE6 seems to be downloading the images every now and then.
Even though I did not click anything, it still downloads the images.

I am using a menu that uses images and it does not display well on IE6. Problem is that 60% of my targeted user
runs on this browser.

I am beginning to think that this is a browser cache problem. In all my JSP, I place below meta tag in all the head section.
I did this because my apps relies heavily on Ajax and I need the latest copy of my web resource.

<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="Sat, 01 Dec 2001 00:00:00 GMT">
</head>

Could this be the culprit and is there any workaround for this? How can I force IE6 to cache those images? Thanks.

I am not exactly sure if this is what you are looking for but kindly advise if I miss anything.

This is an example of an Image being downloaded. I forgot to mention that this apps runs only on our local intranet web site.

@Pekka, Is this what you are looking for?

Response Headers
Server  Apache-Coyote/1.1
Etag    W/"1957-1275442082000"
Date    Mon, 18 Oct 2010 11:37:00 GMT

Request Headers
Host    atpapps03:9090
User-Agent  Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10 ( .NET CLR 3.5.30729)
Accept  image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language en-us,en;q=0.5
Accept-Encoding gzip,deflate
Accept-Charset  ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive  115
Connection  keep-alive
Referer http://atpapps03:9090/rts/css/menu.css
Cookie  JSESSIONID=0DD210EE0B2788A7774B10D477734DA9
If-Modified-Since   Wed, 02 Jun 2010 01:28:02 GMT
If-None-Match   W/"1957-1275442082000"
Cache-Control   max-age=0
  • 1 1 Answer
  • 2 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T19:42:50+00:00Added an answer on May 17, 2026 at 7:42 pm

    In all my JSP, I place below meta tag in all the head section. I did this because my apps relies heavily on Ajax and I need the latest copy of my web resource.

    There are two problems:

    1. The meta tags are ignored by the webbrowser. Put this information in the response header.

    2. Even when it wasn’t ignored, the meta rules would only apply on the HTML output of the JSP and thus not on all linked resources (img, js, css, etc) inside the HTML output. They have each their own rules in their own response header.

    Your best bet is using a Filter which adds the Expires header on a far-future date on static content.

    private static final long DEFAULT_EXPIRE_TIME = 604800000L; // ..ms = 1 week.
    
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws ServletException, IOException {
        final long twoWeeksAhead = System.currentTimeMillis() + DEFAULT_EXPIRE_TIME;
        ((HttpServletResponse) response).setDateHeader("Expires", twoWeeksAhead);
        chain.doFilter(request, response);
    }
    

    Map this filter in web.xml on an url-pattern covering the URL of interest, e.g. /images/*.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have just uploaded my published application files to my web server but I
i developed a web application it is working fine in local server. when i
i have uploaded a php web application to google app engine , but all
I'm in charge of maintaining a web application (Lives on a Tomcat server) which
I have just uploaded my first 'website' (html+js) to a web server, and my
Need to lock the physical location file storage for the uploaded. On server, web
I uploaded my symfony2 project to server grove. The main page loads, but all
I uploaded my files to my remote server having support for ASP.Net 3.5. Website
I have a web application which I uploaded using IIS. I want the users
I have two web application hosted on different server.For eg. one is main application

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.