Simulator BB 9700 OS 5.0 error popups on load - failure of the catastrophic Assertion, an Access Violation

I have a problem with the OS 5.0 based simulators, I get the following error popups a few seconds after the start of the Simulator. An MDS service is running. This particular Simulator is BB 9700 5.0.0.54 5, but I have essaye.400 and even 5.0.xxx BB 9000 simulators and get the same result.

I tried running the clean.bat, but it did not help. Other simulators 4.x OS would be fine, it's just 5.0 sims who do this. I also tried to uninstall, and then reinstall 5.0.xx different simulators and it can run ok once, but after this, I get these errors again.

I have several installed simulators as I need to develop/test on different models. Also have the Blackberry JDE 5.0, Widget SDK 1.0 (these errors until I installed these however), Java Runtime Environment SE 6 update 20, JDK 6 update 20 installed. I have the log file failure.zip, but do not have a way to download it here.

Please if anyone can help, what should I do?

Well, since nobody offered any assistance, I continued to figure out my own it was. I tried different versions of simulators 9700 and 9000 on computer of other colleagues, she also gave the same mistakes as the screenshot above, so I assumed that there is something interfering with the simulators on our work PCs.

Then I tried to use a new BB 9650 Simulator w / OS 5.0.0.621, and it worked! There is something that is "fixed" in this Simulator not appearing in the 9700,9000,8900 w / OS 5.0. It is also much faster to start vs others. I hope the Blackberry administrator can speak on what is different and this clear in their other simulators OS 5.0?

in any case, it was my work around, although that is not ideal.

Tags: BlackBerry Developers

