Why the jsp page can not be displayed every time?

I created a jsp page which accesses the data from the oracle database and generates some dynamic results at run time. Most of the time the page works well, but randomly the page can not be displayed. It seems not an application issue. Can someone tell me what's the problem there?
Thanks in advance.

but randomly the page can not be displayed. When does this happen?
What are the error messages, if any, that you get?
Give more details.
Manoj

Similar Messages

  • The xml page can not be displayed

    I modified a customized report.
    The report ends in error
    The following tags were not closed: XXPAY012RPT
    LIST_G_COMPANY ,
    Please help

    Hello,
    I am using report builder 6i.
    how am I able to view the xml source code?
    Thank you
      -- =============================================================================================
       -- $Header: XXPAY012RPT.RTF   115.7 2004/10/10 17:52:35 pkm ship      $
       -- =============================================================================================
       -- VERSION, AUTHOR, AND COPYRIGHT INFO: Version 1.0 for execution in APPS schema.
       -- ACCESS INFORMATION:
       -- OVERVIEW: this is the SQL used to build the rtf file for the XXPAY Workers Compensation Annual Report
       -- MODIFICATION HISTORY:
       -- Date          Rev     Who                    Comments
       -- 14-JAN-2013   1.0    Ricardo Gniazdowsky.    Initial release
       -- 05-FEB-2013  1.1    Veenayah Kunniah        Remove Payroll Name column and add new T$ column. Order by employee number  
       --15-NOV-2013 1.2 Ming Li Consolidate record by employee number
       -- =============================================================================================
    /* Formatted on 2012-04-02 3:09:58 PM (QP5 v5.115.810.9015) */
    select haou2.name emp_organization, result.full_name full_name, ou2.name GRE,result.company company,result.employee_number employee_number,province,result.max_assessable_earnings max_assessable_earnings,result.payroll_name payroll_name,result.gross_earnings gross_earnings,  city
       from
    (SELECT    full_name,
              company,
              employee_number,
              --emp_organization,
             province,
             &P_COLUMN_CITY city,
              max_assessable_earnings,
              payroll_name,
             -- GRE,
            SUM (NVL (gross_earnings, 0))  gross_earnings
    FROM    (
        SELECT      xx_f_get_org_type_name ('OU', ou.path_name, ou.org_type_path)
          company,
                    ppf.full_name,
                    paa.tax_unit_id,
                    UPPER(hl.town_or_city) city,
                    ppf.employee_number,
                    (SELECT name from hr_organization_units ou where ou.organization_id=hsck.segment1) GRE,
                    haou.name emp_organization,
                    pf.payroll_name,
                    hl.region_1 province,
                    -- Gross Earnings
                    (xxhr_utilities.get_value (:p_business_group_id, paa.
                     assignment_action_id, :p_gross_earnings) - xxhr_utilities.get_value (:
                      p_business_group_id, paa.assignment_action_id, :p_workers_compensation)
                      ) gross_earnings,
                    -- MAX Assebile
                                TO_NUMBER(xxpay_utilities.xxget_table_value (    41,
                                        'Maximum Assessable Earnings',
                                        'assessable_max',
                                        hl.region_1,
                                        ppa.effective_date
                   12                     max_assessable_earnings
                               FROM         pay_payroll_actions ppa,
                    pay_assignment_actions paa,
                    per_assignments_f paf,
                    pay_payrolls_f pf,     
                    per_people_f ppf,
                    hr_locations hl,
                    hr_all_organization_units haou,
                    xxhr_hierarchy_code_v ou,
                    hr_soft_coding_keyflex hsck
                WHERE     hl.location_id = paf.location_id
                             AND         paf.soft_coding_keyflex_id=hsck.soft_coding_keyflex_id
                             AND         ppf.person_id = paf.person_id
                             AND         pf.payroll_id = ppa.payroll_id
                             AND         paf.assignment_id = paa.assignment_id
                             AND         paf.organization_id = haou.organization_id
                             AND         ppa.effective_date BETWEEN paf.effective_start_date
                  AND paf.effective_end_date
                             AND         trunc(sysdate) BETWEEN ppf.effective_start_date
                  AND ppf.effective_end_date
                             AND         ppa.effective_date BETWEEN pf.effective_start_date
                  AND pf.effective_end_date
                             AND         ppa.business_group_id = :p_business_group_id
                             AND         ppa.payroll_action_id = paa.payroll_action_id
                             AND         paa.assignment_id = paf.assignment_id
                             AND         ppa.effective_date  BETWEEN fnd_date.canonical_to_date (:p_start_date) AND fnd_date.canonical_to_date (:p_end_date)
                             AND         nvl(xx_f_get_org_type_name ('OU', ou.PATH, ou.org_type_path),null) =  nvl(:p_organization_id,nvl(xx_f_get_org_type_name ('OU', ou.PATH, ou.org_type_path),null))
                             AND         paf.organization_id = ou.child
                             AND         hr_person_type_usage_info.get_user_person_type (trunc(sysdate), ppf.person_id) NOT LIKE '%Bursary%'
                            -- AND         paa.assignment_id = 72601  
                &P_WhereClause_CITY
               &L_ORG_ID
               &L_PAYROLL_ID
            WHERE nvl(province,null) =  nvl(:p_province,nvl(province,null)) 
            GROUP BY company,
                     full_name,
                     employee_number,
                    -- emp_organization,
                     province,
                     max_assessable_earnings,
                     payroll_name,
                    -- GRE,
                    &P_COLUMN_CITY   
            HAVING SUM (NVL (gross_earnings, 0)) > 0
            ORDER BY company,
                     province,
                     &P_COLUMN_CITY,
                     full_name) result,
      per_assignments_f paf2,
           per_people_f ppf2,
           hr_all_organization_units haou2,
           hr_organization_units ou2,
           hr_soft_coding_keyflex hsck2
           --per_assignments_f paf1
    --pay_assignment_actions paa,
    --pay_payrolls_f pf
    WHERE     1 = 1
           AND paf2.organization_id = haou2.organization_id
           AND ppf2.person_id = paf2.person_id
           AND ppf2.employee_number = result.employee_number
    --     and ((ppf.effective_start_date BETWEEN :p_start_date
    --                                                    AND :p_end_date) or (ppf.effective_end_date BETWEEN :p_start_date
    --                                                    AND :p_end_date))
           AND paf2.soft_coding_keyflex_id = hsck2.soft_coding_keyflex_id
           AND ou2.organization_id = hsck2.segment1
    --       and ((paf.effective_start_date BETWEEN :p_start_date
    --                                                    AND :p_end_date) or (paf.effective_end_date BETWEEN :p_start_date
    --                                                    AND :p_end_date))
          --and paf2.effective_start_date=(SELECT MAX(paf1.effective_start_date)
                     --  FROM per_all_assignments_f   paf1
                     -- WHERE   paf1.person_id = paf2.person_id
    --and paf1.payroll_id<>'121')
                       --and paf.payroll_id=112
                       and ppf2.effective_start_date=(SELECT MAX(ppf1.effective_start_date)
                       FROM per_people_f   ppf1
                       WHERE   ppf1.person_id = ppf2.person_id)
    and (:p_end_date) BETWEEN paf2.effective_start_date
                                                 AND paf2.effective_end_date
    and paf2.assignment_id=(SELECT MAX(paf1.assignment_id)
                       FROM per_all_assignments_f  paf1
                       WHERE   paf1.assignment_number = paf2.assignment_number)
    The condition causes the problem, If I comment it out, report works fine. please help
    and (:p_end_date) BETWEEN paf2.effective_start_date
                                                 AND paf2.effective_end_date

  • Page can not be displayed

    Hi
    I have in detail listed down some of the problems that we are facing in our project. I request you to please go through this long and detailed mail and assist me in resolving the issues.
    1. Facing a problem regarding host name which gets displayed on the title bar of an Internet Explorer (IE).
    We have installed cFolders on a different server than SRM (internal host name for cFolders: etdspd01.corp.clp.com.hk). During bid processing when bidder clicks on the collaboration bid invitation link from bid invitation, it connects to cFolders server. At this time it displays internal host name on the title bar of IE on collaboration web page (i.e.etdspd01.corp.clp.com.hk).  As per security concerns, internal host name should not be exposed to external users. Instead, it should have an external host name (i.e. esp12.clpgroup.com) at the same place.
    We have raised an OSS message for this problem. SAP has replied the following message
    ”<b>To solve this problem you can define an External Host name for your used ALIAS in transaction SICF, which connect to your internal Hostname.
    But please note, if you need help to define an ALIAS like this, you should contact our Remote Consulting Team (XX-RC). This is not an error, this is a consulting issue</b>.”
    As SAP suggested, we have created the required virtual host in SICF.  We have also created the required virtual host in J2EE engine since we are facing the same problem for LAC too. In SICF transaction under virtual host we have created required services and aliases.  Please find attached the document “internal host name.doc” for the screen shots.
    Please suggest us how to call the services collaboration and LAC from SRM server by using virtual host name.
    2. Problems from external access (outside of CLP network):
    We have published URL (https://esp11.clpgroup.com/) for internet users, which will hit the ISA server first. At ISA server we have opened only HTTPS port.  We have activated the link translator which converts external URL to internal URL (http://bpdspd01.corp.clp.com.hk) at ISA server and we can access the SRM application without any problem. Once we access the SRM application, we get a collaboration link on the browser. This link tries to access the cFolders application with internal host name (http://etdspd01.corp.clp.com.hk/..), which we have not mapped at ISA server. At ISA server, we have opened only HTTPS port and not the HTTP port. Hence we are getting the error “Page can not be displayed”.
    Please suggest what configuration is required to be done in order to access the collaboration and LAC applications from SRM application. How mapping should be done at ISA server? How to maintain the virtual host names at DNS server?
    3.  If we maintain the virtual host name (esp12.clpgroup.com) instead of original host name of the RFC connection from SRM to ETD (cProjects server), SSO will not be possible for the intranet users, because intranet users are accessing the SRM application by using the URL http://etdspd01.corp.clp.com.hk. From SRM application we are trying to access the collaboration and LAC by using the URL (http://esp12.clpgroup.com). In this scenario, since domain name is not matching, SSO will not be possible as it considering them as two different domains.
    For reference please see below message which has been updated by SAP (Live Auction Cockpit Single Sign-On Problem (0000791479/2006)
    25.08.2006 - 12:12:57 CET    SAP    Reply
    ”What are these hosts "etdspd01.corp.clp.com.hk" and "esp12.clpgroup.com"If you want the SSO to work you have to use computers with common
    DNS domain root. The SSO cookie is issued per DNS domain and will
    not be transered to any host from different domain (see
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/94/f2503ede9254
    41e10000000a114084/frameset.htm).
    Please provide me the source of the smoketest.jsp (IE->View->Source).
    I have uploaded an updated version of the diagnostic tool please use
    unzip it in a separate folder, copy the modified version of
    "remote_traces_shanpshot.conf" from the older version and repeat the
    last test that you have executed.”
    Also, we have installed SSL certificate at cFolders server with CN= esp12.clpgroup.com. So the host name in the URL and the name on the certificate should match.
    Request you to suggest a way forward to achieve the same. Looking forward to your support and assistance.
    Thanks and regards
    Seshu

    Hi Seshu,
    For problem no 2:
    You can use IISProxy for that. Look at this blog:
    /people/gregor.wolf3/blog/2004/10/08/integrated-windows-authentication-with-sap-ep-60-sp-3-and-higher-part-1-of-2
    Regards,
    Marcin Gajewski

  • Page can not be Displayed in EBS R12 64bit - OEL 5.4 64bit

    Hi Hussein,
    I have just installed EBS R12 (12.0.4) 64 bit on OEL 5.4 64bit, for our new client.
    The installation was successfull in general, but as usual I hit with this "Page Can Not Be Displayed" error and the client side ie browser.
    I can startup and shutdown the DbTier with status "0".
    I can startup and shutdown the AppsTier with status "0" (well it shows this overall status at the end, but I see some error with "OHS")
    This the sample log of the AppsTier:
    [applprod1@rdbms2 ~]$ ./startAPP
    You are running adstrtal.sh version 120.13.12000000.3
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adopmnctl.sh start
    script returned:
    You are running adopmnctl.sh version 120.4.12000000.3
    Starting Oracle Process Manager (OPMN) ...
    opmnctl: opmn started.
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/app                                             l/admin/log/adopmnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adapcctl.sh start
    script returned:
    You are running adapcctl.sh version 120.6.12000000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl: opmn is already running.
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=rdbms2.ficsd.com:6200
        0 of 1 processes started.
    ias-instance id=VIS_rdbms2.rdbms2.ficsd.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
        HTTP_Server/HTTP_Server/HTTP_Server/
    Error
    --> Process (index=1,uid=399901443,pid=2395)
        failed to start a managed process after the maximum retry limit
        Log:
        /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/ora/10.1.3/opmn/HTTP_Server~1
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl                                             /admin/log/adapcctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adoacorectl.sh start
    script returned:
    You are running adoacorectl.sh version 120.11.12000000.2
    Starting OPMN managed OACORE OC4J instance  ...
    adoacorectl.sh: exiting with status 0
    adoacorectl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/a                                             ppl/admin/log/adoacorectl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adformsctl.sh start
    script returned:
    You are running adformsctl.sh  version 120.12.12000000.3
    Starting OPMN managed FORMS OC4J instance  ...
    adformsctl.sh: exiting with status 0
    adformsctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/ap                                             pl/admin/log/adformsctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adoafmctl.sh start
    script returned:
    You are running adoafmctl.sh version 120.6.12000000.2
    Starting OPMN managed OAFM OC4J instance  ...
    adoafmctl.sh: exiting with status 0
    adoafmctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adoafmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adalnctl.sh start
    script returned:
    adalnctl.sh version 120.3
    Checking for FNDFS executable.
    Starting listener process APPS_VIS.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adalnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adcmctl.sh start
    script returned:
    You are running adcmctl.sh version 120.14
    Starting concurrent manager for VIS ...
    Starting VIS_1001@VIS Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adcmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/jtffmctl.sh start
    script returned:
    You are running jtffmctl.sh version 120.3
    Validating Fulfillment patch level via /u02/applprod1/VIS/apps/apps_st/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for VIS on port 9300 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    All enabled services for this node are started.
    adstrtal.sh: Exiting with status 0
    adstrtal.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adstrtal.log for more information ...As you can see, the last had overall status code "0"
    But there is this error:
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl: opmn is already running.
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=rdbms2.ficsd.com:6200
    0 of 1 processes started.
    ias-instance id=VIS_rdbms2.rdbms2.ficsd.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server/
    Error
    --> Process (index=1,uid=399901443,pid=2395)
    failed to start a managed process after the maximum retry limit
    Log:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/ora/10.1.3/opmn/HTTP_Server~1
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adapcctl.txt for more information ...
    But it says status 0 too, does this cause the "web page can not be displayed"?
    Please Help........................
    Thanks a lot in advance

    Did you remove the lock files as suggested before?Not yet, I am not at the client right now, I will go there tomorrow morning. I am just practising here in our office test instance :)
    The access log file has:
    127.0.0.1 - - [01/Oct/2009:21:57:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:57:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:58:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:58:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:58:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:59:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:59:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:59:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:00:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:00:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:00:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:01:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"And the error log file:
    [Thu Oct  1 08:42:44 2009] [notice] Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server configured -- resuming normal operations
    [Thu Oct  1 08:42:44 2009] [notice] Accept mutex: fcntl (Default: fcntl)
    [Thu Oct  1 08:50:51 2009] [warn] [client 192.168.1.170] oc4j_socket_recvfull timed out
    [Thu Oct  1 08:50:51 2009] [error] [client 192.168.1.170] [ecid: 1254357949:192.168.1.170:24084:0:3,0] mod_oc4j: request to OC4J rel12.ebiztech.biz:21500 failed: Connect failed
    [Thu Oct  1 09:28:40 2009] [notice] Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server configured -- resuming normal operations
    [Thu Oct  1 09:28:40 2009] [notice] Accept mutex: fcntl (Default: fcntl)
    [Thu Oct  1 09:29:58 2009] [error] [client 192.168.1.100] [ecid: 1254360598:192.168.1.170:27679:0:2,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:51:22 2009] [error] [client 192.168.1.101] [ecid: 1254361882:192.168.1.170:27679:0:11,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:51:26 2009] [error] [client 192.168.1.101] [ecid: 1254361886:192.168.1.170:28180:0:13,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:51:43 2009] [error] [client 192.168.1.101] [ecid: 1254361903:192.168.1.170:28256:0:17,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:52:55 2009] [error] [client 192.168.1.101] [ecid: 1254361975:192.168.1.170:27678:0:17,0] Directory index forbidden by rule: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/
    [Thu Oct  1 11:40:43 2009] [error] [client 192.168.1.101] [ecid: 1254368443:192.168.1.170:28256:0:53,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 12:08:25 2009] [error] [client 192.168.1.101] [ecid: 1254370105:192.168.1.170:28256:0:66,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 12:08:28 2009] [error] [client 192.168.1.101] [ecid: 1254370108:192.168.1.170:27677:0:59,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 13:05:48 2009] [error] [client 192.168.1.101] [ecid: 1254373548:192.168.1.170:28179:0:127,0] Directory index forbidden by rule: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/
    [Thu Oct  1 13:06:56 2009] [error] [client 192.168.1.101] [ecid: 1254373616:192.168.1.170:28178:0:226,0] Directory index forbidden by rule: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/
    [Thu Oct  1 13:06:56 2009] [error] [client 192.168.1.101] [ecid: 1254373616:192.168.1.170:28178:0:227,0] File does not exist: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Thu Oct  1 13:06:56 2009] [error] [client 192.168.1.101] [ecid: 1254373616:192.168.1.170:28178:0:228,0] File does not exist: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gifThe above error normal? Its just my test instance and the users seem have no problem? or I am just not aware of.
    Thanks

  • Some web pages can NOT be displayed after installing grid control 10g R3

    I deployed grid control 10.2.0.3 on Linux x86-64 platform this week, but when I tried to logon the console. the Logon page can NOT be displayed. After manually directing to home page, the page showed up. I browsed several modules and found some pages work, some not. Did anyone have the same problem on the latest R3(10.2.0.3) for Linux X86-64? I use Red Hat Enterprise Linux 4 (update 3) for AMD 64bit Blade server as the OMS and repository server.
    Really appreciate any help.

    Thanks a lot for your reply. I didn't have any problems during installation.
    Here is the files under $OMSHOME/cfgtoollogs/cfgfw
    [oracle@rman11p cfgfw]$ pwd
    /oracle/app/oracle/product/oms10.2/oms10g/cfgtoollogs/cfgfw
    [oracle@rman11p cfgfw]$ ls -ltr
    total 2668
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.sysman.top.oms_2007-04-02_03-03-55-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.sysman.top.oms_2007-04-02_03-03-55-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 CfmLogger_2007-04-02_03-03-55-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 OuiConfigVariables_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 OuiConfigVariables_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.rdbms.jazn.config_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.rdbms.jazn.config_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.oid.oradas_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.oid.oradas_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.java.j2ee.iascfg_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.java.j2ee.iascfg_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.iappserver.repository.api_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.iappserver.repository.api_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.iappserver.iasobject_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.iappserver.iasobject_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.iappserver.iapptop_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.iappserver.iapptop_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.iappserver.iappcore_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.iappserver.iappcore_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.calypso_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.calypso_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.apache.apache_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.apache.apache_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.apache_2007-04-02_03-03-56-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:03 oracle.apache_2007-04-02_03-03-56-PM.log
    -rw------- 1 oracle dba 3816 Apr 2 14:03 CfmLogger_2007-04-02_03-03-55-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.sysman.top.oms_2007-04-02_03-05-04-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 encap_oms_2007-04-02_03-05-04-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 CfmLogger_2007-04-02_03-05-04-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 OuiConfigVariables_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 OuiConfigVariables_2007-04-02_03-05-05-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.rdbms.jazn.config_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.oid.oradas_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.oid.oradas_2007-04-02_03-05-05-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.java.j2ee.iascfg_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.iappserver.repository.api_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.iappserver.repository.api_2007-04-02_03-05-05-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.iappserver.iasobject_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.iappserver.iasobject_2007-04-02_03-05-05-PM.log
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.iappserver.iapptop_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.iappserver.iappcore_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.calypso_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.apache.apache_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.apache_2007-04-02_03-05-05-PM.log.lck
    -rw------- 1 oracle dba 0 Apr 2 14:05 oracle.apache_2007-04-02_03-05-05-PM.log
    -rw------- 1 oracle dba 491 Apr 2 14:09 oracle.java.j2ee.iascfg_2007-04-02_03-05-05-PM.log
    -rw------- 1 oracle dba 501 Apr 2 14:09 oracle.apache.apache_2007-04-02_03-05-05-PM.log
    -rw------- 1 oracle dba 533 Apr 2 14:10 oracle.rdbms.jazn.config_2007-04-02_03-05-05-PM.log
    -rw------- 1 oracle dba 457 Apr 2 14:10 oracle.calypso_2007-04-02_03-05-05-PM.log
    -rw------- 1 oracle dba 629 Apr 2 14:10 oracle.iappserver.iappcore_2007-04-02_03-05-05-PM.log
    -rw------- 1 oracle dba 580 Apr 2 14:56 encap_oms_2007-04-02_03-05-04-PM.log
    -rw------- 1 oracle dba 2635 Apr 2 14:57 oracle.iappserver.iapptop_2007-04-02_03-05-05-PM.log
    -rw-rw---- 1 oracle dba 0 Apr 2 14:59 opmn_cmd_15_59_57.log8043_ERR.log
    -rw-rw---- 1 oracle dba 29 Apr 2 14:59 opmn_cmd_15_59_57.log8042_OUT.log
    -rw-rw---- 1 oracle dba 0 Apr 2 14:59 emdeploy_cmd_15_59_57.log8045_ERR.log
    -rw-rw---- 1 oracle dba 21993 Apr 2 15:03 emdeploy_cmd_15_59_57.log8044_OUT.log
    -rw-rw---- 1 oracle dba 78 Apr 2 15:03 emca_repos_drop16_03_11.log8047_ERR.log
    -rw-rw---- 1 oracle dba 439 Apr 2 15:04 emca_repos_drop16_03_11.log8046_OUT.log
    -rw-rw---- 1 oracle dba 234 Apr 2 15:04 emca_repos_create16_04_13.log8049_ERR.log
    -rw-rw---- 1 oracle dba 1925730 Apr 2 15:12 emca_repos_create16_04_13.log8048_OUT.log
    -rw-rw---- 1 oracle dba 0 Apr 2 15:12 emctl_cmd_16_12_27.log8051_ERR.log
    -rw-rw---- 1 oracle dba 3830 Apr 2 15:12 emctl_cmd_16_12_27.log8050_OUT.log
    -rw-rw---- 1 oracle dba 78 Apr 2 15:12 emctl_cmd_16_12_28.log8053_ERR.log
    -rw-rw---- 1 oracle dba 203 Apr 2 15:12 emctl_cmd_16_12_28.log8052_OUT.log
    -rw-rw---- 1 oracle dba 156 Apr 2 15:12 emctl_cmd_16_12_30.log8055_ERR.log
    -rw-rw---- 1 oracle dba 0 Apr 2 15:14 emctl_cmd_16_14_25.log8057_ERR.log
    -rw-rw---- 1 oracle dba 1013 Apr 2 15:14 emctl_cmd_16_12_30.log8054_OUT.log
    -rw-rw---- 1 oracle dba 0 Apr 2 15:14 jsps_cmd_16_14_37.log8059_ERR.log
    -rw-rw---- 1 oracle dba 50 Apr 2 15:14 jsps_cmd_16_14_37.log8058_OUT.log
    -rw-rw---- 1 oracle dba 0 Apr 2 15:14 emctl_cmd_16_14_37.log8063_ERR.log
    -rw-rw---- 1 oracle dba 377 Apr 2 15:14 emctl_cmd_16_14_25.log8056_OUT.log
    -rw-rw---- 1 oracle dba 0 Apr 2 15:14 additonal_cmd_16_14_37.log8061_ERR.log
    -rw-rw---- 1 oracle dba 169 Apr 2 15:14 additonal_cmd_16_14_37.log8060_OUT.log
    -rw-rw---- 1 oracle dba 0 Apr 2 15:14 opmn_cmd_16_14_38.log8065_ERR.log
    -rw-rw---- 1 oracle dba 52 Apr 2 15:14 opmn_cmd_16_14_38.log8064_OUT.log
    -rw-rw---- 1 oracle dba 122 Apr 2 15:14 emctl_cmd_16_14_37.log8062_OUT.log
    -rw-rw---- 1 oracle dba 0 Apr 2 15:15 opmn_cmd_16_15_02.log8067_ERR.log
    -rw-rw---- 1 oracle dba 52 Apr 2 15:15 opmn_cmd_16_15_02.log8066_OUT.log
    -rw------- 1 oracle dba 153765 Apr 2 15:16 oracle.sysman.top.oms_2007-04-02_03-05-04-PM.log
    -rw------- 1 oracle dba 185264 Apr 2 15:22 CfmLogger_2007-04-02_03-05-04-PM.log
    [oracle@rman11p cfgfw]$

  • SAP BPC 5.1 SP2 Http 500 internal server error - page can not be displayed

    When our Sysadmin service account are restricted to the app server and the database server ( as they should be in a secured environment) no client
    could reach the web site to even use the Osoft directory . We get a Http 500 internal server error - page can not be displayed . This is for a new multiserver install. Is there a problem on the website security or .net configuration?

    Yes the install was done by the SAP install consultant but now we are getting an error when we restrict the Sysadmin ID. Server diagnostics and other tests on Appshell passed as well.

  • Travel: WebDynpro ABAP: Page can not be displayed

    Hi,
    We are using EHP 2 for Travel(ABAP WD).
    All users are getting " Page can not be displayed" , when clicking on the create Travel request.
    But after clicking two to three times the link , the application is working fine.
    Please suggest any sol for this.
    Thanks,
    Anumit

    Hi Raynard,
    I also faced the same problem and wanted to know what do you mean by open a customer message on BC-WD-ABA. And what all WD settings are required for ENH2 to work on Business pkg 1.3.
    Regards,
    Indu

  • MX7 Administrator Page can not be displayed

    Our MX7 has been running for a while without problem. I tried
    to access the CF Administrator page and received an error message
    that Administrator Page can not be displayed. All other .htm pages
    and .cfm pages work fine. I am perplexed by the following line in
    the exception.log.
    java.lang.NoSuchMethodError:
    coldfusion.runtime.CfJspPage._setCurrentLineNo(I)V
    at
    cfApplication2ecfm1439570487._factor7(E:\cf8_final\cfusion\wwwroot\CFIDE\administrator\Ap plication.cfm:1)
    E:\cf8_final\... does not make any sense to me. We are
    running CF MX7, and E: drive on our server is a CD-rom drive. We do
    have contractors maintaining our servers from a remote building.
    Could it be someone initiated an install of CF8 by mistake?
    Any pointers to fix this problem are greately appreciated.
    Entries in the exception.log
    "Error","jrpp-0","01/15/08","14:32:49",,"coldfusion.runtime.CfJspPage._setCurrentLineNo(I) V
    The specific sequence of files included or processed is:
    C:\Project7\htdocs\CFIDE\administrator\index.cfm, line: 1 "
    java.lang.NoSuchMethodError:
    coldfusion.runtime.CfJspPage._setCurrentLineNo(I)V
    at
    cfApplication2ecfm1439570487._factor7(E:\cf8_final\cfusion\wwwroot\CFIDE\administrator\Ap plication.cfm:1)
    at
    cfApplication2ecfm1439570487.runPage(E:\cf8_final\cfusion\wwwroot\CFIDE\administrator\App lication.cfm:1)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:349)
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
    at
    coldfusion.filter.CfincludeFilter.include(CfincludeFilter.java:33)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:172)
    at
    coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at
    coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
    at coldfusion.CfmServlet.service(CfmServlet.java:107)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    Rottie wrote:
    > java.lang.NoSuchMethodError:
    coldfusion.runtime.CfJspPage._setCurrentLineNo(I)V
    > at
    >
    cfApplication2ecfm1439570487._factor7(E:\cf8_final\cfusion\wwwroot\CFIDE\adminis
    > trator\Application.cfm:1)
    >
    > E:\cf8_final\... does not make any sense to me. We are
    running CF MX7
    You are definitely accessing a CF 8 CFIDE folder. You can
    copy a CF 7
    CFIDE folder over it (make a backup first of course), then
    delete all
    compiled templates from the cfclasses fir and try again.
    Jochem
    Jochem van Dieten
    Adobe Community Expert for ColdFusion

  • Apple ID - 'Page can not be displayed' error.

    I recently bought Apple Protection plan for my iPod, and I was registering it today when it told me to type in my Apple ID. I did so, then it came up with a 'Page can not be displayed' page. I'm really confused. I've tried several times, but it still hasn't logged me in.
    I really need help soon, because my warranty is ending soon. Please help!!

    4033
    Hi Alice-san,
    Did you type the full [email protected] or only yourID ?
    Usually at Apple you have to type the whole address in the ID field, not the only name like at Yahoo for example.
    Axl

  • When i hit the back button, the web page can not reload ! and this button is disable ! I'm using Ubuntu 10.04 Lucid ! and I've just upgrade to firefox 4 RC. Sorry for my poor English skill !

    When i hit the back button, the web page can not reload ! and this button is disable ! I'm using Ubuntu 10.04 Lucid ! and I've just upgrade to firefox 4 RC. Sorry for my poor English skill !

    In Firefox 23 versions and later the keyword.URL pref is no longer supported and it is no longer possible to specify the search engine for the location bar via the keyword.URL pref.<br />
    The search engine that is used on the location bar and on the about:home page is the search engine that is selected in the search Bar on the Navigation Toolbar.<br />
    Current Firefox versions do not update the about:home home page until you refresh the page (future versions will do this automatically without a refresh) and that is what happens if you use the Back key.
    You can install the Keyword Search extension to specify with search engine to use for the location bar and which search engine to use for the about:home page via the Options/Preferences windows of this extension, accessible via the about:addons page.
    * Keyword Search: https://addons.mozilla.org/firefox/addon/keyword-search/

  • XE-installation- GO TO DATABASE  HOME PAGE- page can not be displayed

    Hi ,
    I have installed oracle XE , when i try to visit GO TO DATABASE HOME PAGE , page can not be displayed is comming , can any one help me on this .
    tnx in advance.......

    First check if XE service is running. You can go Control Panel >> Administrative Tools >> Computer Management >> Service to check

  • Why the Oracle Coherence can not run successsfully?

    Why the Oracle Coherence can not run successsfully?
    When I run the costomized cache-server.cmd file, the following error message shows up:
    C:\coherence\examples\java> *contacts-cache-server.cmd*
    2009-10-22 10:57:10.609/0.563 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a): Loaded operational configur
    ion from resource "jar:file:/C:/coherence/lib/coherence.jar!/tangosol-coherence.xml"
    2009-10-22 10:57:10.624/0.578 Oracle Coherence 3.5.2/463 <Info> (thread=main, member=n/a): Loaded operational override
    from resource "jar:file:/C:/coherence/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-10-22 10:57:10.624/0.578 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a): Optional configuration overri
    "/tangosol-coherence-override.xml" is not specified
    2009-10-22 10:57:10.624/0.578 Oracle Coherence 3.5.2/463 <D5> (thread=main, member=n/a): Optional configuration overri
    "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.5.2/463
    Grid Edition: Development mode
    Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
    2009-10-22 10:57:11.062/1.016 Oracle Coherence GE 3.5.2/463 <Info> (thread=main, member=n/a): Loaded cache configurati
    from "file:/C:/home/oracle/coherence/Contacts/contacts-cache-config.xml"
    2009-10-22 10:57:12.078/2.032 Oracle Coherence GE 3.5.2/463 <D5> (thread=Cluster, member=n/a): Service Cluster joined
    e cluster with senior service member n/a
    2009-10-22 10:57:15.328/5.282 Oracle Coherence GE 3.5.2/463 <Info> (thread=Cluster, member=n/a): Created a new cluster
    cluster:0xD3FB" with Member(Id=1, Timestamp=2009-10-22 10:57:11.734, Address=192.168.16.83:8088, MachineId=30803, Loca
    on=site:metsys.metex.com,machine:NECu10,process:3820, Role=CoherenceServer, Edition=Grid Edition, Mode=Development, Cp
    ount=4, SocketCount=4) UID=0xC0A81053000001247CC05C3678531F98
    2009-10-22 10:57:15.375/5.329 Oracle Coherence GE 3.5.2/463 <D5> (thread=Invocation:Management, member=1): Service Man
    ement joined the cluster with senior service member 1
    2009-10-22 10:57:15.875/5.829 Oracle Coherence GE 3.5.2/463 <D5> (thread=DistributedCache:PartitionedPofCache, member=
    : Service PartitionedPofCache joined the cluster with senior service member 1
    2009-10-22 10:57:15.890/5.844 Oracle Coherence GE 3.5.2/463 <Info> (thread=DistributedCache:PartitionedPofCache, membe
    1): Loading POF configuration from resource "file:/C:/home/oracle/coherence/Contacts/classes/contacts-pof-config.xml"
    2009-10-22 10:57:15.906/5.860 Oracle Coherence GE 3.5.2/463 <Error> (thread=DistributedCache:PartitionedPofCache, memb
    =1): Terminating DistributedCache due to unhandled exception: com.tangosol.util.WrapperException
    2009-10-22 10:57:15.906/5.860 Oracle Coherence GE 3.5.2/463 <Error> (thread=DistributedCache:PartitionedPofCache, memb
    =1):
    (Wrapped) (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to parse PO
    configuration (Config=contacts-pof-config.xml)) java.io.IOException: Exception occurred during parsing: looking for id
    , found id=3((0,0,65) Character Data Literal {\rtf1\ansi\ansicpg1252\deff0\deflang4105{\fonttbl{\f0\fmodern\fcharset0
    urier;}{\f1\fmodern\fcharset0 Courier-Bold;}{\f2\fswiss\fcharset0 Arial;}}
    {\*\generator Msftedit 5.41.21.2500;}\viewkind4\uc1\pard\f0\fs18 )
            at com.tangosol.coherence.Component._newChild(Component.CDB:47)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onServiceStarted(
    stributedCache.CDB:99)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onServiceState(Grid.CDB:23)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.setServiceState(Service.CDB:8)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.setServiceState(Grid.CDB:21)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid$NotifyStartup.onReceived(Grid.CDB:
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onMessage(Grid.CDB:9)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onNotify(Grid.CDB:136)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onNotify(Distribu
    dCache.CDB:3)
            at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
            at java.lang.Thread.run(Unknown Source)
    Caused by: (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") (Wrapped: Failed to parse P
    configuration (Config=contacts-pof-config.xml)) java.io.IOException: Exception occurred during parsing: looking for i
    9, found id=3((0,0,65) Character Data Literal {\rtf1\ansi\ansicpg1252\deff0\deflang4105{\fonttbl{\f0\fmodern\fcharset0
    ourier;}{\f1\fmodern\fcharset0 Courier-Bold;}{\f2\fswiss\fcharset0 Arial;}}
    {\*\generator Msftedit 5.41.21.2500;}\viewkind4\uc1\pard\f0\fs18 )
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:49)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.instantiateFromBi
    ryConverter(DistributedCache.CDB:3)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BackingMapContext
    etClassLoader(DistributedCache.CDB:6)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BackingMapContext
    nInit(DistributedCache.CDB:2)
            at com.tangosol.coherence.Component._newChild(Component.CDB:41)
            ... 10 more
    Caused by: (Wrapped: Failed to parse POF configuration (Config=contacts-pof-config.xml)) java.io.IOException: Exceptio
    occurred during parsing: looking for id=9, found id=3((0,0,65) Character Data Literal {\rtf1\ansi\ansicpg1252\deff0\de
    ang4105{\fonttbl{\f0\fmodern\fcharset0 Courier;}{\f1\fmodern\fcharset0 Courier-Bold;}{\f2\fswiss\fcharset0 Arial;}}
    {\*\generator Msftedit 5.41.21.2500;}\viewkind4\uc1\pard\f0\fs18 )
            at com.tangosol.util.Base.ensureRuntimeException(Base.java:293)
            at com.tangosol.io.pof.ConfigurablePofContext.report(ConfigurablePofContext.java:1311)
            at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(ConfigurablePofContext.java:812)
            at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePofContext.java:762)
            at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(ConfigurablePofContext.java:325)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:45)
            ... 14 more
    Caused by: java.io.IOException: Exception occurred during parsing: looking for id=9, found id=3((0,0,65) Character Dat
    Literal {\rtf1\ansi\ansicpg1252\deff0\deflang4105{\fonttbl{\f0\fmodern\fcharset0 Courier;}{\f1\fmodern\fcharset0 Couri
    -Bold;}{\f2\fswiss\fcharset0 Arial;}}....
    {code}
    The content of the contacts-cache-server.cmd file is shown here under:
    (its location is C:\coherence\examples\java
    {code}@echo off
    setlocal
    if (%COHERENCE_HOME%)==() (
    set COHERENCE_HOME=c:\coherence
    set CONFIG=C:\home\oracle\coherence\Contacts
    set COH_OPTS=%COH_OPTS% -server -cp %COHERENCE_HOME%\lib\coherence.jar;C:\home\oracle\coherence\Contacts\classes
    set COH_OPTS=%COH_OPTS% -Dtangosol.coherence.cacheconfig=%CONFIG%\contacts-cache-config.xml
    java %COH_OPTS% -Xms1g -Xmx1g -Xloggc: com.tangosol.net.DefaultCacheServer %2 %3 %4 %5 %6 %7
    :exit{code}
    The contents of the contacts-cache-config.xml file is shown here under:
    (its location is C:\home\oracle\coherence\Contacts
    {code}<?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
      <caching-scheme-mapping>
        <cache-mapping>
            <cache-name>*</cache-name>
            <scheme-name>ExamplesPartitionedPofScheme</scheme-name>
          </cache-mapping>
        </caching-scheme-mapping>
      <caching-schemes>
        <distributed-scheme>
          <scheme-name>ExamplesPartitionedPofScheme</scheme-name>
          <service-name>PartitionedPofCache</service-name>
          <serializer>
            <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
              <init-params>
                <init-param>
                  <param-type>String</param-type>
                  <param-value>contacts-pof-config.xml</param-value>
                </init-param>
              </init-params>
           </serializer>
         <backing-map-scheme>
           <local-scheme>
             <!-- each node will be limited to 250MB -->
                 <high-units>250M</high-units>
                 <unit-calculator>binary</unit-calculator>
              </local-scheme>
           </backing-map-scheme>
           <autostart>true</autostart>
        </distributed-scheme>
      </caching-schemes>
    </cache-config>{code}
    The contents of the contacts-pof-config.xml file is shown here under:
    {code}
    <?xml version="1.0"?>
    <!DOCTYPE pof-config SYSTEM "pof-config.dtd">
    <pof-config>
      <user-type-list>
        <!-- coherence POF user types -->
        <include>coherence-pof-config.xml</include>
        <!-- com.tangosol.examples package -->
        <user-type>
          <type-id>1002</type-id>
          <class-name>com.tangosol.examples.model.Contact</class-name>
        </user-type>
        <user-type>
          <type-id>1003</type-id>
          <class-name>com.tangosol.examples.model.Address</class-name>
        </user-type>
        <user-type>
            <type-id>1004</type-id>
          <class-name>com.tangosol.examples.model.Phone</class-name>
        </user-type>
      </user-type-list>
      <allow-interfaces>true</allow-interfaces>
      <allow-subclasses>true</allow-subclasses>
    </pof-config>  {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I have saved it as a XML documetent. it this OK?
    What the following error message shows us?
    Caused by: (Wrapped: error configuring class "com.tangosol.io.pof.ConfigurablePofContext") java.lang.UnsupportedClassVer
    sionError: Bad version number in .class file
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:49)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.instantiateFromBina
    ryConverter(DistributedCache.CDB:3)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BackingMapContext.s
    etClassLoader(DistributedCache.CDB:6)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BackingMapContext.o
    nInit(DistributedCache.CDB:2)
            at com.tangosol.coherence.Component._newChild(Component.CDB:41)
            ... 10 more
    Caused by: java.lang.UnsupportedClassVersionError: Bad version number in .class file
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(Unknown Source)
            at java.security.SecureClassLoader.defineClass(Unknown Source)
            at java.net.URLClassLoader.defineClass(Unknown Source)
            at java.net.URLClassLoader.access$100(Unknown Source)
            at java.net.URLClassLoader$1.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClassInternal(Unknown Source)
            at java.lang.Class.forName0(Native Method)
            at java.lang.Class.forName(Unknown Source)
            at com.tangosol.util.ExternalizableHelper.loadClass(ExternalizableHelper.java:2969)
            at com.tangosol.io.pof.ConfigurablePofContext.loadClass(ConfigurablePofContext.java:1215)
            at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(ConfigurablePofContext.java:973)
            at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePofContext.java:762)
            at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(ConfigurablePofContext.java:325)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.ensureSerializer(Service.CDB:45)
            ... 14 more
    2009-10-22 17:24:14.995/2.922 Oracle Coherence GE 3.5.2/463 <D4> (thread=ShutdownHook, member=2): ShutdownHook: stopping
    cluster nodeEdited by: junez on 22-Oct-2009 14:30

  • I get the "Fast Browser Plugin not loaded" message every time i run  safari and I can't find an MTWB folder anywhere on my hard drive?

    I get the "Fast Browser Plugin not loaded" message every time I run  Safari and I can't find an MTWB folder anywhere on my hard drive?  This doesn't seem to be causing a problem, but is a puzzle?

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a few minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; AC="com.autodesk.AutoCAD  com.google.GoogleDrive"; H='^[[:space:]]*((127\.0\.0\.1|::1|fe80::1%lo0)[[:space:]]+local|(255\.){3}255[[:space:]]*broadcast)host[[:space:]]*$'; NS=networksetup; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; AT () { o=`file -b "$1" | egrep -v '^(A.{16}t$|cann)'`; Ps "${1##*/} format"; }; Pc () { o=`grep -v '^ *#' "$2"`; l=`wc -l <<< "$o"`; [[ l -gt 25 ]] && o=`head -n25 <<< "$o"`$'\n'"[$((l-25)) more line(s)]"; Pm "$1"; AT "$1"; }; Pm () { [[ "$o" ]] && o=`sed -E '/^ *$/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/(\/Users\/)[^/]+/\1-/g' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id -G | grep -qw 80; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed -n 's/^ *//;5p;6p;8p'; h=(`SP Hardware | awk '/ Id/{print $3}; /Mem/{print $2}'`); o=$h; Ps "Model"; o=$((h[1]<4?h[1]:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d;/[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]|0[^2]|8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; p=`SP Power`; o=`awk '/Cy/{print $NF}' <<< "$p"`; o=$((o>=300?o:0)); Ps "Battery cycles"; o=`sed -n '/Cond.*: [^N]/{s/^.*://p;}' <<< "$p"`; Ps "Battery condition"; for b in FireWire Thunderbolt USB; do o=`SP $b | sed -En '/:$/{s/ *:$//;x;s/\n//;s/\n.*//;/\)/p;};/^ *(V.+ [0N]|Man).+ /{s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};/Apple|Genesy|Intel|SMSC/{s/.//g;h;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; fdesetup status | grep -q On && o=on || o=; Ps "FileVault"; a=(/ ""); A=(System User); for i in 0 1; do o=`cd ${a[$i]}L*/Lo*/Diag* || continue; for f in *.{cr,h,pa,s}*; do [[ -f "$f" ]] || continue; d=$(stat -f%Sc -t%F "$f"); [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && f="$f *"; echo "$d ${f%%_2*} ${f##*.}"; done | sort | tail`; Pm "${A[$i]} diagnostics"; done; grep -lq '*$' <<< "$o" && printf $'\n\t* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'caug|GPU |hfs: Ru|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|timed? ?o|WARN' -k Message Ane 'SMC:' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); n=$((${#s[*]}-1)); c="${s[*]}"; o=${s[$n]}%; Ps "CPU usage by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); n=$((${#s[*]}-1)); s[$n]=${s[$n]%[+-]}; c="${s[*]}"; o=$((s[$n]>=25000?s[$n]:0)); Ps "Mach ports used by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | awk 'NR>1 && !/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|openld|post[fg]|x)/{print $3}'`; Pm "Extrinsic daemons"; o=`launchctl list | awk 'NR>1 && !/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | egrep -v 'com\.apple\.(CSConfig|server)' | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/StartupItems; do M; done`; Pm "Startup items"; sys=`pkgutil --regexp --only-files --files com.apple.pkg.* | sort | uniq | sed 's:^:/:'`; b=`sed -E '/^.+Lib.+\/Contents\/Info.plist$/!d;s/\/Info.plist$//;/Contents\/./d' <<< "$sys"`; l=`egrep '^/usr/lib/.+dylib$' <<< "$sys"`; [[ "$b" && "$l" ]] && { o=`find -L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo}* -type d -name Contents -prune | grep -Fv "$b" | while read d; do test -f "$d/Info.plist" || continue; ID=$($PB\ :CFBundleIdentifier "$_") || ID="No bundle ID"; printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find /usr/lib -type f -name *.dylib | grep -Fv "$l"`; Pm "Extrinsic shared libraries"; :; } || echo $'\nReceipts missing'; o=`for e in INSERT_LIBRARIES LIBRARY_PATH; do launchctl getenv DYLD_$e; done`; Pm "Inserted dylibs"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; i=`route -n get default | awk '/e:/{print $2}'`; I=`$NS -listnetworkserviceorder | sed -En '/ '$i'\)$/{x;s/^\(.+\) //p;q;};x'`; n=`$NS -getdnsservers "$I" | awk '!/^T/{printf "not "; exit}'`; Ps "DNS (${n}from DHCP)"; o=`$NS -getinfo "$I" | awk '/k:/{if ($3 !~ "(255\.){3}0") print $3}'`; Ps "Netmask"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; f=/etc/hosts; Pc "hosts" <(egrep -v "$H" $f ); AT $f; Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; LD="$(`find /S*/*/F* -type f -name lsregister | head -n1` -dump)"; o=`for ID in $AC; do [[ "$LD" =~ $ID ]] && echo $ID; done`; Pm "Application check"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`SP Fonts | egrep 'id: N|te: Y' | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=; [[ UID -eq 0 ]] && o=root; Ps "UID"; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Why my JSP page can't get the value of a hidden field

    Hi, I got an interesting question here.
    I use req.getParameter() method to get a hidden field in Servlet, it works just fine.
    However, when I use the JSP to catch the value of that hidden field, JSP just can't, but if I change the type from hidden to text, it works fine again.
    the code is as follows:
    there are two jsp pages:game.jsp and GameMonitor.jsp.
    In game page:
    ============================================================
    <FORM action=GameMonitor.jsp method=post
    webbot-action="--WEBBOT-SELF--">Display the names of all the players currently
    connected to the server       <INPUT tabIndex=1 type=submit value=Lookup name=B1>
    <INPUT TYPE=hidden,value=1 name=p1>
    <P></P></FORM>
    ===========================================================
    I want GameMonitor.jsp to catch the value of hidden field "p1" by calling request.getParameter()
    the code catching it in the GameMonitor.jsp is:
    ============================================================
    String option = request.getParameter("p1");
              out.println("option=["+option+"]");
              try{
                   if(option.equals("1")){
    ===========================================================
    supurisingly, the result is option=[], which means it didn't catch the value of the p1 submitted by POST method.
    Does anybody here can tell what's wrong in the code?

    Thank you so much, I also found this error, which makes JSP not able to catch the hidden field, however, if I change it to text type, even the comma exists, it still works. pretty interesting!
    >
    <INPUT TYPE=hidden,value=1 name=p1>Modify the above lline and write like this....
    <INPUT TYPE="hidden" name="p1" value="1">
    And ensure that you're submitting the form data.
    Though nothing much has been changed, just try whether
    these help!!!
    fun_one

  • The admin page can not displayed completely

    Dear all,
    i have install OracleXEUniv,
    the www login page displayed OK, i can login
    after that i run . for update in rel 3.0 .. ..
    @apexins myadminpassword SYSAUX SYSAUX TEMP /i/
    .. the sql ran finish ok
    but when i try access the address
    the login page displayed not OK, image can not displayed, when i enter username and password, and click login, there is massage 'Error in page'
    how to repair that ? is wrong in my step ?
    i used :
    IE Ver 7
    Os XP
    thanks for anwer

    Hi,
    Make sure you followed the post-installation tasks mentioned in the Installation Guide.
    On a Windows system, you can copy the apex\images directory using Windows Explorer or execute a command such as the following from a command prompt:
    xcopy /E /I htmldb\images ORACLE_BASE\ORACLE_HOME\Apache\Apache\images
    On UNIX or Linux based systems, you can copy the apex/images directory by executing a command such as the following:
    cp -rf htmldb/images ORACLE_BASE/ORACLE_HOME/Apache/Apache
    Make sure that you have /i/ defined in one file (httpd.conf, marvel.conf OR dads.conf)
    -Priyanka

Maybe you are looking for