9iAS can't be unzip

I have download Oracle 9iAS but I cannot unzip the file.
The WinZips error message is "Cannot open file: it does not appear to be a valid archive. If you downloaded this file, try to download it again". This happen to all the files that I donwload about 9iAS. Can u help me?
Windows NT
07 Feb 2002

I've got the same problem (exact same error) with the 8i Personal Edition zip file. I've downloaded it two different times, and I've tried unzipping on multiple machines.
I finally found the link to this file (thanks to this forum), but now I've got another hurdle. Help!

Similar Messages

  • I'm running Firefox 7.0.1 and since the September 30 security update I can no longer unzip zipped files unless I reboot my computer first or run it in Safe Mode. Can anyone help me roll Firefox back to before the update?

    I regularly download zipped files from Survey Monkey. Since the latest security update, the zipped files download to my computer, but when I try and unzip them I get a message telling me the file is in use by another application. If I reboot, I can unzip the file, or if I'm in Safe Mode when I download the file it unzips fine.
    I have tried three different unzip apps and all have the same trouble. Everything was working well after the September 5 update.
    I'm running Windows XP with McAfee antivirus, Spybot, Ad-Aware and Malbytes Anti-malware. All are up to date.

    The URL below is to Adobe's Acrobat update page.
    There you'll find each of the incremental updates to Acrobat 10.
    They must be installed one at a time in sequence. 
      http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows
    Now, if after attempted updates fail then you'll need to speak with your IT Department.
    You need your install of Acrobat 10 updated to dot version 10.1.7.
    Be well...
    Message was edited by: CtDave

  • Zip file uploaded by CF can't be unzipped by CF or Java

    I'm having a WTF moment right now trying to track down this
    problem. I am creating a monitoring tool for our merge email
    system. What I would like to do is submit a job zip file through
    our upload form, in which case I just need to upload a zip file
    with cfhttp to the action page.
    What I'm running into is a problem unzipping the file when it
    is on the server. However if I go to the server the received file
    opens fine with WinRAR or Windows Explorer. If I manually go to our
    form and upload the exact same file it works fine. Really odd. I
    can only find very basic information about uploading files with
    cfhttp and tried all of the attributes that seemed logical.
    Attached is very basic example of the problem. It may end up
    being a bug in CF or something.
    The code does the following
    1. creates a text file
    2. creates a zip file with the text file
    3. tries to unzip the file to make sure it is fine
    4. uploads the file (processed by a <cfelse> block at
    the bottom)
    5. tries to unzip the file uploaded
    The error occurs in step 5. CF just can't unzip the uploaded
    file, but I can unzip it using other tools.
    ================

    danielmroberts,
    I tested it and received the same error. Using
    GetHttpRequestData() I did notice the size of the received file is
    usually 2b bigger than original. Though I do not know if that
    matters at all.
    The strange thing is if you add another parameter after the
    zip file (an empty text file or a form field), it suddenly works.
    <cfhttp url="
    http://#cgi.http_host##cgi.script_name#?upload"
    method="post" result="jobSubmitResult">
    <cfhttpparam name="zipfile" type="file"
    file="#path#temp.zip" />
    <cfhttpparam name="placeholder" type="FormField"
    value="Empty Field">
    </cfhttp>

  • Can't properly unzip archive when use  ZipInputStream

    Hello.
    Have some problem with ZipInputStream.
    I have two simple tasks:
    1. Download zip file from web.
    2. Unzip file.
    Zipped archive contains four text files.
    So, all of the above is simply resolved with a help of ZipFile class, but when i use ZipInputStream, i got only one of four files unzipped in output, where i am did a mistake?
    Here is the code:
    URL url01=new URL(....);
    ZipInputStream zis01=new ZipInputStream(url01.openStream());
                ZipEntry zipEntry;
              while((zipEntry=zis01.getNextEntry())!=null){
                    if(!zipEntry.isDirectory()){
                        PrintStream ps01=new PrintStream(new FileOutputStream(zipEntry.getName()),true);
                        BufferedReader bffr01=new BufferedReader(new InputStreamReader(zis01));
                       String line;
                        while((line=bffr01.readLine())!=null){
                            ps01.println(line);
                        ps01.close();
                    zis01.closeEntry();
                zis01.close();Edited by: 814785 on Sep 4, 2011 6:03 PM

    EJP wrote:
    PrintStream also swallows exceptions.Of course you are right. I handle all necessary exceptions ...You're missing the point. PrintStream doesn't throw them in your code. None of the print() or println() methods throws any exception at all. You have to write extra code. You have to call checkError(). See the Javadoc.Thank you, EJP, I'm already know about this moment. The question is about ZipInputStream behavior, not about how to catch and handle exceptions. There is no exceptions in my code. I tried methods with buffering, without buffering - no success.
    As i wrote, the solution is in compression method. ZipFile works - that is enougth, ZipInputStream understrand only old zip archives, to be more exact: method getNextEntry() can't read all entries. You can do your own test, i can send you my archive if you want.
    One of other variant of code without any buffers (also doesn't work properly):
    ZipInputStream zis01=new ZipInputStream(new FileInputStream("unzipme.zip"));
                ZipEntry zipEntry;
                while((zipEntry=zis01.getNextEntry())!=null){
                    if(!zipEntry.isDirectory()){
                        FileOutputStream fos01=new FileOutputStream(zipEntry.getName());
                        int count;
                        while((count=zis01.read())!=-1){
                            fos01.write(count);
                        fos01.close();
                    zis01.closeEntry();
                zis01.close();Edited by: user124 on Sep 5, 2011 4:34 PM
    Edited by: user124 on Sep 5, 2011 4:48 PM

  • Can I delete unzipped font files after Font Book install?

    Can I delete the unzipped font files for one particular font after it's installed with Font Book? I will offload the zipped file for maybe future installation on another computer but I am confused whether I need to keep the unzipped font files on my Mac after they were installed via Font Book.

    Yes

  • 9iAS Can't deploy EJB

    I just installed 9iAS under linux and tried some samples with JDeveloper.
    I made a WAR containing some html, servlets and jsp documents, deployed it (JDeveloper automatically creates an EAR containing my WAR) and it works!
    Then I tried to create a simple session bean and wanted to deploy it too.
    When I deploy it I get:
    ADMN-300075
    Exit status of dcmctl: 1
    Any suggestions?

    Thorick, Thanks for the reply. I really had my doubts that anyone was listening.
    The code is being generated via Eclipse and "deployed" on WebLogic using the WebLogic Workshop. Eclipse/WebLogc is a constraint that we have to work under for the military. I have used all of the examples provided by WebLogic and any other sources I can get to generate appropriate deployment descriptors. I am getting the same exact error that Harry got back in November and he received no answers. I will try to post as you suggested, but if you can be of any further help please email me directly (click my name) or post here as I check this note religiously.
    David

  • Oracle 10G R2 can't be unzipped after downloaded

    On the download page, the check sum number is 1491417549.
    But the number for the downloaded file is 1405809297.
    It can't be decompressed.
    root@acibd04-9 # gzip -t 10gr2_db_sol.cpio.gz
    gzip: 10gr2_db_sol.cpio.gz: invalid compressed data--crc error
    gzip: 10gr2_db_sol.cpio.gz: invalid compressed data--length error

    Greetings,
    I ran into this myself. So I run this and it seems to work.
    cpio -idmv < 10gr2_db_sol.cpio.gz
    It does not seem to be compressed.
    Regards,
    Bill Chadbourne

  • Can makepkg use unzip to unpack zip source file instead of bsdtar?

    I happened to download a source packages with zip format. When I use makepkg to make a arch package, it goes wrong becase it couldn't run configure. And I found the files in a zip file unpacked by bsdtar lost their mode bits information, but it's ok when unpacked with unzip. So I recommend that makepkg have a config of uncompressing programs.

    Use noextract=() and unzip it yourself.
    http://code.google.com/p/libarchive/iss … %20Summary

  • How can i check the unzip file has finished unzip process?

    i am using 7zip to unzip the file. java program can check the unzip file has finished unzip process?
    Edited by: rayray2008 on Feb 12, 2008 7:14 PM

    Downloading and burning Linux or Windows ISO images for example with a single flipped bit can cause system instability nearly impossible to track down, and not otherwise detectable. An MD5 checksum (OR SHA) check will quickly detect any such transmission errors. Not something anyone I know bothers to use unless it's important data. The temporary fix of changing the about:config setting, then expanding to full screen in downloads was working. But now, based on my interpretation of comments made on the authors Sourceforge page, Firefox has made updates that prevent the MD5 Reborned Hasher from working in Firefox at all. If that's true, I would really like to know the reason. With all this talk of NSA spying, I would think more people would be interested in making sure someone isn't tampering with their downloads. I have no idea. But I do believe the wonderful volunteers at Firefox need to figure out a way to make this valuable piece of security software whole again. Thank You.
    PS: For those needing to verify a file, you might want to try the "Microsoft File Checksum Integrity Verifier" kb841290 . It's old, but does large file MD5 from a command prompt.

  • Can not unzip the zip file of AIR 3.4 beta2 sdk for windows

    http://labsdownload.adobe.com/pub/labs/flashplatformruntimes/air3-4/air3-4_p2_sdk_win_0807 12.zip
    the file can not be unzip.

    Could you please try again, it's fixed now, Apologies for the inconvenience.
    -Thanks
    Pahup

  • Can Oracle9i and Oracle 9iAS co-exist on same machine.

    I was wondering if Oracle9i and Oracle 9iAS can co-exist on same machine. I like to play around with 9iAS and I already have 9i database up and running on this one box.
    Thanks.

    What issue are you having? You can install both versions of Forms into separate homes. You then have two versions of your Forms application, in different directories. Then your FORMS60_PATH points to your Forms 6i forms, and your FORMS90_PATH points to your Oracle9i Forms forms. There is no conflict.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Can't start the web site of Reports Services

    Does anybody know how to fix this problem?
    After installation of the 9iAS, can't start the web site of
    Reports Services
    and Form Services from the URL listed in the postinstallation
    guide using
    default port no 1950. The dev60html and devdem60/demo
    directories are not
    existing, the runrep.htm and runform.htm files are in the
    directory
    tools/web60/html. I also tried to replace the dev60html with
    tools/web60/html
    in the URL but it won't work.
    During the installation the discoverer and portal tools failed,
    the portal
    hanged at 100%, and the discoverer didn't install the util
    directory. But we
    can login to the portal from the URL.
    Below is the message when I start from the command line: I am
    not sure if it is
    working.
    $ reports60_server start
    Stopping Reports Server Rep60_abc.com processes...
    kill -9 5647
    Reports Server Rep60_abc.com stopped.
    Starting new Reports Server Rep60_abc.com .
    rwmts60 name=Rep60_abc.com
    Stopping Reports Server Rep60_abc.com processes...
    kill -9 5910
    Reports Server Rep60_abc.com stopped.
    $ reports60_server start
    Stopping Reports Server Rep60_abc.com processes...
    Could not find running instance of Reports Server
    Rep60_abc.com
    Starting new Reports Server Rep60_abc.com .
    rwmts60 name=Rep60_abc.com
    Thanks

    Hi,
    Dumb question : is one of your server listening on port 7001 ? If not, should it ?
    What is the expected behavior ? A managed trying to connect to the admin server ?
    Check the value for ADMIN_URL value, set in the startManagedServer.sh or cmd.
    Another dumb question : do you have a firewall ?

  • Unzip the freeware file

    I downloaded all the files of Oracle 9i for the Sun Solaris 8 machine Intel Plateform. I can't somehow unzip the files. I can't run cpio utility if it is not unzipped. I tried every thing such as gunzip -d, gzip, zcat, and uncompress. It gives me that it is not in the gunzip, gzip, and compress format.
    Has any body hat the same kind of problem?
    Thanks,
    Rauf Farrahz

    You may want to post this note in the "general" database category. People that read this forum are dealing with interMedia (text, image, audio, video)
    issues.

  • How to run proc in 9ias

    Hi,
    We had developed a project in Oracle D2k and Pro'c and deployed in 9iAS.There is some problem while invoking pro'c files from the form menu through web browser in the client system.
    Normally a proc executable runs in the client side whereas if i am using a web browser the executable is running on the application server system.
    how to run the pro'c file on the client system in 9ias.
    can anyone help me to overcome this!!
    with rgds
    prabhu.

    SSS SSS -
    A good description on the ins/outs and workings of mod_plsql is provided with the Oracle9iAS documentation.
    All of the documentation is published on OTN. Specifically for mod_plsql, see
    http://otn.oracle.com/docs/products/ias/doc_library/1022doc_otn/apps.102/a90099/toc.htm
    cheers!
    -steve-
    null

  • Protect jar file from unzip utility

    Hi
    I have an application in .jar file and I don't want that the client
    can extract or unzip and see the contents of my .jar file.But still the .jar file
    could run by mouse double click or java -jar command.
    Anyone can give me an idea how to do it.
    Thanks...

    If java can read it on your client's machine, the client can read it. There is no way to prevent this. Here's the general cycle:
    int protectionMode = chooseProtectionMode();
    boolean haveCustomers = true;
    while (haveCustomers)
      switch (protectionMode)
        case OBFUSCATE: 
          //You can obfuscate your code to make it (marginally) harder to
          //reverse-engineer.  If your client is really interested in your
          //code, this won't keep them from figuring out what it does.
          break;
        case ENCRYPT:
          // You can encrypt most of your class files, and build a
          // decrypting classloader, and build a framework that calls
          // the decrypting classloader to get at the rest of the jar. 
          // Of course, your client can just arrange to call your
          // classloader from their own, and write the (decrypted)
          // classfiles to disk, and then reverse engineer them.
          protectionMode = OBFUSCATE;
          break;
        case STATECHECK:
          // You can put some kind of check in your decrypting classloader
          // that calls System.exit() if it discovers it's being called in
          // such an unfriendly way.  Your client will take about 10 minutes
          // to find and remove the check.
          protectionMode = ENCRYPT;
          break;
        case REMOTE:
          // You can keep your code on your server and let the client run
          // something that talks to it.  The client will complain
          // vociferously, and refuse to use your app. 
          haveCustomers = false;
          break;
        default:
          // You can decide to stop stressing over something you can't
          // help, and write code that people will buy
      }(Sorry - in an odd mood, seen this question or one like it too often recently, not enough sleep...)

Maybe you are looking for