BPEL Console and 404 Not Found page

Hi!
I'm having problems logging into BPEL Console. Every time I try to do this I get the Not Found Page.
Mozilla displays:
404 Not Found
OracleJSP: java.io.FileNotFoundException:
Set the init-param debug_mode to "true" to see the complete exception message.
If I log in to Admin on another browser tab and then click on one of the domains, the tab with the console refreshes and I can use BPEL Console.
I've been reading abut the problems with capital letters in domain names. Is this the reason?
How can I set (or where) init-param debug_mode to "true". I have BPEL PM installen on Oracle AS.
Thanks!
Cheers

Hi!
Yes, the database with ORABPEL schema is up and running. There are also some records in some of ORABPEL tables.
The only problem I have is with 404 page in BPEL Console. As I said I can login to BPEL Admin without a problem and then by clicking on domain name I can get to BPEL Console. I can then do everything in Console, everything is working OK.
I just can't connect directly to BPEL Console.
Maybe someone knows what might be the cause of this?
Thanks

Similar Messages

  • Integrating Google Maps in Oracle Apex and 404 Not found error page

    Currently using APEX version 3.2.0.00.27 installed in OracleXE version 10.2.0.1.0. Have been attempting to recreate some examples of Google Maps within APEX. Found a nice set of examples here that build up to what I'm looking to ultimately do by incorporating google maps into APEX:
    http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/
    Unfortunatly, I'm getting the "404 Not Found, Not found, The requested URL /apex/wwv_flow.accept was not found on this server" page when I try to recreate the "Map with Search" example. I'd like to see if this really works using the html input and button tags in the body/region source versus creating APEX items to pass the address values to the javascript in the html header of the apex page. I'm thinking it's just an html thing within APEX that you have to do it a certain way, but I haven't managed to hit that magic combination. have gone to the google maps api v2 and looked at the html they use (it's what these examples with apex are based on) and tried that just to see. Same 404 result.
    I've seen suggestions at this forum and elsewhere that the 404 error is due to a bug. have been to metalink, and really haven't seen anything that spells out what the bug is and how to patch it or work around it. May be I just haven't found the right note/doc yet. have seen suggestions to change something associated with the Anonymous account that APEX uses. Have turned on authentication in the application to use an APEX user account with a logon page to the application. Still get the 404. Although, I have not adjusted anything elsewhere, like a DADS config file, because the apex/xe configuration is using the plsql gateway. Not sure of any procedure for changing settings on anonymous account when using plsql gateway.
    Open to suggestions. APEX 3.2 is customer version, so going to 4 may not be an option yet. XE, on the other hand, can certainly be swapped for an 11g version standard or enterprise edition if need be. I don't think this is a db version problem though. I think it's more on the APEX side of things.
    Anyway, any help or suggestions are appreciated.
    thanks
    rtp
    Edited by: RTP on Jun 24, 2011 10:30 AM

    Hi I have the same problem.... if you found the solution, please put it here to see it... I need a solution to this its urgent!!
    Thanks!!

  • 403 forbidden and 404 not found on dispatcher

    Hi people,
    As I'm viewing pages on my dispatcher server I get 403/404 on some resources:
    Failed to load resource: the server responded with a status of 404 (Not Found)
    http://our.dispatcher.server/libs/cq/i18n/dict.en.json
    Failed to load resource: the server responded with a status of 404 (Not Found)
    http://our.dispatcher.server/libs/cq/security/userinfo.json?cq_ck=1373462597320
    Failed to load resource: the server responded with a status of 403 (Forbidden)
    http://our.dispatcher.server/libs/cq/ui/rte.js
    Although I understand the 404s (I can let them pass in the .any file), I was wondering why would I need those on the dispatcher server?
    As for the 403s, same remark: why do I need rte (rich text editor?) on the publish/dispatcher site? 
    Thanks for any help.
    JS.

    Failed to load resource: the server responded with a status of 404 (Not Found)
    http://our.dispatcher.server/libs/cq/i18n/dict.en.json
    Failed to load resource: the server responded with a status of 404 (Not Found)
    http://our.dispatcher.server/libs/cq/security/userinfo.json?cq_ck=1373 462597320
    Those 2 seem to have been pinpointed here:  /libs/cq 404 error

  • HG and 404: Not Found

    I'm trying to write PKGBUILD using mercurial and am getting a: 404: Not Found error when trying to download the repository.  I must be missing something obvious here but... phhht.  When I do:
    hg clone http://hg.icculus.org/icculus/mojosetup
    from the command line, no problems.  When I put this into the PKGBUILD, and doing 'makepkg -sf', I'm getting:
    ==> Determining latest hg revision...
    abort: HTTP Error 404: Not Found
    Been a little bit but I seem to remember doing this on git pkgbuilds.  Here's the PKGBUILD:
    # Maintainer: Gen2ly <[email protected]>
    pkgname=mojosetup-hg
    _pkgname=mojosetup
    pkgver=1
    pkgrel=1
    pkgdesc="Nextgen installer for Unix Independent Software Vendors (ISVs)"
    arch=('i686' 'x86_64')
    url="http://icculus.org/mojosetup/"
    license=('custom')
    depends=('bzip2' 'libfetch' 'lua' 'zlib')
    makedepends=('mercurial')
    optdepends=('')
    options=()
    install=""
    source=('')
    md5sums=()
    _hgroot="http://hg.icculus.org/icculus/mojosetup"
    _hgrepo="mojosetup"
    build() {
    msg "Connecting to Mercurial server..."
    if [ -d $_hgrepo ]; then
    cd $_hgrepo
    hg pull -u || return 1
    msg2 "The local files have been updated"
    else
    hg clone $_hgroot $_hgrepo || return 1
    msg2 "Mercurial checkout done"
    fi
    # Build
    mv $_pkgname $_pkgname-$pkgver
    cd "$srcdir/$_pkgname-$pkgver"
    mkdir cmake-build
    cd cmake-build
    cmake .. -DCMAKE_INSTALL_PREFIX=/usr
    #-CMAKE_BUILD_TYPE=MinSizeRel
    make || return 1
    make DESTDIR="$pkgdir/" install
    I'm guessing mercurial does versioning differently????  Any ideas?

    I got the build process to start reliably by changing source=('') to source=(), correcting _hgroot and adding a couple of cd ${srcdir}'s:
    _hgroot="http://hg.icculus.org/icculus"
    _hgrepo="mojosetup"
    build() {
    cd ${srcdir}
    # Build
    cd ${srcdir}
    Unfortunately, it bombed before completing:
    Scanning dependencies of target mojosetup
    [ 40%] Building C object CMakeFiles/mojosetup.dir/buildver.o
    [ 41%] Building C object CMakeFiles/mojosetup.dir/mojosetup.o
    [ 42%] Building C object CMakeFiles/mojosetup.dir/gui.o
    [ 43%] Building C object CMakeFiles/mojosetup.dir/fileio.o
    [ 45%] Building C object CMakeFiles/mojosetup.dir/archive_zip.o
    cc1: warnings being treated as errors
    /home/david/Junk/mojosetup/src/mojosetup-733/archive_zip.c: In function 'zip_find_end_of_central_dir':
    /home/david/Junk/mojosetup/src/mojosetup-733/archive_zip.c:608: error: dereferencing type-punned pointer will break strict-aliasing rules
    make[2]: *** [CMakeFiles/mojosetup.dir/archive_zip.o] Error 1
    make[1]: *** [CMakeFiles/mojosetup.dir/all] Error 2
    make: *** [all] Error 2
    ==> ERROR: Build Failed.
        Aborting...
    Last edited by azleifel (2009-12-15 21:32:48)

  • I can go to every other website except for facebook even if i use other browsers all i can see is 404 Not found or HTTP 500 Error since yesterday I tried reinstalling clearing history and cookies enabling them make sure that my firewall permits me to acce

    I can go to every other website except for facebook. I try every other browser in my computer but the only thing I can see is HTTP 500 error and 404 Not Found. I tried clearing cache history and cookies, enabling cookies, checking my modem, make sure my firewall permits me to access this web and even pt 's' in front of 'http' but it still dosent work. I can go to facebook with my dad's laptop and my handphone but not with this computer, why?
    == URL of affected sites ==
    http://www.facebook.com

    Problem Resolved!
              I found out that I had 'http' instead of 'httpd' in the statement where I
              registered my servlet, SqlServlet.
              Now, I am having difficulty with hot deployment. The server is returning
              error 404.
              

  • APEX Listener 2.0 - RESTful Services Failure with  404 - Not Found

    Versions used:
    * APEX Listener 2.0.0.354.17.05
    * Application Express 4.2.1.00.08
    * Oracle Database 11.2.0.1
    When testing the sample RESTful Service Module oracle.example.hr I always get 404 - Not Found page.
    I followed the documentation to install and configure APEX 4.2 and the Listener 2.0. Everything in my APEX installation works fine except RESTful Services.
    For example, when calling this RESTful Service:
    http://company.com:45678/apex/DEV/xxuapex/hr/empinfo/
    I get a 404 page.
    The corresponding entry in url-mapping.xml is:
    <pool base-path="/DEV" name="od01" workspace-id="xxuapex"/>
    where xxuapex is the name of the schema as well as the workspace where the RESTful Service is installed.
    Moreover, the corresponding od01.xml, od01_rt.xml and od01_al.xml in the conf directory seem correct.
    Any help is greatly appreciated.
    Thanks.
    Eddie Awad.

    Hi Eddie,
    +> try the other option base-url of the url-mapping+
    I did. No change. Still getting 404.When active it should transform the 404 page into a detailed 404 with a description of what the error is. Just to be sure, this is activated in the defaults.xml file of the APEX Listener as: *<entry key="log.logging">true</entry>*.
    You should then see a detailed 404 output in your browser of what's going wrong first of all.
    +> Could you post your url-mapping.xml file?+
    <?xml version="1.0" encoding="UTF-8"?>
    <pool-config xmlns="http://xmlns.oracle.com/apex/pool-config">
    <pool base-path="/DEV" name="od01" workspace-id="xxuapex"/>
    <pool base-path="/TEST" name="ot01" workspace-id="xxuapex"/>
    </pool-config>
    Despite using the url mapping script, it didn't map mine correctly and had to edit it manually. It was the use of "apex" that got it to work for me:
    *<pool base-path="/" name="apex" workspace-id="workspace-name-here" updated="2013-01-09T20:48:59.75Z"/>*
    Nick.

  • HTTP 404 Not Found - Forms

    Hi All,
    I am learning Forms 10g. I have created a smaple basic form with two fields and successfully compiled it. I have started the OCJ4 Instance also.
    But, while running it (through Program -> Run Form) I am getting HTP 404 Not Found - Page Not found Error.
    How to get rid of this ?
    Please help me out.
    Thanks !

    what is the value fro FORMS_BUILDER_PATH ? I did not find any key with that name in my Registry ? I believe you mean FORMS_BUILDER_CLASSPATH and FORMS_PATH. These are the two variables I mentioned in the article. The FORMS_BUILDER_CLASSPATH is used of you have 3rd party Java Beans or Pluggable Java Components (PJCs).
    What are teh .jar files need to be included in it ?If you are not using any of Java Beans or PJCs you do not need to set this variable.
    FORMS_PATH :: We have included two values in FORMS_PATH in Registry. Do I need to include the complete path in FORMS_PATH again here ? Or only C:\Forms_Dev\*;The FORMS_PATH tells forms where to look for Forms Executables. Again, as I mentioned in the article, you should only ADD to this path variable. Do not delete anything already listed in this variable! For example, if installed Oracle Forms 10g to C:\DevSuiteHome_1 - the FORMS_PATH will default to: C:\DevSuiteHome_1\cgenf61\admin;C:\DevSuiteHome_1\forms. If you want to add your Forms directory (where you keep all of your forms) to the FORMS_PATH, do the following:
    FORMS_PATH=C:\DevSuiteHome_1\cgenf61\admin;C:\DevSuiteHome_1\forms;C:\Forms_Dev\*;
    As the CLASSPATH contains all the .jar files, do I need to change it ?No, you do not need to change the CLASSPATH. As I mentioned above, you only need to change the CLASSPATH if you are using 3rd Party Java Bean/PJCs.
    Are these steps enough or do I need to change all the setting as mentioned in one of the previous replies ?What changes have you made? Just FORMS_PATH and FORMS_CLASS_PATH? Please list what changes you've made so we can answer your question.
    Craig...

  • FLOW_EXCEL_OUTPUT_RegionID generating 404 Not Found error

    Hello,
    I've tried using the FLOW_EXCEL_OUTPUT option to download a report into CSV:
    +<--a href="f?p=&APP_ID.:14:&SESSION.:FLOW_EXCEL_OUTPUT_R30061016791424464"-->Download<--/a-->+
    or +<--a href="f?p=&APP_ID.:14:&SESSION.:FLOW_EXCEL_OUTPUT_R&P_REGION_ID."-->Download<--/a-->+ if I'm taking the region id dynamically, p_region_id's default value:
    SELECT region_id  FROM apex_application_page_regions
    WHERE       application_id = :app_id AND page_id = :app_page_id AND region_name = 'CSV export'
    The problem is if I try to download it (for example using Mozilla) I say ok once, and if I press cancel when it comes to selecting the location, than I get the 404 Not Found if I try to download the report again.
    Any ideas?
    Thanks,
    Adela

    Hey guys,
    The problem was that the region from which I've took the region ID was on Never (as display).
    That still doesn't explain though why the download worked if it wasn't canceled the first time.
    But still it's good that I don't get the 404 Not Found page anymore.
    Regards,
    Adela
    Edited by: adela on Jan 26, 2010 12:23 AM

  • Safari won't connect - redirects to 404 Not Found

    Good morning! I have a new MacBook Pro, and am a long-time Mac user. Yesterday I spent 4 hours on the phone with an Apple tech, and we were not able to resolve this issue so I hope somebody out there is smarter than a Genius.
    When I open Safari, it instantly redirects to a 404 Not Found page, specifically "http://www.microsoft.com/exchange/services/default.mspx". If I type in "http://www.google.com", it redirects to the same 404 Not Found page. If I click on any bookmark, I'm redirected the same. Oddly, the only site I am able to open by typing or using bookmark is Wells Fargo Bank. But I cannot navigate anywhere from there.
    The tech had me do everything - reset Safari, empty all caches, delete and reinstall Safari from original disks, repair using disk utility, even reinstalled OSX from original install disks.
    Firefox works just fine, and Safari on my husband's Mac connects with our Airport as well, so it's not an Internet connection problem. Please help if you can! Thank you.

    Thank you both for your kind suggestions. I read everything regarding DNS, and that does not seem to be the source of the problem. I'm able to get online -- I can get anywhere through Firefox, and Safari will take me to wellsfargo.com but nowhere else. All other web addresses are redirected to the 404 Not Found (Microsoft) page. Think the bankers have taken over my MacBook Pro? Or Microsoft ....
    Still hoping for a solution, because it's good to have a backup browser to Firefox.

  • Application Server Console returns EMDAEMON HTTP 1.1 404, Not Found

    Hello,
    Windows XP
    Version 10.1.2.0.2
    When I try to access the AS Console through the following URL:
    http://192.168.1.100:18100/emd/console/
    I get the following error:
    EMDAEMON
    HTTP/1.1 404 , Not Found
    But I'm able to access AS Portal through the following URL:
    http://192.168.1.100:18101/emd/console/
    I'm able to access all the other following URLs:
    http://192.168.1.100:7777/
    http://192.168.1.100/portal/page/portal/TOPLEVELSITE/Welcome
    http://192.168.1.100:5500/em/console/
    http://192.168.1.100:7777/oiddas/
    I think the port number is messed up somewhere and I'm not sure how to correct and get the AS Console working again.
    emctl status iasconsole gives:
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://192.168.1.100:18000/emd/console/aboutApplication
    Oracle Enterprise Manager 10g Application Server Control is running.
    emctl status agent gives:
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.4.2
    OMS Version : Unknown
    Protocol Version : 10.1.0.2.0
    Agent Home : D:\oracle\appserver\OraInfra
    Agent binaries : D:\oracle\appserver\OraInfra
    Agent Process ID : 3728
    Agent Process ID : 3728
    Agent URL : http://192.168.1.100:18100/emd/main/# MEDIUM if number of ta
    rgets is from 11 to 50.
    Started at : 2008-01-06 20:16:23
    Started by user : SYSTEM
    Last Reload : 2008-01-06 20:22:01
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 78.03%
    Agent is Running and Ready
    It would be helpful if someone can guide me in the right direction. Thanks for your time.

    Hello, thanks for the input. Running in separate boxes is not a viable option at this point. I tried to update the iasconsole and agent ports based on the document here:
    http://download.oracle.com/docs/cd/B14099_07/core.1012/b13995/ports.htm#i1038847
    So I used the following commands to update the ports:
    emctl config agent port 18139
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Oracle Enterprise Manager 10g Agent configuration update succeeded.
    emctl config iasconsole port 18119
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://192.168.1.100:1156/emd/console/aboutApplication
    0 [main] ERROR emSDK.config - java.util.MissingResourceException: Can't find bu
    ndle for base name oracle.xml.mesg.XMLResourceBundle, locale en_US
    java.util.MissingResourceException: Can't find bundle for base name oracle.xml.m
    esg.XMLResourceBundle, locale en_US
    at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle
    .java:839)
    at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:808)
    at java.util.ResourceBundle.getBundle(ResourceBundle.java:579)
    at oracle.xml.util.XMLError.getMessageBundle(XMLError.java:500)
    at oracle.xml.util.XMLError.alloc(XMLError.java:508)
    at oracle.xml.util.XMLError.getMessage0(XMLError.java:419)
    at oracle.xml.util.XMLError.error0(XMLError.java:310)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidati
    ngParser.java:318)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingP
    arser.java:281)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:186)
    at oracle.sysman.emSDK.conf.TargetInstaller.parseTargetFromFile(TargetIn
    staller.java:1747)
    at oracle.sysman.emSDK.conf.TargetInstaller.modifyTargetFromFile(TargetI
    nstaller.java:1294)
    at oracle.sysman.emSDK.conf.TargetInstaller.main(TargetInstaller.java:36
    86)
    16 [main] ERROR emSDK.config - java.io.IOException: Error parsing target from f
    ile D:\oracle\appserver\OraInfra/sysman/emd/iasTargetMod.xml :: Can't find bundl
    e for base name oracle.xml.mesg.XMLResourceBundle, locale en_US
    java.io.IOException: Error parsing target from file D:\oracle\appserver\OraInfra
    /sysman/emd/iasTargetMod.xml :: Can't find bundle for base name oracle.xml.mesg.
    XMLResourceBundle, locale en_US
    at oracle.sysman.emSDK.conf.TargetInstaller.parseTargetFromFile(TargetIn
    staller.java:1760)
    at oracle.sysman.emSDK.conf.TargetInstaller.modifyTargetFromFile(TargetI
    nstaller.java:1294)
    at oracle.sysman.emSDK.conf.TargetInstaller.main(TargetInstaller.java:36
    86)
    Error parsing target from file D:\oracle\appserver\OraInfra/sysman/emd/iasTarget
    Mod.xml :: Can't find bundle for base name oracle.xml.mesg.XMLResourceBundle, lo
    cale en_US
    Oracle Enterprise Manager 10g Application Server Control configuration update fa
    iled.
    When I looked at iasTargetMod.xml the file is empty (0 KB size).
    After Starting the Application Server Control, I checked the status of both iasconsole and agent and are as follows:
    emctl status iasconsole
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://192.168.1.100:18119/emd/console/aboutApplication
    Oracle Enterprise Manager 10g Application Server Control is running.
    Logs are generated in directory D:\oracle\appserver\OraInfra/sysman/log
    emctl status agent
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.4.2
    OMS Version : Unknown
    Protocol Version : 10.1.0.2.0
    Agent Home : D:\oracle\appserver\OraInfra
    Agent binaries : D:\oracle\appserver\OraInfra
    Agent Process ID : 8176
    Agent Process ID : 8176
    Agent URL : http://192.168.1.100:18139/emd/main/# we can set it to 0 to
    use the OS default value.
    Started at : 2008-01-08 00:13:53
    Started by user : SYSTEM
    Last Reload : 2008-01-08 00:13:53
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 78.00%
    Agent is Running and Ready
    I also checked the following:
    emctl config listtargets
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    [192.168.1.100:18139, oracle_emd]
    [192.168.1.100, host]
    [orcl.168.1.100, oracle_database]
    [LISTENER_192.168.1.100, oracle_listener]
    After all this, I went to this URL:
    http://192.168.1.100:18101/
    - and logged in as ias_admin. The name for Infra and Portal are as follows:
    infra.192.168.1.100
    PORTAL.192.168.1.100
    When I clicked on infra.192.168.1.100 I get 'Internet Explorer cannot display the webpage' error.
    But when I click on PORTAL.192.168.1.100 everything is working and the status of all the components are up.
    I'm not sure how I should proceed at this point. Any pointers would be helpful. Thanks!!

  • Error Message: The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version. The request failed with HTTP status 404: Not Found.

    I have a web page that contains a ReportViewer control.  I am trying to display a report, which is an .rdl file located on the SSRS server, in this ReportViewer control.  I have set the ReportPath and ReportServerUrl correctly.  I am
    getting an error message.
    Am I suppose to use an .rdlc file rather than a .rdl file?  Does the web server configuration need to use a certain account?
     I am getting the following error message:
    The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version.
    The request failed with HTTP status 404: Not Found.

    Hi bucaroov,
    The error "The request failed with HTTP status 404: Not Found." means the ReportServerURL configured in the ReportViewer control is invalid.
    Please follow these steps to solve the issue:
    Logon the Report Server machine.
    Open the Reporting Services Configuration Manager.
    Copy the Report Server URL from 'Web Services URL'.
    Logon the application server(in this case, it is the server that host the web page), check if we can use the URL we got from step 3 to access the Report Server. If so, please replace the ReportServerURL in the ReportViewer control with this URL. If it is
    not available, could you please post the error message.
    Additionaly, we don't need to provide the extension for a server report. The ReportPath should be like: /<reports folder>/<report name>
    For more information, please see:
    Walkthrough: Using the ReportViewer Control in Remote Mode:
    http://msdn.microsoft.com/en-us/library/ms251669(VS.80).aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Jin Chen
    Jin Chen - MSFT

  • Error 404 -- Not Found while accessing weblogic console

    Hi
    I get Error 404 Not Found while accessing the console or any other application
    which is deployed on the server
    while the server is running even i have restarted my server
    it shows server running in the log files as well as on the command console .
    but when i try to access console or any other application it gives me error page
    404 Not Found
    I am using weblogic 7 with SP2 on solaris
    So please help me in debugging the problem
    Thanks in advance....
    Pratap

    Hi
    I get Error 404 Not Found while accessing the console or any other application
    which is deployed on the server
    while the server is running even i have restarted my server
    it shows server running in the log files as well as on the command console .
    but when i try to access console or any other application it gives me error page
    404 Not Found
    I am using weblogic 7 with SP2 on solaris
    So please help me in debugging the problem
    Thanks in advance....
    Pratap

  • Assigning a Muse Template to the 404 Page Not Found page

    I recently create a template for my blog by doing the following:
    I created a template in Muse
    I added the tag {tag_pagecontent} to a page in Muse and assigned the page to the template.
    I then uploaded that page to Business Catalyst.
    BC looked at the page I created in Muse as a template. I'm assuming this is because it had the {tag_pagecontent}  tag.
    I then assigned the page to the blog and everything worked perfectly.
    Now I would like to assign the main template on my web site to the 404 Page Not Found page so that the pages are consistent. How can I do this?
    How can I get BC to recognize a page created in Muse as a BC template? Or simply, how can I assign a template created in Muse to the 404 pages without adding a {tag_pagecontent} or similar tage in Muse? I currently do not see any of the templates I created in Muse as an option to select.

    Hi Rick,
    In order to access all the menu items on BC, kindly follow the below steps:-
    1)On the BC dashboard, expand the dropdown on the top right side that has your name.
    2)Select 'My details'
    3)Scroll down and check 'Enable online content editing' check box.
    4)Save the details.
    5)It will ask for the password, enter it and click continue.
    6)Check the site manager menu again. It should have all the submenus.
    Regards,
    Neha

  • Call Forms Forum from Oracle Forms Main Page - Error 404 Not Found

    Hello !
    The Layout and fuctionality of the Oracle Forms Forum has changed - very nice !
    But it's not possible to call the Oracle Forms Forum
    from the Oracle Forms Main Page !
    Error-message :
    404 Not Found
    OracleJSP: An error occurred. Consult your application/system administrator for support. Programmers should consider setting the init-param debug_mode to "true" to see the complete exception message.
    Thomas

    Please use the [Post-Upgrade Problems|http://forums.oracle.com/forums/forum.jspa?forumID=587&start=0] to report Forums related problems.
    This is the Forms Forum.
    Tony

  • First Page -Error 404--Not Found

    Hi All,
    I started learning ADF recently, I have created EO,VO,AM. My Jdev version is 11.1.1.3.0.
    I tested with BC4J Tester everything is working fine.
    But when I create JSF page and say Run I am getting the following error in the internet explorerer browser.
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    This is the first time i am trying to run the page. could any one please let me know what are the setting i need to do,In Order to view my page.
    Thanks
    Kumar.

    So first make sure the page is NOT under the web-inf folder (as John correctly stated) and then dragyour page onto the adfc-config.xml file. The the page gets hopefully registered.
    If not drag a new view from the component palette onto the adfc-config.xml, give the view a name like 'TestMyApp' (don't let the name end in '.jspx'), create the page (double click on the icon) and put something onto the page.
    Then you can change the view controllers project properties and select run/debug select the default run configuration and edit it. Under 'launch settings' select the adfc-config.xml as target, uncheck the 'attempt to Run Active...' and now select 'ADF Task Flow' in the left hand side tree. Now you select the newly created view TestMYApp and save your changes.
    When you now run the app using the menu run (or debug) command, your app starts with the selected page 'TestMyApp'.
    Timo

Maybe you are looking for

  • Using VMWare Fusion for playing games

    Hi all and I hope you can help. I have a recent 17" MBP with 2GB of RAM and a Core 2 Duo and I am trying to get some decent game software running on it. To do this I have installed VMWare Fusion, XP Pro and Crysis. My problem is, I can get the game t

  • Trinidad table/form too big in mobile page

    I was trying to emulate the demo at [http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/ADFMobile/adfmobile.htm] using my own data. I can't seem to get trinidad tables/forms to fit as nicely as the demo does within a 240x320 screen at desi

  • Failed with code 0x8007000e.

    Hi, I am getting the below error in ccm.log file. Please let me know how to solve this HTTPPost(URL='http://PSS.abc.com/ccm_system/request'): Failed with code 0x8007000e. HandleRemoteSyncSend failed (0x8007000e).3 CForwarder_Sync::Send failed (0x8007

  • How to find/remove broken symlinks in Snow Leopard?

    Long story, but I need to check my system for broken symlinks and aliases and, if there are any, remove them.  Is there a way to do that in the Terminal?  If so, what are the exact commands?  Obviously, I would like to know what they are, if any, bef

  • [Solved] (Python3) Ignoring lines with control characters

    Long story short, I log the output of an in-house program with tee. The program displays a progress meter. When I read the file into a list, I end up with lines like: >>> temp_file[18] ''Write: 1% [> ] 1 MB\x1b[2K\n' I can filter these out with: for