"The requested URL /apex/f was not found on this server" error

Hi there
I'm getting the following error message when trying to access our apex app:
http://theHost:8080/apex
The requested URL /apex/f was not found on this server
It just happened out the blue so i've no idea what happened. Can someone help me to find a solution asap?
Many thanks, Jon

How did you fix this, please? I'm getting the same error, and none of the solutions on this forum apply.
Edited by: Jean-Marc, UK on Mar 16, 2010 2:34 PM

Similar Messages

  • The requested URL /apex/listenerConfigure was not found on this server

    please help me..
    after run in command prompt (java -jar c:\apex.war) to install apex listener,
    i have error when i call link http://localhost:8080/apex/listenerConfigure.
    In browser show :
    Not found
    The requested URL /apex/listenerConfigure was not found on this server
    how i can fix this error?
    thx :) :) :)

    Hi Beny,
    let's see what I can do to help you fix your installation.
    java -Dapex.port=1521 -jar c:\apex\apex_listener\apex.warThat way you would try to start the APEX Listener on a port that is usually used by the database listener. This could work if you don't have a database installed on that machine or you configured the database listener to use a different port, but I wouldn't recommend to use that port anyway, as anybody will associate it with at database listener... In your case, it sounds like you have a database installed on the same machine you start your APEX Listener on and the database is using that port already. That's why you get "nothing" when you try to access the APEX Listener - the APAEX Listener can't bind to a port that's already used by another process.
    java -Dapex.port=8081 -jar c:\apex\apex_listener\apex.war That port sounds better. The fact that you get an internal error indicates that the APEX Listener is actually working on that port, so we could try to debug.
    My first guess is, that you've already configured the APEX Listener before. Since you had it running before, I assume you didn't remove the old configuration, so the APEX Listener will reuse it. You'll find the corresponding information in the console output of your APEX Listener.
    If that's the case, the error will most likely not be in the previously working APEX Listener configuration, but in your APEX installation. Did you perform the installation steps concerning the APEX_PUBLIC_USER documented for the installation of APEX using APEX Listener? See the corresponding section of the [url http://download.oracle.com/docs/cd/E17556_01/doc/install.40/e15513/otn_install.htm#BABDEEIH]APEX Installation Guide for details.
    -Udo

  • The requested URL /apex/f was not found on this server

    Hi!
    In my project I've rebuilt a lengthy process on a page being used for months. I tested it thoroughly at home on APEX 2.2/Windows.
    Today I imported the project at my customer on APEX 2.1/Linux and trying to open this page I get the above error message.
    Another strange thing. I have in the process a return statement in an IF branch. When trying to find out the reason of the malfunction I clicked on 'Apply Changes' I've got an error massage:
    PLS-00503: RETURN statement required for this return from function
    Is a process a procedure or is it a function?
    I commented out the line with the RETURN statement, but the page isn't seen further. Only when I cut out a big portion of the process, I can open the page, but it is useless then...
    Please help me.
    Pawel

    Hi Scott.
    I moved the process activity to a stored procedure. It is a function returning an URL. The string provides also data to set items on my application page.
    declare
    s varchar2(300);
    begin
    s := print_invoice(:P27_SEL);
    owa_util.redirect_url('f?p=' || s);
    end;
    Calling the process on APEX 2.1/Linux I get following error message:
    Bad Request
    The HTTP client sent a request that this server could not understand.
    On APEX 2.2/Windows the message is more sophisticated.
    To track down the fault I changed my process as follows
    begin
    :P27_X := print_invoice(:P27_SEL);
    s := '&APP_ID.:83:&APP_SESSION.::::P83_TXT_HEADER,P83_INVOICE_NR,P83_CUSTOMER_REF,P83_DELIVERY_ID,P83_CUSTOMER_ID,P83_SHIPMENT_DATE:Rechnung,72500033,070030 Nieberg,1022,24,07.03.07';
    owa_util.redirect_url('f?p=' || s);
    end;
    The first line of the code shows on the screen the string returned by my stored procedure.
    Then I copied this string to my code to set value of variable s. This code brings me to the desired page!
    How can I overcome the problem?
    Pawel

  • 404 not found: The requested URL /apex/f was not found on this server.

    That is the error I get in the browser. It occurs only on one page, all other work normally. The apache error log contains this:
    [Thu Aug 10 09:14:33 2006] [error] [client 0.0.0.0] [ecid: 1155226473:127.0.0.1:22240:0:50,0] mod_plsql: /apex/f HTTP-404 ORA-06502: PL/SQL: numeric or value error: character string buffer too small\nORA-06512: at "FLOWS_020200.F", line 276\nORA-06512: at line 22\n
    It would appear that invoking the page is throwing an internal error, so the page is never generated and why Iam getting the 404 not found error.
    I have tried exporting the page, deleting it, then importing it back.
    Apex version is 2.2

    The item uses a static LOV with only two entries. Here's a dump of the offending item from the page export:
    declare
    h varchar2(32767) := null;
    begin
    wwv_flow_api.create_page_item(
    p_id=>2519432345942021 + wwv_flow_api.g_id_offset,
    p_flow_id=> wwv_flow.g_flow_id,
    p_flow_step_id=> 12501,
    p_name=>'P12501_VPS_PLAN__SLMMEMORYLIMIT',
    p_data_type=> 'VARCHAR',
    p_accept_processing=> 'REPLACE_EXISTING',
    p_item_sequence=> 100,
    p_item_plug_id => 2497622874655454+wwv_flow_api.g_id_offset,
    p_use_cache_before_default=> 'NO',
    p_item_default_type => 'STATIC_TEXT_WITH_SUBSTITUTIONS',
    p_prompt=>'Guaranteed RAM',
    p_source=>'V(''P12501_VPS_PLAN__SLMMEMORYLIMIT'')',
    p_source_type=> 'FUNCTION',
    p_display_as=> 'RADIOGROUP',
    p_lov => 'STATIC2:256 MB;256,512 MB;512',
    p_lov_columns=> 1,
    p_lov_display_null=> 'NO',
    p_lov_translated=> 'N',
    p_cSize=> 30,
    p_cMaxlength=> 2000,
    p_cHeight=> 1,
    p_begin_on_new_line => 'YES',
    p_begin_on_new_field=> 'YES',
    p_colspan => 1,
    p_rowspan => 1,
    p_label_alignment => 'RIGHT-TOP',
    p_field_alignment => 'LEFT-TOP',
    p_read_only_when=>'V(''P12501_MODE'') IS NULL',
    p_read_only_when_type=>'PLSQL_EXPRESSION',
    p_field_template => 16545661983566545+wwv_flow_api.g_id_offset,
    p_is_persistent=> 'Y',
    p_lov_display_extra=>'NO',
    p_protection_level => 'N',
    p_item_comment => '');
    end;
    /

  • The requested URL /discoverer/viewer was not found on this server

    hi
    In e-business suite 12.1.1 , In projects super user responsibility when I want to open JSP forms like :
    Team Role Details Workbook and Overcommitted Resource Hours Workbook and Scheduled Resource Hours Workbook This error take place :
    Not Found
    The requested URL /discoverer/viewer was not found on this server.
    i think this is not related to Oracle Projects, i think it should solve by It.
    can any body tell me what should i do???

    M.Khayatan wrote:
    hi
    In e-business suite 12.1.1 , In projects super user responsibility when I want to open JSP forms like :
    Team Role Details Workbook and Overcommitted Resource Hours Workbook and Scheduled Resource Hours Workbook This error take place :
    Not Found
    The requested URL /discoverer/viewer was not found on this server.
    i think this is not related to Oracle Projects, i think it should solve by It.
    can any body tell me what should i do???Do you get this error with this specific page only?
    Please see these docs.
    11i: "NOT FOUND The requested URL /discoverer/viewer was not found on this server" Error When Attempting To Open Workbook From Apps Menu [ID 1327364.1]
    How to Create a Link to a Discoverer Workbook in Apps R12 [ID 471303.1]
    Using Discoverer 11.1.1 with Oracle E-Business Suite Release 12 [ID 1074326.1]
    Using Discoverer 10.1.2 with Oracle E-Business Suite Release 12 [ID 373634.1]
    Thanks,
    Hussein

  • Can't do online banking. Get error message. "The requested URL /Summary.cgi was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    I can't do online banking. When I try to open the page I get error "The requested URL /Summary.cgi was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    Hi,
    These blog posts might help debug problem
    Oracle APEX: Got a 404 Not Found? | Inside Oracle APEX by Patrick Wolf
    daust_de :: Oracle XE / APEX: Troubleshooting the 404-not found error on XE
    Regards,
    Jari

  • I can not load my yahoo email. I get the following message: "Not Found The requested URL /mc/showMessage was not found on this server. Apache/2.2.9 (Debian) mod_jk/1.2.26 PHP/5.2.6-1+lenny4 with Suhosin-Patch etc... (too many characters for your ? page

    Can't log into yahoo email. I get the following message: "Not Found The requested URL /mc/showMessage was not found on this server.

    OK here is the problem I am having with this.. It might be related to my own machine but I need help where to look..
    on the command line using mintty on XP I have this:
    $ nslookup us.mg6.mail.yahoo.com
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 98.136.145.155, 216.115.101.178, 216.115.110.119, 216.115.101.179
    98.136.145.157, 98.136.145.154, 216.115.110.118, 98.136.145.156
    Aliases: us.mg6.mail.yahoo.com, geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    geoycpi-uno.gycpi.b.yahoodns.net
    HOwever when I look in firebug for where the ip for the above domain is this is what I get:
    66.115.130.31 clearly not listed above..
    Let's check the aliases
    $ nslookup geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 216.115.110.118, 98.136.145.156, 98.136.145.155, 216.115.101.178
    216.115.110.119, 216.115.101.179, 98.136.145.157, 98.136.145.154
    Aliases: geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    geoycpi-uno.gycpi.b.yahoodns.net
    nope
    $ nslookup geoycpi-uno.gycpi.b.yahoodns.net
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 98.136.145.156, 98.136.145.155, 216.115.110.118, 216.115.101.179
    98.136.145.157, 216.115.101.178, 98.136.145.154
    Aliases: geoycpi-uno.gycpi.b.yahoodns.net
    nope
    where is this 66.115.130.31 ip comming from.. why isn't firefox using native DNS lookup?
    When I do a reserve lookup on that ip it points to nationalnet.com as the top SOA..
    any ideas?

  • I try toopen up my e-mails and keep on getting this error:;The requested URL /dc/launch was not found on this server. I use att mail. pls help

    My e-mails worked last night but this morning it did not. My aol emails work just fine only the att mails do not open up.
    Keep on getting this error: The requested URL /dc/launch was not found on this server.

    If you have Panda Cloud Antivirus installed, please see this thread: https://support.mozilla.com/en-US/questions/798059
    Otherwise, follow co-rel's instructions in this one: https://support.mozilla.com/en-US/questions/784695

  • When using firefox on yahoo and opening my mail it says Not Found The requested URL /dc/launch was not found on this server. How can this be fixed?

    when using firefox on yahoo and opening my mail it says Not Found The requested URL /dc/launch was not found on this server. How can this be fixed?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • The requested URL /tracks.php was not found on this server.

    The requested URL /tracks.php was not found on this server.
    Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch Server at pt-fb-0.frontier.zynga.com Port 80. I get this message every time I try to play the zynga game pioneer trail on facebook, I was able to play the game on aug 29 2011 for about an hour then after closing firefox and returning a few hours later I got the message again this all started about 3 weeks ago after firefox did an update

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"

  • I can not get to my yahoo email with F4. Everything I click on comes up "Not found. The requested URL /mc/showMessage was not found on this server."

    MF4 doesn't work with yahoo email

    Since something is not being found on the server the problem here is not with Firefox most likely. There may be some type of caching going on here. I would suggest clearing your cache and if the problem persists contacting Yahoo. You can clear your cache by following the instructions found on this page [[How to clear the cache]].

  • I get "The requested URL /mc/welcome was not found on this server." when trying to log into Yahoo email

    I can log into my Yahoo accounts with IE. I've tried disabling my plug-ins and extensions and logging in under safe mode. It's also not a version issue. I've been using 3.6.13 for a while and the problem first arose about 3 days ago. Upgrading to version 4 doesn't help either.

    I had the exact same problem and I found it to be in the Panda Cloud anti-virus software. Panda Cloud added on a "URL SECURITY" feature and this started the problem. I uninstalled this "feature" and problem solved.

  • Trying to access my Yahoo mail. I get a 404 error which says 'The requested URL /neo/launch was not found on this server'.

    I have tried some of the sugestions in other feeds but no success. I have uninstalled/reinstalled mozilla, checked for 'anti-philshing' in the add/remove programes, deleted history, cookies and cache. What else is there to do? (ps don't use technical language as I will have no idea what you are talking about!!!)

    Works for me.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • BUG: URL /apex/wwv_flow.accept was not found on this server error

    Hi all,
    I have a page with 3 regions:
    - pl/sql(javascript, html)
    - chart
    - html(form)
    Everything works fine until I add a html table to my pl/sql region.
    When I do this I can't create any records anymore(html form).
    When I press the create button on the html form it results in:
    The requested URL /apex/wwv_flow.accept was not found on this server.
    When I delete the html table on my pl/sql region, the create button works fine.
    It seems like somekind of bug, is there a way to get around this.
    Thanx,
    Pim

    Hi,
    When I add (in the pl/sql region with htp.p procedure)the code below:
    <table summary="" cellspacing="0" cellpadding="0" border="0"
    width="100%">
    <tr>
    <td align="left" nowrap="nowrap" align="left" colspan="2">
    <input type="BUTTON" value="Test"
    onclick="javascript:TestOnDemand()">
     Adres
     <input type="text" name="address" size="30" maxlength="200"
    value=""/>
     Land
     <input type="text" name="land" size="30" maxlength="200"
    value=""/>
    </td>
    </tr>
    </table>
    The create button on the third(html_form) will result in the error.
    I did some more tests, it's the button in the above table which causes the error. When I delete the button all is OK. It seems that the dynamic html button has somekind of conflict with the form(html region) button. When I replace the table with a form it makes no difference.
    The reason why I'm doing this, is that I need button on the page which doesn't do a 'dosubmit' (page reload). In a standard htmldb button there's always a 'dosumbit' present. I posted another thread, which confirmed this.
    Thanx,
    Pim

  • When I go to my e mail,I am told the URL/i frame3 was not found on this server.

    I try to read my e-mail and I only get a blank page that says Not Found......I cannot answer you because my e-mail won"t work.You can call me at 254 756 0871 Jerry

    Google has jacked up as has Firefox. Temporary measure Type; google.com into main address box, This should  get you what you want.notalotiknow19

Maybe you are looking for

  • Header and Item Conditions in EBP PO

    HI All, I've just checked the pricing conditions in spro of SRM and as per my business requirement I need to maintain both header and item conditions and replicate the values back to r/3 in extended classic scenario like freight,surcharge,discounts e

  • ORA-301 Signalled during: ALTER DATABASE ...

    Hi, I tried to add 4 standby redologs to our standby setup, and first file went well. theothers already got error ORA-301: ALTER DATABASE ADD STANDBY LOGFILE GROUP 8 '/export/home/oracle/logs/redo8.log' SIZE 2G Fri May 31 15:31:22 2013 Completed: ALT

  • Select a range of alphanumeric values

    hi, i have a column with values like this: 001A45 124323 V1234C these values have a theoretical order. numbers have higher priority than chars. the ranking of the chars is like: A = 1, ... , Z = 26. is there a possibility to select an alphanumerical

  • Imported files from excel

    Hi I have such problem with exchange data with excel as below: 1- I export the data from P6 to Excel 2- working in Excel then save<br />3-Import the same file to P6 But I lost it's WBS How I kept the WBS for imported axtivities? Regards Hady Shendy,

  • Unable to create a new project for MUDE

    Hi All, I'm trying to create a project for MUDE but the new project option is not enabled is there something else I need to do before creating a project? Please advice.