Download of ZIP redirects to HTML page

The download of Oracle Collaboration Suite 9.0.3.1.0 (Single Box) for Windows seems to have stopped working since yesterday.
Yesterday I downloaded ZIP file 1 of 3 (1,4 GB).
This morning I wanted to download the second file, but for all three ZIP files I am now redirected to http://otn.oracle.com/content.html and cannot save (download) the ZIP files.
The link seems to be correct for the files when I hold the mouse over the links, but when I click the links I am redirected.
Could someone please correct this?

Thanks - we are looking at this issue now.
Regards,
OTN

Similar Messages

  • Portal logoff:  Need to redirect KM html page

    Hi all,
    Currently When I click logoff button its rediredt to log in page. But I need to put one KM html page with some message and if user want to re-login i will give one CLICK here for relogin.
    Im trying to do this through PAR file.  Please some one suggest how to give KM URL
    Thansk
    Polaka
    Edited by: polaka123 on Apr 18, 2011 2:10 PM

    Hi Polaka,
    Could you please try the below two?
    Option1: please check, whether you are acutally logged off or not? Even if you are shown the logon page it could be possible that the URL redirected is not shown in the browser. To do this just replace '/irj/portal' with'/index.html' then som UME or NWA link. If you are in without proving uid/pswd then you are not logged off at all, else you are logged off but just not redirected to the URL you have mentioned. If in the second case(logged off but not redirected, kindly check the below property in visual admin- set it to false.
    (Did you happen to set the '"ume.logoff.redirect.silent=false" in the visual admin)?.
    Then restart server and clear your browser cache too.
    Option2: Repeat the above steps trhough config tool and restart server.
    (this must work). But if possible try the option1 and hopefully it should work.
    [Config tool property editing|http://help.sap.com/saphelp_nw04/helpdata/EN/0b/50ad3e1d1edc61e10000000a114084/frameset.htm]
    For accessing KM content(anonymous), please check the link below:-
    [Anonymous KM Access (SAP -How to)|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0ab0ada-f56f-2910-a5b6-dae4f307da7e?QuickLink=index&overridelayout=true]
    Thanks,
    Jakes.

  • JSP, downloading files and show html page

    I like to download files and show a html page on JSP.
    With the source following, downloading works well.
    But, it is just remained on the previous page, not showing the next html page.
    Someone tell me why is it?
    <%@ page import="java.io.*, java.net.URL"%><%
    String file_name = request.getParameter("file_name");
    File fileDir = new File(config.getServletContext().getRealPath("upload/"));
    File theFile = new File(fileDir, file_name);
    FileInputStream fin = new FileInputStream(theFile);
    response.setHeader("Content-Disposition","attachment; filename=\"" + theFile.getName()+"\"");
    response.setContentLength((int) theFile.length());
    BufferedInputStream bf = new BufferedInputStream(new FileInputStream(theFile), 8096);
    int i;
    while ((i=bf.read()) != -1)
    out.write(i);
    bf.close();
    out.close();
    %>
    <html>
    <head>
    <title>file download</title>
    </head>
    <body>
    <p align="center"> </p>
    <p align="center"><b><font face="Tahoma" color="#000000" size="2">You have
    successfully downloaded your file(<%=file_name%>)!</font></b></p>
    </body>
    </html>

    You's already close the JSP output stream befor you try and write your html confirmation, and I don't think browsers can provide the kind of functionality you're trying to demonstrate here. A browser will download the file and open it directly itself or using another application based on user input (e.g. save as, open file, etc.). Once the file is opened or downloaded, it's done!
    I think your best bet is to show a dialogue that the user's download should begin, then set the pages href w/ JS to the location of the file, same way other sites that allow you to download files do it. Go take a look at download.com or something like that.
    Hope that helps.

  • Up/download html-page including all images

    Hi y'all,
    I'm developing a quite normal Webbrowser-Webserver-DatabaseServer application with Web-Frontend, Servlets, Jsp, Beans and good old JDBC-Technique. It's kind of a small dictionary.
    What I need is a solution for the following problem:
    Every item of the dictionary should be made of a html-page which could contain images, too. An administrator builds these pages and uploads them to the webserver. So how can I upload the html-page with all its images automatically?
    Some thoughts about it:
    - can the html-code be searched for images by java-script, and could they be uploaded automatically then?
    - do I need a AWT/Swing frontend?
    - or may a httpServlet request the images after getting the html-page?
    - packing all the files together into a .zip-File would not be soooo nice, the admin may be dumb.
    The same problem I have with downloading a page onto the administrators computer.
    well, I think I'm in trouble.. :)
    koem

    I'm not extremely experienced as a JSP/Java programmer but here are my thoughts:
    It sounds like your basic requirements are fairly simple, but you are taking the long way around to get there. If it is a dictionary-style app and the administrator is of limited experience then you need to keep things simple.
    Why create pages to upload when you can create a template with JSP and insert the text data and the images from a form? Text and link info can be stored in a database and the actual image can be uploaded to a directory or put in the db if you know how. Java Server Pages (O'Reilly) has the image upload code you need.
    Am I on track here?
    Brad

  • HTML page with FLASH object doesn't reload upon a redirect

    Am using:  ECC 6.0 and ABAP SAPGUI development
    Hi All,
    I'm seeing a frustrating issue that i'm hoping others have seen and resolved.
    Here is what i'm attempting and below that is the issue:
    1)  I have created a ABAP program in which i'm using the HTML viewer (class:  cl_gui_html_viewer ) within a container that is on one of my ABAP screens.
    2)  I load up a web page on our (intra)network that displays an HTML page that has a nice FLASH navigation object.  This navigation object operates as such - when a node is clicked it will go to another html page (on the same network) that will then parse apart what node they clicked on and via javascript submit a form in which I've defined a SAPEVENT for.
    3)  My ABAP program has defined the event handler for this sap event and calls the appropriate method just fine (ON_SAPEVENT).  I am able to trap the event details and do some other things.
    This is all working just fine, except....I want it to then go back to the first page (original page) that contained the FLASH navigation on it upon after the page that trapped the SAPEVENT is complete automatically.  Easy? - that's what I thought...I tried several different ways to do this "go_back" on the html control, "show_url" (with the original URL)...even a redirect in the actual html page itself to go back.
    They all DO go back to the first page, however my flash navigation object on that page NEVER shows up!  It's almost like the frontend is thinking it is already loaded and will not load it again.  I thought maybe I need to do a "flush" or some such - but that didn't seem to solve it.  Has anyone seen this and resolved it or knows what this is?  The thing is...I can completely exit out of the program - and the flash object will load just fine (but only after I wait a minute or so).  What gives...anyone know?
    Thanks in advance,
    Matt

    Am using:  ECC 6.0 and ABAP SAPGUI development
    Hi All,
    I'm seeing a frustrating issue that i'm hoping others have seen and resolved.
    Here is what i'm attempting and below that is the issue:
    1)  I have created a ABAP program in which i'm using the HTML viewer (class:  cl_gui_html_viewer ) within a container that is on one of my ABAP screens.
    2)  I load up a web page on our (intra)network that displays an HTML page that has a nice FLASH navigation object.  This navigation object operates as such - when a node is clicked it will go to another html page (on the same network) that will then parse apart what node they clicked on and via javascript submit a form in which I've defined a SAPEVENT for.
    3)  My ABAP program has defined the event handler for this sap event and calls the appropriate method just fine (ON_SAPEVENT).  I am able to trap the event details and do some other things.
    This is all working just fine, except....I want it to then go back to the first page (original page) that contained the FLASH navigation on it upon after the page that trapped the SAPEVENT is complete automatically.  Easy? - that's what I thought...I tried several different ways to do this "go_back" on the html control, "show_url" (with the original URL)...even a redirect in the actual html page itself to go back.
    They all DO go back to the first page, however my flash navigation object on that page NEVER shows up!  It's almost like the frontend is thinking it is already loaded and will not load it again.  I thought maybe I need to do a "flush" or some such - but that didn't seem to solve it.  Has anyone seen this and resolved it or knows what this is?  The thing is...I can completely exit out of the program - and the flash object will load just fine (but only after I wait a minute or so).  What gives...anyone know?
    Thanks in advance,
    Matt

  • How to use a jdbc query result to redirect to a variable html page

    uh, my problem is that i'm making a servlet which should redirect to a variable html page based on jdbc query (I'm really sorry if this is not the correct forum to post it, but since it's jdbc i thought it was).
    Anyway, the problem is that when a string say, "mystring" is equal to the value in a column, say "column1" of the database then page should redirect to "mystring.html".
    Is this possible, if so then how?
    and if not then is there any other way to solve my problem?
    please, help!!
    thanks in advance.

    uh, since i've already asked man, please gimme an answer if you know, it'll be appreciated.
    OK, HERE'RE THE DETAILS:(as you requested them)
    i have an html page where there's a textfield say "t1", the value of that text field is sent to the servlet which compares the value of the field with the value in Database, say "db1" in column say "column1".
    if there's a value in the column matching the value inputted in the textfield, then i need the servlet to redirect to an html page of the same name as inputted in the textfield. Hope that helps you understand.....
    thanks in advance.......

  • Firefox downloads html page instead of opening it

    I have an Apache web server (2.2.24) on a Red Hat Linux server (RHEL 5.8). On the web site I have a link to an html page that is not in the web directory, but is on the file system. When I click on the link to go to the web page, Firefox will not render the html page within the URL of the web site--it instead wants to download the html page before it displays the html. So, instead of getting http://mywebsite.com/help.html I get file:///C:Users/myuser/AppData/Local/Temp/Help.html. In internet explorer, the web page opens just fine: http://mywebsite.com/help.html--it does not try and download the file

    Our httpd.conf file has DefaultType text/plain
    The web page in question has a header of:
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en] (X11; I; HP-UX B.10.20 9000/879) [Netscape]">
    And yet Firefox still wants to download the page instead of render it directly in the browser :-(

  • Downloading HTML page blocked by site

    Hello,
    I am attempting to download the html page at the following url.
    http://www.rcsb.org/pdb/results.do?&startAt=30&endAt=39&inputQuickSearch=protein%20kinase
    However, when I do so with my java code.
    URLConnection urlConn = theURL.openConnection(); //get the connection
    BufferedReader myStream = new BufferedReader(new InputStreamReader(urlConn.getInputStream())); //get the stream connection
    String oneLine = "";
    try{ while ( (oneLine = myStream.readLine()) != null) { theHTML.append(oneLine + "\n"); } }
    catch(IOException e) { throw e; }  //throw the exception to the invocation
    myStream.close();I actually get a response with a page saying my "browser" isn't compatable.
    Is there any way around this? Is there anyway I can download the information from the page like I would in a browser?
    Cheers,
    Chris

    Any idea of the value I would set it to?No, but if you go here http://www.google.com/search?hl=en&lr=&q=http+header&btnG=Search you'll see some websites that will show you what your browser is sending. You should be good if you mimic the relevant headers from a browser that works.
    This would be done in a fashion similar to the
    example at
    http://javaalmanac.com/egs/java.net/Post.html right?
    I didn't see them setting any request headers there.

  • Problem in downloading an html page that contains images

    Hi,
    This is surekha
    I am facing a problem in downloading an html page that contains images
    The file is downloading , but when I access the the downloaded file it displays X marks in the place where images r present....
    How can i download a html file along the images it contains
    Please help me ...........

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Just downloaded Firefox 23 update and now links that show up in my browser searches redirect to other pages

    I downloaded the new update to Firefox 23 (I wasn't sure about it because it looked very weird and behaved differently) and immediately when I clicked on some (not all) of my bookmarks I was redirected to other pages I have never seen before. Also, when I used either Bing or Google search engines, when I click on one of the links given by the search I got redirected to those same odd pages every time. I closed Firefox and ran a virus scan, and even though it caught the usual number of tracking cookies and malware, they were all the same ones it usually catches. I could not find any strange extensions or plugins in the Firefox list, other than the plugins page now has a tab by every item that shows "always activate". Are you hearing from other people about similar problems?

    Problems with bookmarks and history not working properly can be caused by a corrupted places.sqlite database file.
    You can check for problems with the places.sqlite database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file

  • Trying to redownload shockwave, Download Now button redirects me to home page?

    Was trying to get into a game that was having connection problems, so I decided to reinstall shockwave.
    Every time I hit "Download Now" it redirects me to the home page of adobe. I know I have it uninstalled. I have restarted my laptop a few times.
    Is there any direct download link? I'm getting super peeved.

    Did you search the forum before posting? Here is a link to the Windows full installer

  • Redirect HTTP 404, 401 errors to custom html pages ?

    Does anyone know how to set up Weblogic 6.1 to TRAP and REDIRECT http 404, 401 etc error messages to custom predefined friendly html pages on the server ?? Here, WL takes http requests directly and outputs the results directly back to the browsers (not going through a proxy server like IPlanet or other web servers).
    So how do I trap HTTP error messages in WL and redirects them to my own custom error pages ??
    Help!

    Hi Aswin,
    Vintela libraries changed in SP3. Usually a 404 error means:
    - Typo in any of the xml tags (you can check opening it in IE)
    - Typo in the SPN (cannot be found). However, you mention seeing in stdout.log "credentials obtained" so it looks that's fine
    - If you are using keytab, comment those lines in web.xml and use the password in Tomcat > Java
    If nothing mentioned above solve the issue, I will suggest you to enable debug in Tomcat and post here the stdout.log
    Regards,
    Julian

  • AFter the latest download, my e-mail service keeps getting a bar at the top "Firefox prevented this page from automatically redirecting to another page". I have to keep hitting the "Allow" link? How do I get rid of this?

    Ever since the last update, I'm having problem accessing my e-mail account. I keep getting an annoying bar at the top of the screen "Firebox prevented this page from automatically redirecting to another page." I have to keep hitting the allow button, sometimes twice. And when I do get into the accounts the bar jumps in and out every time I open a new e-mail, or delete and old one.
    How do I get rid of this. I've had this account for years, with a very reputable private e-mail provider. This is nuts.

    See:
    *Firefox/Tools > Options > Advanced > General : Accessibility : [ ] "Warn me when web sites try to redirect or reload the page"
    The setting in "Tools > Options > Advanced > General" is meant as an accessibility feature, as you can see by the label of that section, so that people with disabilities or people who use screen readers do not get confused and is not meant as a safety protection to stop redirecting.
    See also:
    *https://support.mozilla.com/kb/Options+window+-+Advanced+panel#General_tab
    *http://kb.mozillazine.org/accessibility.blockautorefresh
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • Problem redirecting to dynamically created htmls pages

    Hello All,
    Scenario is like this, i am creating the dynamic htmls pages, in the servlets
    and after creating the htmls pages in the servlets , the control passes to
    the jsp page, where i am including the html page that is created at the servlets,
    its works fine, but some time it shows me null exception at the jsp page, i.e
    it won't find the htmls pages, even they are created b'fore.
    I am using weblogic server 6.1 with sp3.
    Can anybody know what is the reason.

    Same problem here. Hopefully apple can get this fixed asap. I tried this with numbers and an Excel file and it worked just fine.
    Message was edited by: Spectre
    Message was edited by: Spectre

  • Downloading 92010NT_Disk1.zip

    I have downloaded the 92010NT_Disk1.zip file twice and each time the file download has completed successfully. However, when I go to unzip the file, I get an "invalid archive" message. The size of the file on the http://otn.oracle.com/software/products/oracle9i/htdocs/winsoft.html page is 612802971 bytes (598440 kB) however when I am downloading the file, the message in the dialogue box quotes 584 mB, so there is a discrepancy somewhere. I have tried using pkzipfix but this doesn't work either.
    If this problem has been resolved, please direct me to the forum/post where I can read the solution. Thanks!

    Hi OTN, thanks for checking into this. I tried using the GetRight utility program but got the same message when I went to unzip the file that was downloaded by GetRight. I am currently trying to download the file from different sources to see if that helps. Thanks for your help.

Maybe you are looking for

  • Error in converting SQL 2014 Trial to Full version using VLKey

    Hi, I am currently trying to upgrade my SQL 2014 evaluation version to the full version. I have purchased a Volume License for SQL Server 2014 Server/CAL and have extracted the product key from the ISO File. I have verified this product key with the

  • Pagination example 1 ... | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17

    Hello there. As I have sought out a reasonable solution for paging nagivation and compared designs such as Google's search result paging to designs such as this forum's paging navigation, I have decided to go with this forum's design which I found so

  • BPM - Exception not thrown

    Hi , I created a BPM in which I I have Receive Step -> Send Step -> Block Step -> Block Processing branch - Receive Step ->Send Step Block Dead Line Branch - Dead line of 1 minute and Control step for raising exception Block Exception handler branch

  • How do you make a button download pdf file in edge animate?

    Hi does anyone know the code or know how to make a download button in edge animate, that when you click the button it will fetch a pdf file from your pc root folder and offer it to download.

  • Duplicate attachment in UWL workitems

    Hi Experts, We are having NW portal 7.3, SP08, Issue: Workitems in universal worklist are having duplicate attachment entries, this is not what is expected, as per requirement there must be only one entry visible one workitem, Please find below scree