W10TP - Trying to extract zipped files for VPN setup - Security Warning

I am trying to extract .msi & exe files from a zipped file but receive "Windows found that this file is potentially harmful." To help protect your computer windows has blocked access to this file." I cannot see an option where i can
override this restriction. Please advise.

Hi Broccoli! Are you using FQDN or IP address? What firmware is loaded on your WRVS4400N? I had this problem before with WRVS4400N, I can’t establish VPN connection with other router when I’m using FQDN, according to Linksys tech support, if I’m using FQDN with WRVS4400N, then I also have to use the same model on the other side. I encountered this using 1.00.14 firmware. Have you tried the latest firmware (1.00.15)?

Similar Messages

  • No luck trying to extract .inf files from drivers downloaded as zip files

    Hi,
    I am trying to extract .inf files from drivers downloaded as zip files from the Toshiba website, but I'm having no luck.
    I am trying to deploy images using WDS on server 2008 and need the inf files for this to succeed, does anyone have the answer to this problem.
    thanks in advance.

    Hi
    I found this tip:
    Someone wrote this:
    +You have to run the installer, wait for it to get to the first point where you click Next to continue, and then leave it sitting there. Go into your system's Temp and find the particular one with the installation files inside it that were extracted, then copy it someplace, go back to the installer and cancel it.+
    You could also try this freeware application to extract the package:
    http://www.legroom.net/software/uniextract

  • Problems creating/extracting ZIP files, anyone?

    Greetings,
    I am having some odd bugs with OSX in creating and extracting ZIP files.  I’m curious if anyone else has run across this or if anyone has any remedies to suggest.
    The issue is that when I extract a ZIP archive, the extracted files have their creation dates and modification dates changed from the original versions.  For example, I have a directory created in 2010 and all the files were created and last modified in 2010.  However, when I ZIP the directory and re-extract it, many of the file dates change.  Some files have the creation dates changed so to match the last modified date.  In other cases, both the creation date and modification date are changed to something later than both, perhaps the date the directory was ZIPed or the date the directory was extracted.  And some files don’t seem to have the dates changed. 
    I have tried various options, such as terminal, and third party programs (BetterZip, Keka, Stuffit, & Archiver to name a few) and they all seem to have some variation of this behavior.  I have tried creating the Zip with one program and extracting with the other, and still this behavior persists.  Different files seem to be affected with each combination of creating and extracting programs. 
    Another odd behavior was that I tried password protecting some directories with financial data, and OSX could create the ZIP file with the password, but OSX could not unzip the file with the password it created for some files.  In every case, third party program could unzip the files with the password created in the terminal command.  This seem to happen inconsistently. 
    I have tried creating a dummy account and tested it in that account, with similar results.
    I’ve read the man page for the command line version of ZIP to see if there is some -option to preserve dates, but found nothing.  The typical command looks like this:
    > zip -er filename.zip  sourceDir
    > unzip filename.zip
    File types include directories, PDFs, Text docs, Quicken files.  Ive tested other directories too with other file types.  It doesn’t seem to affect every file, but seems unpredictable.  Luckily, I still have the original uncompressed version of most directories.  But I really want to archive some directories and unarchive them when needed.  The dates matter to me because they are mostly financial files and I use the dates to know what versions were used for taxes and other things.  Also, if dates change, then backup programs start replacing the good backups with files with the corrupted dates. 
    I’d appreciate any suggestions or feedback.  I there some bug in the ZIP protocol?  Is there some bug in OSX file system that is corrupting the dates with the archive and unarchive process? 
    Thank you for any suggestions-
    OSX 10.9.5,
    MBPro 2012

    OK, sorry did not read it correctly.  Read the first sentance and quit.
    No, Bridge is just a browser.  You can extract more than one file at a time in Win. Explorer.  You have to do them individually, but can run multiple extractions at the same time.
    There are other zip/unzip programs out there.  I know the the CS6 beta a number of users could not open it with WinZip and used alternate product just fine.

  • Is there a way to restore photos from Drop box to my desktop iPhoto in a large batch instead of one at a time? I tried and a zip file was downloaded but won't open. Says file format not recognized.

    Is there a way to restore photos from Drop box to my desktop iPhoto in a large batch instead of one at a time? I tried and a zip file was downloaded but won't open. Says file format not recognized. I see how to do it one at a time with the "download" button in Dropbox but that's so cumbersome for lots of photos.

    Have you tried these avenues?
    Contact us - Dropbox
    Dropbox Help Center
    Dropbox Forums
    Submit a help request - Dropbox
    OT

  • Error while extracting zip file

    I am using the following code to extract zip files from jar file
    source = "zip/test.zip"
    destination = "c:\\"
    public void unzip(String source,String destination){
              try{
                   ZipInputStream in = new ZipInputStream( this.getClass().getResourceAsStream(source));
                   FileOutputStream fos = null;
                   ZipEntry ze = null;
                   File ff = null;
                   while ( (ze=in.getNextEntry() ) != null ){
                        System.out.println( "name=" + ze.getName() );
                        ff = new File( destination + ze.getName() );
                        if ( ze.isDirectory() ){
                             System.out.println("making "+ze.getName()+" dir ("+ ff.mkdirs() +")");
                        else{
                             fos = new FileOutputStream( ff );
                             byte[] buf = new byte[1024];
                             int len;
                             while ((len = in.read(buf)) > 0){
                                  fos.write(buf, 0, len);
                             fos.close();
                             System.out.println("wrote file "+ff.getPath()+" success=" + ff.exists() );
                   in.close();
              }catch(Exception e){
                   e.printStackTrace();
         }     But i found error in extracting zip file
    java.io.FileNotFoundException: C:\eclipse\.eclipseproduct (The system cannot find the path specified)
    I need some quick response on it.

    Nothing to do with the resource path....thats fine. Use the code below.....most likely this will fix it.......
    Added a check for directories that start with a ".".  The File utility probably thinks its a file, also added a try....check it does make the "." directories.........dont forget the dukes.
        ZipInputStream zis = null;
        FileOutputStream fos = null;
        try
          zis = new ZipInputStream( new FileInputStream( "C:\\your_path\\your_zipfile_or_jar.zip" ) );
          ZipEntry ze = null;
          File ff = null;
          while ( ( ze = zis.getNextEntry() ) != null )
            System.out.println( "name=" + ze.getName() );
            ff = new File( "C:\\your_path\\" + ze.getName() );
            if ( ze.isDirectory()  || ze.getName().startsWith("."))
              try{ System.out.println( "making " + ze.getName() + " dir (" + ff.mkdirs() + ")" ); }catch(Exception e2){}
            else
              fos = new FileOutputStream( ff );
              byte[] buf = new byte[1024];
              int len;
              while ( ( len = zis.read( buf ) ) > 0 )
                fos.write( buf, 0, len );
              fos.close();
              System.out.println( "wrote file " + ff.getPath() + " success=" + ff.exists() );
          zis.close();
        catch( Exception ex )
          ex.printStackTrace();
        finally
          try { zis.close(); }catch(Exception ex){}
          try { fos.close(); }catch(Exception ex){}
        }

  • I'm trying to extract audio files from my OLYMPUS Digital Voice Recorder VN-6200PC I am getting this error whenever I try to play its file type on my MacBook Pro,"The document "VN622195.WMA" could not be opened. The movie's file format isn't recognized."

    I'm trying to extract audio files from my OLYMPUS Digital Voice Recorder VN-6200PC
    I am getting this error whenever I try to play its file type on my MacBook Pro,"The document “VN622195.WMA” could not be opened. The movie's file format isn't recognized."

    The mac has no native way to read .wma files (these are Windows Media Audio files).  Do a search on the internet for playing wma files on a mac.  You will find several links to solution (one is to use flip4mac).

  • How can I fix error code 131:4? Licensing for this product stopped working. I have windows vista home edition and CS4 Design Premium. I downloaded licensing zip file for windows but I can't seem to get it to launch. Look forward to help from anyone

    How can I fix error code 131:4? Licensing for this product stopped working. I have windows vista home edition and CS4 Design Premium. I downloaded licensing zip file for windows but I can't seem to get it to launch. Look forward to help from anyone

    Steve,
    I appreciate your answer.  While it might work, I'm a bit hesitant to remove the other programs as a possible solution since they are all currently working.
    With Acrobat 9 Pro failing with the OS 10.7 upgrade, I'm hoping that there is a less severe solution.
    Since the trigger appears to be 10.7 and may have something to do with the discontinued support of Rosetta, I could be spending a few hours working on a reinstall without a change.  Yes, it might work.  The "might" is the part that makes me hesitate.
    Is anyone else out there on OS 10.7 and running Acrobat 9 Pro?  Any issues with anyone else?
    Thanks Steve.  I do appreciate your offering a solution.  I may end up trying it if nothing else comes together.
    Mark

  • Stage Area Size is 38 gb after extracting zip file of oracle R12.1.1

    Dear All,
    I need verification from you that after extracting zip file I have total size 38 gb after extracting zip file of oracle R12.1.1 for solaris 5.1 sparc 64 bit.
    I have downloaded 42 files.
    B53824-01 Part 1 of 4      29M
         B53824-01 Part 2 of 4      97M
         B53824-01 Part 3 of 4      393M
         B53824-01 Part 4 of 4      81M
         V15635-01 Part 1 of 3      1.2G
         V15635-01 Part 2 of 3      1.2G
         V15635-01 Part 3 of 3      1.1G
         V15636-01      976M
         V15637-01 Part 1 of 3      1.7G
         V15637-01 Part 2 of 3      1.7G
         V15637-01 Part 3 of 3      576M
         V15638-01 Part 1 of 3      1.6G
         V15638-01 Part 2 of 3      1.7G
         V15638-01 Part 3 of 3      557M
         V15639-01 Part 1 of 3      1.6G
         V15639-01 Part 2 of 3      1.6G
         V15639-01 Part 3 of 3      463M
         V15640-01 Part 1 of 3      1.5G
         V15640-01 Part 2 of 3      1.6G
         V15640-01 Part 3 of 3      514M
         V15641-01 Part 1 of 3      1.2G
         V15641-01 Part 2 of 3      1.6G
         V15641-01 Part 3 of 3      756M
         V15642-01      1.0G
         V15643-01 Part 1 of 7      567M
         V15643-01 Part 2 of 7      560M
         V15643-01 Part 3 of 7      593M
         V15643-01 Part 4 of 7      612M
         V15643-01 Part 5 of 7      582M
         V15643-01 Part 6 of 7      480M
         V15643-01 Part 7 of 7      551M
         V15644-01 Part 1 of 2      1.5G
         V15644-01 Part 2 of 2      1.6G
         V15645-01      1.7G
         V15646-01 Part 1 of 3      1.5G
         V15646-01 Part 2 of 3      1.2G
         V15646-01 Part 3 of 3      1.1G
         V15647-01 Part 1 of 3      1.7G
         V15647-01 Part 2 of 3      1.2G
         V15647-01 Part 3 of 3      626M
         V15648-01 Part 1 of 2      1.2G
         V15648-01 Part 2 of 2      836M
    Does these have all basice needs.
    There is also some files which I did not download may be for soa ,warehouse and library like.
    Please verify that am I going on right?
    Thanks

    I need verification from you that after extracting zip file I have total size 38 gb after extracting zip file of oracle R12.1.1 for solaris 5.1 sparc 64 bit.
    I have downloaded 42 files.
    Does these have all basice needs.You need the following files:
    From: Oracle E-Business Suite Release 12.1.1 Rapid Install Start Here (Part 1 of 4), Part Number: B53824-01 Part 1 of 4
    To: Oracle E-Business Suite Release 12.1.1 for Sun Solaris SPARC (64-bit) Rapid Install APPL_TOP - Disk 3 (Part 2 of 2), Part Number: V15648-01 Part 2 of 2
    There is also some files which I did not download may be for soa ,warehouse and library like.
    Please verify that am I going on right?You do not need to download those files.
    Thanks,
    Hussein

  • Create Zip File In Windows and Extract Zip File In Linux

    I had created a zip file (together with directory) under Windows as follow (Code are picked from [http://www.exampledepot.com/egs/java.util.zip/CreateZip.html|http://www.exampledepot.com/egs/java.util.zip/CreateZip.html] ) :
    package sandbox;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    * @author yan-cheng.cheok
    public class Main {
         * @param args the command line arguments
        public static void main(String[] args) {
            // These are the files to include in the ZIP file
            String[] filenames = new String[]{"MyDirectory" + File.separator + "MyFile.txt"};
            // Create a buffer for reading the files
            byte[] buf = new byte[1024];
            try {
                // Create the ZIP file
                String outFilename = "outfile.zip";
                ZipOutputStream out = new ZipOutputStream(new FileOutputStream(outFilename));
                // Compress the files
                for (int i=0; i<filenames.length; i++) {
                    FileInputStream in = new FileInputStream(filenames);
    // Add ZIP entry to output stream.
    out.putNextEntry(new ZipEntry(filenames[i]));
    // Transfer bytes from the file to the ZIP file
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    // Complete the entry
    out.closeEntry();
    in.close();
    // Complete the ZIP file
    out.close();
    } catch (IOException e) {
    e.printStackTrace();
    The newly created zip file can be extracted without problem under Windows, by using  [http://www.exampledepot.com/egs/java.util.zip/GetZip.html|http://www.exampledepot.com/egs/java.util.zip/GetZip.html]
    However, I realize if I extract the newly created zip file under Linux, using modified version of  [http://www.exampledepot.com/egs/java.util.zip/GetZip.html|http://www.exampledepot.com/egs/java.util.zip/GetZip.html] . The original version doesn't check for directory using zipEntry.isDirectory()).public static boolean extractZipFile(File zipFilePath, boolean overwrite) {
    InputStream inputStream = null;
    ZipInputStream zipInputStream = null;
    boolean status = true;
    try {
    inputStream = new FileInputStream(zipFilePath);
    zipInputStream = new ZipInputStream(inputStream);
    final byte[] data = new byte[1024];
    while (true) {
    ZipEntry zipEntry = null;
    FileOutputStream outputStream = null;
    try {
    zipEntry = zipInputStream.getNextEntry();
    if (zipEntry == null) break;
    final String destination = Utils.getUserDataDirectory() + zipEntry.getName();
    if (overwrite == false) {
    if (Utils.isFileOrDirectoryExist(destination)) continue;
    if (zipEntry.isDirectory())
    Utils.createCompleteDirectoryHierarchyIfDoesNotExist(destination);
    else
    final File file = new File(destination);
    // Ensure directory is there before we write the file.
    Utils.createCompleteDirectoryHierarchyIfDoesNotExist(file.getParentFile());
    int size = zipInputStream.read(data);
    if (size > 0) {
    outputStream = new FileOutputStream(destination);
    do {
    outputStream.write(data, 0, size);
    size = zipInputStream.read(data);
    } while(size >= 0);
    catch (IOException exp) {
    log.error(null, exp);
    status = false;
    break;
    finally {
    if (outputStream != null) {
    try {
    outputStream.close();
    catch (IOException exp) {
    log.error(null, exp);
    break;
    if (zipInputStream != null) {
    try {
    zipInputStream.closeEntry();
    catch (IOException exp) {
    log.error(null, exp);
    break;
    } // while(true)
    catch (IOException exp) {
    log.error(null, exp);
    status = false;
    finally {
    if (zipInputStream != null) {
    try {
    zipInputStream.close();
    } catch (IOException ex) {
    log.error(null, ex);
    if (inputStream != null) {
    try {
    inputStream.close();
    } catch (IOException ex) {
    log.error(null, ex);
    return status;
    *"MyDirectory\MyFile.txt" instead of MyFile.txt being placed under folder MyDirectory.*
    I try to solve the problem by changing the zip file creation code to
    +String[] filenames = new String[]{"MyDirectory" + "/" + "MyFile.txt"};+
    But, is this an eligible solution, by hard-coded the seperator? Will it work under Mac OS? (I do not have a Mac to try out)
    p/s To be honest, I do a cross post at  [http://stackoverflow.com/questions/2549766/create-zip-file-in-windows-and-extract-zip-file-in-linux|http://stackoverflow.com/questions/2549766/create-zip-file-in-windows-and-extract-zip-file-in-linux] Just want to get more opinion on this.
    Edited by: yccheok on Apr 26, 2010 11:41 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Your solution lies in the File.separator constant; this constant will contain the path separator that is used by the operating system. No need to hardcode one, Java already has it.
    edit: when it comes to paths by the way, I have the bad habit of always using the front slash ( / ). This will also work under Windows and has the added benefit of not needing to be escaped.

  • Error while importing zip file for second time to B2B through ant script

    [echo] args=import
    importstatus:
    [echo] Commandline arguments 1: [import]
    [echo] Import with overwrite=true
    [echo] B2BCommandLineUtility: importRepository: Error messages:
    [echo] MDS-00521: error while reading document /soa/b2b/tpa_JOvrtiV-7030143
    019445112136.xml from metadata repository
    [echo] MDS-00520: failure to read document /soa/b2b/tpa_JOvrtiV-70301430194
    45112136.xml because it is not in the metadata repository
    [echo] MDS-00911: Document with name "/soa/b2b/tpa_JOvrtiV-7030143019445112
    136.xml" and version 16 does not exist in the repository.
    [echo] ORA-01403: no data found
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603
    [echo] ORA-06512: at line 1
    [echo]
    [echo] ORA-01403: no data found
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603
    [echo] ORA-06512: at line 1
    [echo]
    [echo] ORA-01403: no data found
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407
    [echo] ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603
    [echo] ORA-06512: at line 1
    [echo]
    [echo]
    Can anybody plz help???
    Thanks in Advance!!!

    Hi,
    Even I am getting the same error while importing the .zip file for the second time through B2B console-->Administration-->Import/export tab.
    But again it works for the third time..
    Error Message:
    Import of file OriginalProject.zip failed. MDS-00521: error while reading document /soa/b2b/tpa_MnjhBHh-70301432125893445241.xml from metadata repository MDS-00520: failure to read document /soa/b2b/tpa_MnjhBHh-70301432125893445241.xml because it is not in the metadata repository MDS-00911: Document with name "/soa/b2b/tpa_MnjhBHh-70301432125893445241.xml" and version 34 does not exist in the repository. ORA-01403: no data found ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407 ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603 ORA-06512: at line 1 ORA-01403: no data found ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407 ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603 ORA-06512: at line 1 ORA-01403: no data found ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 407 ORA-06512: at "DEV_MDS.MDS_INTERNAL_SHREDDED", line 603 ORA-06512: at line 1
    Please help...

  • Captivate 4 - zipping files for LMS

    I am zipping files for the LMS for a SCORM compliant course.  When zippnig it, it will not zip and it will not give me SCORM_support.js files.  None of my js files will show up.  Any idea why this is happening?
    This is what I should be getting.
    This is what I am getting

    I think we'll have to look at your settings for SCORM and Manifest. This is what I'm normally getting when zipping a CP4-file into a SCORM-object:
    In the SCORM-map are the needed HTM, JS and SWF. And I'm using SCORM 1.2
    More details about the settings, please?

  • Description of zip file for example B24897.zip

    Hi,
    Is below softwares 64 bit?
    how can I get description of zip file for example B24897-01_3of4.zip is meant for what software?
    10g Release 2 (10.2) for Microsoft Windows (x64)
    file:///C:/oracle%2010g/B24971-01/welcome.html
    Oracle Database
      10g Release 2 (10.2) for Microsoft Windows (x64)
    file:///C:/oracle%2010g/B24897-01_3of4/welcome.html
    10g Release 2 (10.2) for Microsoft Windows (x64)
    file:///C:/oracle%2010g/B24897-01_2of4/clusterware/welcome.html
    10g Release 2 (10.2) for Microsoft Windows (x64)
    file:///C:/oracle%2010g/B24897-01_4of4/database/welcome.html
    Oracle Database
    10g Release 2 (10.2) for Microsoft Windows (x64)
    file:///C:/oracle%2010g/B24897-01_1of4/client/welcome.html

    Hi;
    Its:
    B24897-01 Oracle Database 10g Release 2 (10.2.0.1.0) for Microsoft Windows x64 DVD
    Please see:
    http://pias.oracle.co.jp/pias_owa/pias/par_disp.product_comp?p_product_code=20394&v_current=2
    Regard
    Helios

  • Where to download the webcentertutorialcontent.zip file for JDev 10.1.3.x?

    A quick question for the download location of the webcentertutorialcontent.zip file for version 10g (10.1.3.2 or later).
    I am going through the Oracle WebCenter Framework Tutorial 10g (10.1.3.2.0) (document id B31072-02) to gain an understanding of the working mechanism of portlets. The tutorial requires the use of the webcentertutorialcontent.zip file to set up the sample application, and points to http://www.oracle.com/technology/products/webcenter/files/webcentertutorialcontent.zip for downloading the file.
    But that page has been updated to 11g. I was able to find the archived old versions of webcenter, but not that zip file.
    It would very much appreciated if someone knows and let me know where it is.
    Many thanks!
    Newman

    On this page: http://www.oracle.com/technetwork/middleware/webcenter/documentation/index.html you have a list of all files.
    At the bottom in the Oracle WebCenter 10g (10.1.3.x) section you have a part: Building a WebCenter Application Step by Step Guide with a link to the supported files: http://download.oracle.com/otndocs/tech/webcenter/files/SRDemo_App_Download.zip
    This is from the 10g version...
    You are right that 11g applications does not run on a 10g app server. Oracle 11g fusion middelware uses weblogic as an application server. This does not use the OC4J container anymore.
    11g and 10g have a different licence so if you are using 10g and you want to use 11g, you need to buy a licence for weblogic and so on.
    If you are currently looking into the use of webcenter/portlets and you are planning to use it later on, than oracle will propose 11g because i don't think 10g is supported... I don't think you can buy a webcenter 10g license..
    By the way... You can install jdeveloper 11g in a sepperate middelware folder than your 10g version. This means that you easily can use them together. If you are planning on using webcenter, the best thing to do is install jdeveloper 11.1.1.3 (latest stable version) and install the webcenter extension. This allow you to easily create portlet producers and webcenter applications. You can easily deploy them on the integrated server. This is a lot easier than in the 10g release.

  • Regarding classes12.zip files for JDBC usage

    Hello friends,
    I need classes12.zip file for oracle 10g database, & where we need to place them....
    Regards,
    sai.

    Hello sai,
    I need classes12.zip file for oracle 10g databaseI'd recommend to download "general" JDBC drivers from the corresponding OTN page: [url http://www.oracle.com/technetwork/database/features/jdbc/index-091264.html]. I'm not sure if you really want the "classes12.zip", as these drivers are for the outdated Java versions 1.2 and 1.3. Especially these do not (fully) support the current 11.2 XE release. If you can, choose the most recent 11.2 driver download that fits to the JDK version you actually want to use, e.g.      ojdbc6.jar for JDK 6. If you really need to old classes12.zip, you'll find the latest version of these in the [url http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-10201-088211.html]JDBC drivers for 10.2.
    where we need to place them....You need to place them in the classpath of the application that is supposed to use them. Since you didn't tell us anything about it, that's really hard to tell.
    -Udo

  • Receiving Mac Zip File for virus removal

    Receiving Mac Zip File for virus removal. Randomly comes up through firefox.  I don't open it but I cant remove it from applications.  Any help appreciated.  Also Mac doesn't have a built in defense like that does it?

    When you created this post, there was, at the top of the discussion, and all Apple Community, this:
    Announcement:  Apple recently published -  How to avoid or remove Mac Defender malware
    How to avoid or remove Mac Defender malware

Maybe you are looking for