• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Internet Explorer is unable to open Office documents from an SSL Web site

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi

my problem is-
"Internet Explorer is unable to open Office documents from an SSL Web site"

in my application.

The error is-

"The page cannot be displayed.
The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings.
Cannot find server or DNS Error"

after removing responce.setHeaders(catch-control, no-chache), I also fase the same problem.

Thanks.
Pramod
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You have not provided enough information for us to help you. I have read the post twice and I'm not even sure if we're talking about a Java application, let alone which forum this should be discussed in.
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This isn't a Java question in any way, shape or form, let along an advanced one. Moving to "General Computing".
 
Sheriff
Posts: 28371
99
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Although

responce.setHeaders(catch-control, no-chache)

suggests that the question might possibly be about a servlet running on the server in question...
 
Sheriff
Posts: 1367
18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"pk chaurasia",

Please check your private messages for an important message from me.

Kind regards,
Katrina Owen
JavaRanch Saloon Bartender
 
Ranch Hand
Posts: 2308
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by pk chaurasia:

"The page cannot be displayed.
The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings.


Just interpreting the response message.

Doesn't look like a standard MSIE message.

Seems like this is one of the standard IIS error message.

Might be its a issue with server .The requested file might not be available.
Does the application under consideration allows to view the same file without SSL ? If Yes , try to see if you get the same error without SSL.
 
Ranch Hand
Posts: 820
IntelliJ IDE VI Editor Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi. I just dealt with this same problem
https download of generated Excel file works fine in Firefox, but IE refuses to download it.

http works fine in both browsers.

The issue is that you need to set some headers for IE
The following worked for me:


references:
http://support.microsoft.com/kb/812935
http://joseph.randomnetworks.com/archives/2004/10/01/making-ie-accept-file-downloads
http://forum.java.sun.com/thread.jspa?threadID=586671
 
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You will see this problem using SSL and IE while trying to download files. It's an IE bug (surprise) - read about it here:

http://support.microsoft.com/kb/316431
 
Ranch Hand
Posts: 82
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
seeing the exact same issue. IE is connecting to IBM http server (apache) and will not open the excel doc. However firefox works fine.

we do not want to change the registry for each client and would rather make the change on the IHS. It appears we need to make this change in httpd.conf? something called mod_headers??

any help is appreciated. thanks
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Tim McGuire,

Thanks for the solution. It is working fine in my app.
 
The moustache of a titan! The ad of a flea:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic