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

Similar Messages

  • 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/

  • Why do I keep getting the "Your purchase can not be completed at this time"?

    Why do I keep getting the "Your purchase can not be completed at this time"? I change the email address, credit card, confirmed new billing information and still can't make an In-App purchase.

    This sounds like an error in the activation of your device, not to do with syncing. After the restore, did the device activate?

  • 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

  • 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

  • On the etap hotel site, the map page will not display

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/780195]</blockquote><br>
    On the etap hotel site www.etaphotel , when i click on map, nothing is displayed. The page just has a space on it.

    Hi Fisher,
    Unfortunately, In a smartform, only single main window is continued to all pages even though you can declare windows under each page as main window, but it actually acts as the same window for all pages. It just means that if text from 1st page is overflowed, it will continue to the next page with main window.
    Command line to go to next page will create an extra page but since text is not flowed in main window, it won't print the text element you have included in main window on third page.
    The solution to your problem as I see is that either you include your terms and conditions in the main window of your first page and just before your text element for T&Cs, use Command to go to third page.
    Hope it helps.
    Ravi

  • The next page in not displaying in the SAP Script

    Hello,
    I had one SAP script. There were two pages in the script and i mentioned the next page also for the FIRST and NEXT page as
    First - next page --> next
    and next -- next page --> next
    Now, I am having 3 items which needs to be gets displayed using SAP script.
    The first two items displayed properly but the third item is not getting displayed, as of the size of main window is small.
    Whenver i am increasing the size of main window the third item gets displayed propely.
    But i guess whenever the data will get overflow in main window then it should gets displayed in the next page, this is not happening in my case.
    Can any one tell me, how to display the next page whenver the data will get overflow in main window?
    Please help me with this.
    Thanks in advance
    Regards,
    Darshana

    Hi Darshana,
    if you use text element for the item output, you will need same text element on NEXT page. Check for Typos. Switch on sapscript debugger and check what happens.
    Regards,
    Clemens

  • ITS Admin page is not displaying but requesting download

    Hi,
    I am having a problem with my ITS, basically all the web pages function correctly, except the ITS admin page.
    I use the URL, but the response I get back is a dialog asking me to save the web page called !.
    After looking at this I think the scripts directory has been altered, and execute permission has been removed. But I am not entirely sure.
    Any ideas or comments please reply.
    Thanks
    Chris aka BoobBoo

    the problem is most likely solved by now, but we should follow up on the explanation:
    If there is a dialog to save the web page called !.html it could mean a mismatch between WGate configuration information and the web server setup (it looks like you are using IIS).:
    To test call service webrfc (/scripts/wgate/webrfc/!):
    If that fails, it means:
    - the URL that is called is wrong and without WGate Installation
    - path SAP-WGate-Scripts is incorrect or missing
    If service webrfc works but webgui fails:
    - we have seen this issue with double compression turned on (e.g. ITS compression and IIS runtime compression)
    - make sure folder “IIS Temporary Compressed Files” isn't compressed on OS level
    => solution could be to turn of ITS compression: ~http_use_compression=0
    best regards
    Gerd

  • The additive cost can not display on the work order plan cost

    dear friends
    first i run the ck74n for the additive cost ,second i run the ck11n for cost estimate ,i can see that the additive cost update to the standard cost successfully ,at last i run the ck24 mark and release the standard cost,but when i raise a work order ,i can  not see the additive cost in the plan cost ,i do not know the reason ,do you have some suggestion
    thanks

    Hi
    This behaviour is expected and standard...
    In Std cost estimate, you have the option of inputting components manually in CK74N... But the actual costs in Prod order will come either from Material issues/Activity Confirmations or manual postings from FI... There is no option to enter additive costs in actuals.. Hence, there is no option of "additive costs" in the Planned costng variant of Prod order
    If you enter any additive costs in CK11N, It is done because you cant estimate it through Qty Structure.. But, during actuals, the actual costs are all available through Material issues/Activity Confirmations.. hence, the additive costs does not apply here
    BR,Ajay M

  • (winxp+oracle11g) The em page can not be opened.

    I am struggling with the OEM these days and stunned by an error. When i input https://myhostname:1158/em in ie ,it always shows that
    503 Service Unavailable
    Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.
    It seems that the server has been overload and it is too busy to response the request. But i find the cpu or mem are not used out . Actually i am the only user who request.
    I can't figure out what the problem is. Can someone help me? Thanks a lot.
    Edited by: user11228816 on 2009-9-15 下午10:49
    Edited by: user11228816 on 2009-9-15 下午11:27

    Those who live by the GUI, die by the GUI.
    When the GUI does not respond, you have no clue what to do next.
    Too bad to be you.

  • When I open another tab and hit the home button on the tool bar the google page will not load completely. and when I type in a search it wont work. I have to use the yahoo adress bar at the top to search. How do I fix this

    I have tried closing it and reloading and it still wont work.

    I figured out how to correct it. Not sure what exactly was happening. But I started into private browsing and then turned it off. It's been working correctly ever since I did private browsing.

  • 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

  • Xml page can't display in the first time

    Hi everyone:
    I want to read data from MySQL to web page using JDOM.I read the data from database successful and insert them into a xml file.But I can't open the xml page property.It will display after I refresh the page more than ten times!
    I find that it become easy if I use JDOM to do this work.I write the logic in a servlet:
    /////////////////////////the servlet code is:////////////////////////////////////////////
         public void displayXml(){
              SAXBuilder build=new SAXBuilder();
              try{
              Document doc=build.build(new FileInputStream("C:\\tomcat\\webapps\\ROOT\\xmlbook\\mysql.xml"));
              Element root=doc.getRootElement();
              List books=root.getChildren();
              out.println("debug... ...");
              while(rs.next()){
              Element id=root.getChild("id");
              id.setText(rs.getString("id"));
              Element name=root.getChild("name");
              name.setText(rs.getString("name"));
              Element title=root.getChild("title");
              title.setText(rs.getString("title"));
              Element content=root.getChild("content");
              content.setText(rs.getString("content"));
              Element time=root.getChild("time");
              time.setText(rs.getString("time"));
              XMLOutputter xmlout=new XMLOutputter("",true,"GBK");
              xmlout.output(doc,new FileOutputStream("C:\\tomcat\\webapps\\ROOT\\xmlbook\\mysqlnew.xml"));
         }catch(Exception e){
              out.println(e.toString());
              System.out.println(e.toString());
    //////////////////////////////index.html/////////////////////////////////////////////////////
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
         <head>
              <title>Enter the title of your XHTML document here</title>
              <link style="html/css" href="style.css" rel="stylesheet"/>
         </head>
         <body>
              <h2>welcome to here</h2>
              <form action="mainpageurl" method="post">          
              <p><input type="submit" value="CliCk To EnTEr" /></p>
              </form>
         </body>
    </html>
    //////////////////////////mysql.xml////////////////////////////////////////////////////
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <?xml-stylesheet href='mysqlxsl.xsl' type='text/xsl'?>
    <rootpro>
         <id/>
         <name/>
         <title/>
         <content/>
         <time/>
    </rootpro>
    /////////////////////////////End code///////////////////////////////////////////////////
    I add a hyperlink to the xml in a web page.It will go to the xml page when user click the button.
    But there is a problem puzzle me.The xml page will not display when the user first to come this page.The browser report error:"Can't display this page.The xml file must have a top element".It can display after I refresh this xml page more than ten times.Why?But the xml page already have a top element!~.I means the client must refresh the xml page more than ten times for display it.someone know why? :(

    sorry,My xsl file is:
    ////////////////////////////mysqlxsl.xsl//////////////////////////////////////
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:output method="html"/>
    <xsl:template match="/">
    <html>
         <head>
              <title>WelcomE To thE MainPagE</title>
         </head>
         <body>
         <table border="1" bgcolor="#eecc00">
                   <tr>
                   <td>User Information</td>
                        <td><xsl:apply-templates select="result/entry"/></td>
                   </tr>
         </table>     
         </body>
    </html>
    </xsl:template>
    <xsl:template match="entry">
    <li><xsl:value-of select="ID"/></li>
    <li><xsl:value-of select="Name"/></li>
    <li><xsl:value-of select="Title"/></li>
    <li><xsl:value-of select="Content"/></li>
    <li><xsl:value-of select="Time"/></li>
    </xsl:template>
    </xsl:stylesheet>
    I want to transform the xml file using the xsl.

  • 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

  • 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]$

Maybe you are looking for