Similar Questions

  • ERROR CODE 606 CAUSING FAILURE OF THE UPDATES OF WINDOWS 'IMPORTANT' 10

    Help, please!  I try to install the last "10 important updates" for Windows, which I was informed automatically.  I tried 4 times in 2 days now and each of them settled due to the 'error Code 606'.  When I click on "help", he pulls up "WindowsUpdate_00000646" "WindowsUpdate_dt000" If that's any help.  Each time, it goes through all the motions, past by restarting as usual, then I get the same reminder of updates, showing "failed" on all of them.  I have not had this problem before.  I don't know what to do to get these updates installed.  I NEED HELP ASAP!  I am a user of impressive program but not at all a geek who can solve the problems that arise, and I have no one to turn to in my personal circle.

    First of all try to install updates when you're disconnected from the internet.

    If no joy, then try to manually download the same and install.
    You can search the individual updates here:
    http://www.Microsoft.com/downloads/en/default.aspx

    He just put in the KB number and then perform a search.

    If this still creates one problem another thing you can try is disable the User Account Control first download before the update manually. See: (Guided Help: settings to adjust user account control in Windows 7):
    http://support.microsoft.com/kb/975787/en-us.

    How to use User Account Control (UAC) in Windows Vista
    http://support.Microsoft.com/kb/922708

    TaurArian [MVP] 2005-2010 - Update Services

  • I get the error message like "error - ORA-29273 report: failure of the HTTP ORA-06512: at"SYS. " UTL_HTTP", line 1130 ORA-12535: TNS:operation expired ORA-06512: 37 29273 line. 00000 - "HTTP request failed" * Cause: package UTL_HTTP The Impossible to run

    I have tried the code

    DECLARE

    lv_url VARCHAR2 (1000): = ' http://shenzhoufellowship.org/main2/files/old/SpecialTopics/TheLoveDare.pdf';

    lc_return BLOB;

    lhttp_url httpuritype.

    Varriables - declared to have written the LOB to pdf file-

    l_file UTL_FILE. TYPE_DE_FICHIER;

    l_buffer RAW (32767).

    l_amount directory: = 32767;

    l_pos INTEGER: = 1;

    l_blob BLOB;

    l_blob_len INTEGER.

    BEGIN

    -create URIs

    lhttp_url: = httpuritype.createuri (lv_url);

    -get the PDF document

    lc_return: = lhttp_url.getblob ();

    -Open the destination file.

    l_file: = UTL_FILE. FOPEN ('MBO_INPUT_DIR', 'MBD.zip', 'wb');

    -Get the total length of the BLOB

    l_blob_len: = DBMS_LOB.getlength (lc_return);

    -Pieces of the BLOB to read and write to the file

    -full up.

    While l_pos < l_blob_len LOOP

    DBMS_LOB. READ (lc_return, l_amount, l_pos, l_buffer);

    UTL_FILE.put_raw (l_file, l_buffer, FALSE);

    l_pos: = l_pos + l_amount;

    END LOOP;

    -Closes the file.

    UTL_FILE. FCLOSE (l_file);

    EXCEPTION

    WHILE OTHERS THEN

    -Close the file if something goes wrong.

    IF UTL_FILE.IS_OPEN (l_file) THEN

    UTL_FILE. FCLOSE (l_file);

    END IF;

    LIFT;

    END;

    But make a mistake like:

    Error report-

    ORA-29273: HTTP request failed

    ORA-06512: at "SYS." UTL_HTTP", line 1130

    ORA-12535: TNS:operation expired

    ORA-06512: at line 37 level

    29273 00000 - "the HTTP request failed.

    * Cause: The UTL_HTTP package cannot run the HTTP request.

    * Action: Use get_detailed_sqlerrm to check the detailed error message.

    Correct the error and restart the HTTP request.

    Please suggest a solution. Is it possible to download a zip file with the same code?

    [oracle@localhost ~]$ sqlplus scott/tiger
    
    SQL*Plus: Release 11.2.0.1.0 Production on Mon Apr 6 13:59:09 2015
    
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL> --My Database version
    SQL> ----------------------
    SQL> SELECT * FROM v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    
    SQL> ed
    Wrote file afiedt.buf
    
      1  DECLARE
      2        lv_url    VARCHAR2(500) := 'http://shenzhoufellowship.org/main2/files/old/SpecialTopics/TheLoveDare.pdf';
      3        lc_return BLOB;
      4        lhttp_url httpuritype;
      5        ---Varriables declared for writing the LOB to pdf file --
      6        l_file     UTL_FILE.FILE_TYPE;
      7        l_buffer   RAW(32767);
      8        l_amount   BINARY_INTEGER := 32767;
      9        l_pos      INTEGER := 1;
    10       l_blob     BLOB;
    11       l_blob_len INTEGER;
    12     BEGIN
    13       --create uri
    14       lhttp_url := httpuritype.createuri(lv_url);
    15       --get the PDF document
    16       lc_return := lhttp_url.getblob();
    17       -- Open the destination file.
    18       l_file := UTL_FILE.FOPEN('SAUBHIK', 'TheLoveDare.pdf', 'wb');
    19       --Get the total length of the BLOB
    20       l_blob_len := DBMS_LOB.getlength(lc_return);
    21       -- Read chunks of the BLOB and write them to the file
    22       -- until complete.
    23       WHILE l_pos < l_blob_len LOOP
    24         DBMS_LOB.READ(lc_return, l_amount, l_pos, l_buffer);
    25         UTL_FILE.put_raw(l_file, l_buffer, FALSE);
    26         l_pos := l_pos + l_amount;
    27       END LOOP;
    28       -- Close the file.
    29       UTL_FILE.FCLOSE(l_file);
    30     EXCEPTION
    31       WHEN OTHERS THEN
    32         -- Close the file if something goes wrong.
    33         IF UTL_FILE.IS_OPEN(l_file) THEN
    34           UTL_FILE.FCLOSE(l_file);
    35         END IF;
    36         RAISE;
    37*    END;
    38  /
    DECLARE
    *
    ERROR at line 1:
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1130
    ORA-24247: network access denied by access control list (ACL)
    ORA-06512: at line 36
    
    SQL> conn sys as sysdba
    Enter password:
    Connected.
    SQL> ed
    Wrote file afiedt.buf
    
      1  BEGIN
      2    DBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl         => 'love.xml',
      3                                      description => 'Love ACL',
      4                                      principal   => 'SCOTT',
      5                                      is_grant    => true,
      6                                      privilege   => 'connect');
      7    DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(acl       => 'love.xml',
      8                                         principal => 'SCOTT',
      9                                         is_grant  => true,
    10                                         privilege => 'resolve');
    11    DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL(acl  => 'love.xml',
    12                                      host => 'shenzhoufellowship.org');
    13  commit;
    14* END;
    15  /
    
    PL/SQL procedure successfully completed.
    
    SQL> conn scott/tiger
    Connected.
    SQL> ed
    Wrote file afiedt.buf
    
      1  DECLARE
      2        lv_url    VARCHAR2(500) := 'http://shenzhoufellowship.org/main2/files/old/SpecialTopics/TheLoveDare.pdf';
      3        lc_return BLOB;
      4        lhttp_url httpuritype;
      5        ---Varriables declared for writing the LOB to pdf file --
      6        l_file     UTL_FILE.FILE_TYPE;
      7        l_buffer   RAW(32767);
      8        l_amount   BINARY_INTEGER := 32767;
      9        l_pos      INTEGER := 1;
    10       l_blob     BLOB;
    11       l_blob_len INTEGER;
    12     BEGIN
    13       --create uri
    14       lhttp_url := httpuritype.createuri(lv_url);
    15       --get the PDF document
    16       lc_return := lhttp_url.getblob();
    17       -- Open the destination file.
    18       l_file := UTL_FILE.FOPEN('SAUBHIK', 'TheLoveDare.pdf', 'wb');
    19       --Get the total length of the BLOB
    20       l_blob_len := DBMS_LOB.getlength(lc_return);
    21       -- Read chunks of the BLOB and write them to the file
    22       -- until complete.
    23       WHILE l_pos < l_blob_len LOOP
    24         DBMS_LOB.READ(lc_return, l_amount, l_pos, l_buffer);
    25         UTL_FILE.put_raw(l_file, l_buffer, FALSE);
    26         l_pos := l_pos + l_amount;
    27       END LOOP;
    28       -- Close the file.
    29       UTL_FILE.FCLOSE(l_file);
    30     EXCEPTION
    31       WHEN OTHERS THEN
    32         -- Close the file if something goes wrong.
    33         IF UTL_FILE.IS_OPEN(l_file) THEN
    34           UTL_FILE.FCLOSE(l_file);
    35         END IF;
    36         RAISE;
    37*    END;
    38  /
    
    PL/SQL procedure successfully completed.
    
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@localhost ~]$ cd saubhik/
    [oracle@localhost saubhik]$ pwd
    /home/oracle/saubhik
    [oracle@localhost saubhik]$ ls -l *.pdf
    -rw-r--r-- 1 oracle oinstall 60055 Apr  6 14:03 TheLoveDare.pdf
    [oracle@localhost saubhik]$
    

    I love this pdf file. I would like to read this and mean while if you get an error then please post in its entirety and also think that it is an Oracle error or network.

  • "" My internet connection is constantly down and back on the error "negotiating IPsec year failure prevents the connection.

    Original title: The IPsec negotiation failure prevents the connection

    My internet connection is constantly visitor drop-off and restarted, and when I troubleshoot I get this message "the IPsec negotiation failure prevents the connection." I don't use VPN or anything so I have no idea what it means. I restarted the router several times. Any other ideas?

    Hello

    1. you are using a wired or a wireless connection?

    2. If it works well before?

    3 did you changes to the computer before the show?

    Method 1: Reset the router and see if that helps.

    Note: To help you reset the router, you can consult the manual that came with the router or the router contact manufacturer.

    Method 2: Uninstall and reinstall the NIC drivers and see if that helps.

    See the following steps:

    (a) click Start, right click on computer.

    (b) click on properties, click on Device Manager

    (c) expand the network card, right-click the wireless adapter option

    (d) click on uninstall

    (e) now go to your computer/wireless device manufacturer's website, download the updated drivers and install them.

    Reference:

    Updated a hardware driver that is not working properly:

    http://Windows.Microsoft.com/en-us/Windows7/update-a-driver-for-hardware-that-isn ' t-work correctly

  • How can I fix the error 216 evrytime I open internet or my computer the error popup

    How can I fix the error 216 evrytime I open internet or my computer the error popup

    How can I fix the error 216 evrytime I open internet or my computer the error popup

    Try here

    http://support.Microsoft.com/kb/259279

  • ERROR 80070652 CSC. EXE ERROR POPUP MICROSOFT NET FRAME

    CCS. EXE MICROSOFT NET FRAME ERROR POPUP 4 DAYS. INTERUPTS MY WORK. RECENTLY CHANGED SERVERS. FROM ATT.NET TO COMCAST.NET.RECENTLY UPDATE INSTALLED JAVA. NO INFO TO SOLVE THIS PROBLEM WOULD BE APRECIATED

    Hi Zanth01,

    The csc.exe file uses Microsoft .net Framework. These errors can occur if there is no problem if the .net framework, or any other application using the .net framework.

    Has) if there is no associated framework .net programs installed, I suggest you to uninstall those and see if the problem still occurs.

    B) if that doesn't help.

    Click here to download the .NET Framework cleanup tool. This .NET Framework cleanup tool is designed to automatically perform a set of steps to remove some versions of the .NET Framework of a computer.  It will remove the files, directories, registry keys and values and record information product of Windows Installer for the .NET Framework.

    Download and reinstall all the versions of the .NET Framework that were previously installed on the computer.
    To download all versions of .NET Framework below mentioned link http://support.microsoft.com/kb/923100 visit

    After installing all versions of the .net framework, check if the problem is resolved.

    See the same type of problem in the link http://social.answers.microsoft.com/Forums/en-US/vistasecurity/thread/c565fd8e-bd3e-4d8b-a3c8-c974e2429b1e

    Diana
    Microsoft Answers Support Engineer

    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Simulator of 9700 won't allow different icons scroll

    Hello

    I'm testing on the simulator of 9700 but I can't select my application because the Simulator will not select different applications when I try to scroll.  The initially selected app is the email app and there selection.  If I try to use the trackpad or arrow keys does not change the trackpad lights up the Red arrows appropriate but focus on access points.   What's wrong?  How is used this thing?

    I have eclipse 3.5.2 the latest plugins eclipse and d, JDK 1.6.  I put my level of compliance of the compiler for 1.4, my .class files generated for cldc 1.1 and my 1.3 source compatibility.   Why I can't put them all to 1.4 or better, I'm not really sure.

    Now maybe after a certain number of eclipse restart the 9650 and 9700 simulators seem to work.  I do not know if something I did differently than yesterday.

  • I'm trying to install the Flight Simulator and get a 1607 installshield error

    I kep getting an error 1607 and don't know why it does not work

    Hello

    Welcome to the Microsoft community.

    I see you found a "1607 installshield" error when you try to install Flight Simulator.

    Quick questions:

    1. This is the complete error, you get "error - 1607: unable to install InstallShield Scripting Runtime"?
    2. What version of flight simulator you trying to install?

    You can try the steps in the following article and check if you are able to install Flight Simulator.

    Microsoft games: InstallShield Error Messages

    http://support.Microsoft.com/kb/910816

    It will be useful.

    Please let us know if you need help on this problem or any questions related to Windows.

    We will be happy to help you.

  • my flight simulator does not re install. Error 1722

    I have reset my windows pc 8 and trying to re install the game, it stops the installation with error 1722. It worked well before. Help, please?

    Hello

    1. are you able to install other games on the computer?

    2 is the issue limited to this game here?

    The 1722 error message is a General Setup error message that indicates a system level failure has occurred. In most cases, you experience an installation failure in the Setup program that is associated with registration of the fonts.

    We can refer to this article and check if that helps.

    Error 1722 when reinstalling Flight Simulator x: http://support.microsoft.com/kb/928080/en-us

    If not, please contact Support for further assistance Flight Simulator: http://www.microsoft.com/Products/Games/FSInsider/community/Pages/default.aspx

    You can contact the support of Flight Simulator. Please see the link: http://www.microsoft.com/Products/Games/FSInsider/tips/Pages/default.aspx

    Response with the State of the question and we will be happy to offer you our help.

  • error message Popup on change based on the value of selectlist

    Hello


    I am new to Oracle Apex. I have a selectlist in my page. I need popup, an error message when the value is changed according to the value of selectlist. For example, the selectlist can have "Approved", "Rejected", "Started", value "not started". When I changed the value "Rejected" if it is already "approved" a popup/inline error message should appear and say that we cannot change "Approved" to "rejected". Similarly, I need to have 5 these validations on the fly (when the selectlist is changed). Also when the condition is the error value will not change (in the previous example, the value will not change to 'Rejected'). Is there a way to do this?

    ~ Best regards,.

    Nadège

    Hi Jeevin,

    You can use jQuery or Javascript to manage validations customized to your selection list onchange.

    Something like

    OnChange = "your_custom_function (this.value); »

    and you can define your function as

    function your_custom_function (value1)

    {

    If (value1 == "Rejected")

    Alert ('Test Alert');

    }

    Logic may be all you need.

    It may be useful

    Thank you

    Sunil Bhatia

  • Popup is get closed after the entity level validation error.

    Hello

    I have a requirement where I am creates a line entity in a popup. In the context menu, I have an attribute which is mandatory under certain conditions. To do this, I said that EO level method validator that checks if filed value is entered or not when it is required.

    This validation happens correctly, I am able to see the error message in the user interface. But the problem is, popup closer, when I click on ' save record ' (this button calls the validation logic for the record) button in the user interface. " Becuse in the logic of the 'save' button, I close the popup (appellant hidePopup) after committing the registration. But it should only occur when the validation is successful. But it happens the same validation is not as successful. I mean, after the validation logic that he goes to the next run of line code. And the error message is displayed only after the execution of all the lines inside the method of the Save"" button.

    How can I limit the logic of hide popup on successful validation.

    Jdev version: 11.1.1.7.0

    Kind regards

    Dietsch.

    Hello

    When you run the validation operation programmatically try to see if there are errors;

    .

    .

    .

    operationBinding.execute ();

    If (operationBinding.getErrors () .isEmpty ()) {}

    Without exception, the operation is success

    } else {}

    Exception is thrown by the method, handle it here

    OperationBinding::getErrors() return list of local

    The list of errorList = operationBinding.getErrors ();

    Alternative route ' on error ' go here

    }

    If there is no error not to close the popup while if there isn't one, then close.

  • Error Popup window and out-of-date data

    Hi all

    Scenario:
    ========
    I have page P1 which is based on the AM1 and VO1. P1, I have a link item that opens a page P2 as pop-up window (using the framework target = _blank). Page P2 is just reading one page where I show some details. It is based on the same AM1 and another object view VO2. In the processRequest of P2, I just run the VO2 and view records.

    The problem:
    ===========
    Now when I close the popup window (I close with the X window button or 'Close' with javascript:window:close(); button I on P2). I'm on P1 and make changes, and then press the 'Save' P1 button that sends the form.

    At this point in time, the control is entered the processRequest of the base page P1 and it is at the origin of the code executed and stale data illustrated errors.

    So basically I know not why the obsolete data error is coming, because of the command by entering the processRequest of P1. But how to avoid is my concern.

    Question:
    =======
    Y at - it an option to avoid this scenario to not run the processRequest again when I do an operation on the base page P1. Is there a solution?

    I tried my best to search this forum for this type of situaiton. but could not get a. Then post it here. Then please don't answer not saying 'search the Forum :) '. ».

    Thank you
    Anand

    When you open the pop up screen, define a variable as part of the operation. Now in the page P1 processRequest, look for the value of this transaction and if it is set, donot run the initialization code. Also donot forget to reset the variable of the transaction. Hope the idea helps.

    Concerning
    Sumit

  • Error-2147352567 when you use save the vi report

    Hello

    I am developing a software test bench end line for a company. Everything was going well until I met an unexpected error which I don't understand. My code works a simulation engine and stores data in two excel files. When I have the path disconnected to save the report to the File.vi (screenshot 1), my program works without problem and records one of the files and returns an error due to the vi save report being disconnected (as expected). But when I connect the path to save the report to the File.vi, I get an error-2147352567 (screenshot 2) at a table to append to report.vi elsewhere in the code, which worked perfectly well until the road was connected to the vi to save the report. Also, now the second excel file is saved because its path has been connected. I don't understand what is the question. I couldn't find any source that has given me a reasonable solution to the problem either. I use Labview for less than 2 weeks, so forgive me if I forgot something.

    Hi DPAC.

    My apologies for the confusion in the previous post, I thank very you much to clarify it.

    Following my last post; the error was due to a race condition. There is no data flow between two separate writing report files. This means that LabVIEW will try to run the two bits of code in parallel. However, it was sometimes causing one of the sub-vis to be called by two different parts of the code at the same time, causing the error.

    This is the reason for which the code executes without error above if you have disconnected the path to the first 'save report to File.vi', because this part of the code was not running, allowing the second party to run freely.

    To counter this I simply wired terminal 'error' "save report to File.vi" (the one that used the All_Saved.xlsx) in the terminal ' error in ' of the 'new Report.vi' (one who has used the Template.xlsx). Because the screws will not work until all entries are filled, this forces the writing of the first report before the writing of the second report, not occur at the same time.

    I have attached the revised version of the "EOL_V1.vi" where you will be able to see how I wired errors to force execution.

    I also noticed that you have not initialized your shift register "speed". This means that every time that you run the program, it will retain the last value from the previous execution. Is - this intentional? This means that your worksheet does not properly update if you run the program twice in a row.

    Thank you

  • Error.1606 for installing and uninstalling the programs of the difference, why?

    I tried to install Microsoft Flight Simulator and received the Error 1606 could not access location %AppData% nerwork.

    I installed motor programes game with no problem, but them once in a while I get the Error 1606.

    I also receive this error when I try to uninstall, repair or reinstall. AutoDesk Dwg True View, (Error 1606 could not access network location % APPDATA%\AutoDesk\Dwg\TrueView\R7\enu\). The error was the same in all the cases, you.

    It happened when you install Microsoft Visual C ++ 2005 SP1.

    Can someone help me please.

    Paul Robbins

    Hello

    ·         What operating system do you use?

    Here is an article of AutoCAD which offers solutions for error code 1606 during installation of the autodesk product. Suggestions would be also good for Windows 7 as well.

    Error 1606 during standalone or network install on Windows Vista

    Also refer to this article and check if it helps:

    You receive an "Error 1606" error message when you try to install or remove a program from Microsoft

    http://support.Microsoft.com/kb/886549

    Error message when you install a program: "Error 1606. Could not access the network location. "All the users\ directory '

    http://support.Microsoft.com/kb/315352

  • Error in invoking target 'install' in the makefile

    Hi all

    When I install EM12C then I got this error is "Error" by invoking the 'install' in the makefile target

    Please help me to solve this error.

    INFO: / usr/bin/ld: cannot find-lclntsh -.

    collect2: ld returned 1 exit status

    INFO: make [1]: leaving directory ' / u01/app/oracle/product/middleware/who/sqlplus/lib '.

    INFO: make [1]: * [/ u01/app/oracle/product/middleware/who/sqlplus/bin/sqlplus32] error 1

    make: * [newsqlplus32] error 2

    INFO: End of the generated process exit.

    INFO: ----------------------------------

    INFO: Exception thrown from action: do

    Exception name: MakefileException

    Exception string: error in invoking target 'install' of makefile ' / u01/app/oracle/product/middleware/oms/sqlplus/lib/ins_sqlplus.mk'. See ' / u01/app/oraInventory/logs/installActions2013-07-26_08-43-01-AM.log ' for details.

    The exception severity: 1

    INFO: POPUP of WARNING: error in invoking target 'install' of makefile ' / u01/app/oracle/product/middleware/oms/sqlplus/lib/ins_sqlplus.mk'. See ' / u01/app/oraInventory/logs/installActions2013-07-26_08-43-01-AM.log ' for details.

    Click 'Retry' to try again.

    Click "Ignore" to ignore this error and continue.

    Click 'Cancel' to stop this installation.

    Best regards

    Kong Kosal

    Check for 2 things-

    (a) is the directory where you extracted your software (disc 1) and under Disk1, you should see the following files. WT.zip is this?

    a@adcxxxxxxx Disk1] $ ls

    install plugins response stage WT.zip libskgxn

    JDK SGD runInstaller wls

    (b) as mentioned Courtney, you ignore a failure of pre - req and I suspect that you have not the glibc package on your host.

    Review required packages-http://docs.oracle.com/cd/E24628_01/install.121/e22624/preinstall_req_packages.htm#CHDEHHCA

    Examine the log files

    installActions/logs /.log

    / cfgtoollogs/Yes/installActions.log

Maybe you are looking for