"The requested URL /apex/wwv_flow.show was not found on this server "

Hello, I am getting a "Not found" error, along with the error message displayed in the Subject title, when executing pl/sql commands in the "Home> SQL> SQL Commands" window.
Not all the time, it is intermittant. If I shut down and restart, that same command will often run ok later.
It only happens when I edit the PL statement. Sometimes if I remove the edit, the error stops occurring, sometimes the error contiinues to appear.
If I paste in a previously saved version of the same statement that worked prior to an edit, sometimes it works, sometimes it will still cause the error once they start to occur.
This is a new install of Oracel 10G Express Edition, downloaded direct from Oracle and installed within the past two weeks.
It is installed on a Lenovo T60 with WinXP SP2.
I am an admin on this laptop, and for this install of Oracle. Since this is a standalone install on a workstation, there is no DBA support other than me.
I am an experienced IT developer, but not a DBA. though I have taken some administration courses. I am new to PL though.
I also had a problem with not having authority to run utl_file, but I was able to correct that with a grant as SYS. Could this be related in some way? (doubtful).
Possibly some odd execution authority issue on a DB object?
It is being used strictly for application development, so that I can avoid impacting testers and users in the normal development environment on a project where we have development and testing running concurrently.

You said: "... Oracle SQL Developer uses the existing DB. ..."
I think, just like TOAD, SQL Developer can connect to whatever database you tell it to as long as you give it the right username/password@host.
For example, with XE, after I unlocked the sample "HR" account*, I can connect to the sample database on XE with HR/HR@XE.
*with XE running on your local machine, see http://127.0.0.1:8080/i/doc/getting_started.htm#CHDGDHID
(more direct URL)
Message was edited by:
grypysc

Similar Messages

  • Not found - The requested URL /apex/wwv_flow.show was not found on this ser

    I have a very simple anonymous block (see below) which I am using to test an area of the database I am developing using OE and APEX. Sometimes the block works and other times it fails with the following error message------
    Not found - The requested URL /apex/wwv_flow.show was not found on this server
    Before the error message is displayed a pop-up window appears with a submit button ( the heading on the window contains --- Enter Bind Variables - windows internet explorer), which I do not understand.
    Is the problem I am experiencing due to some memory limitation ? or do I have a corrupt oracle system (everything else appears OK though).
    Any help or advice would be much appreciated.
    Best Regards
    Lawrence Cattell
    Here is the anonymous block (please no comments on the code). If I extend the number of DBMS_OUTPUT.PUT_LINES beyond the current number of 3 it fails everytime, sometimes it works with 3, sometimes it fails. Is it related to the number of variables I am binding to the WSI_QUOTE Type ?
    DECLARE
    v_dir VARCHAR2(20):='WSI_REPORTS';
    V_COUNT NUMBER(2,0);
    V_QTE_REF_NBR WSI_QUOTES.QTE_REF_NBR%TYPE;
    V_CTR_ID WSI_QUOTES.CTR_ID%TYPE;
    v_QTE_REC_NBR WSI_QUOTES.QTE_REC_NBR%TYPE;
    v_QTE_DTE WSI_QUOTES.QTE_DTE%TYPE;
    V_PEB_NBR WSI_QUOTES.PEB_NBR%TYPE;
    V_QTE_COM WSI_QUOTES.QTE_COM%TYPE;
    V_SAI_NBR_01 WSI_QUOTES.SAI_NBR_01%TYPE;
    V_QTY_01 WSI_QUOTES.QTY_01%TYPE;
    V_SAI_NBR_02 WSI_QUOTES.SAI_NBR_02%TYPE;
    V_QTY_02 WSI_QUOTES.QTY_02%TYPE;
    V_SAI_NBR_03 WSI_QUOTES.SAI_NBR_03%TYPE;
    V_QTY_03 WSI_QUOTES.QTY_03%TYPE;
    V_SAI_NBR_04 WSI_QUOTES.SAI_NBR_04%TYPE;
    V_QTY_04 WSI_QUOTES.QTY_04%TYPE;
    V_SAI_NBR_05 WSI_QUOTES.SAI_NBR_05%TYPE;
    V_QTY_05 WSI_QUOTES.QTY_05%TYPE;
    V_SAI_NBR_06 WSI_QUOTES.SAI_NBR_06%TYPE;
    V_QTY_06 WSI_QUOTES.QTY_06%TYPE;
    V_SAI_NBR_07 WSI_QUOTES.SAI_NBR_07%TYPE;
    V_QTY_07 WSI_QUOTES.QTY_07%TYPE;
    V_SAI_NBR_08 WSI_QUOTES.SAI_NBR_08%TYPE;
    V_QTY_08 WSI_QUOTES.QTY_08%TYPE;
    V_SAI_NBR_09 WSI_QUOTES.SAI_NBR_09%TYPE;
    V_QTY_09 WSI_QUOTES.QTY_09%TYPE;
    V_SAI_NBR_10 WSI_QUOTES.SAI_NBR_10%TYPE;
    V_QTY_10 WSI_QUOTES.QTY_10%TYPE;
    V_CTR_NME WSI_CUSTOMERS.CTR_NME%TYPE;
    CURSOR GET_QUOTE_INFO_CUR IS
    SELECT *FROM WSI_QUOTES WHERE QTE_REC_NBR = 2;
    BEGIN
    DELETE WSI_QUOTE_TEMP_HOLD;
    OPEN GET_QUOTE_INFO_CUR;
    LOOP
    FETCH GET_QUOTE_INFO_CUR INTO V_QTE_REC_NBR,V_QTE_REF_NBR,V_CTR_ID,v_QTE_DTE,V_PEB_NBR, V_SAI_NBR_01,V_QTY_01,V_SAI_NBR_02,V_QTY_02,V_SAI_NBR_03, V_QTY_03,
    V_SAI_NBR_04, V_QTY_04, V_SAI_NBR_05, V_QTY_05,V_SAI_NBR_06, V_QTY_06,V_SAI_NBR_07,V_QTY_07,V_SAI_NBR_08, V_QTY_08, V_SAI_NBR_09, V_QTY_09,
    V_SAI_NBR_10,V_QTY_10,V_QTE_COM;
    EXIT WHEN GET_QUOTE_INFO_CUR%NOTFOUND;
    SELECT CTR_NME INTO v_CTR_NME FROM WSI_CUSTOMERS WHERE CTR_ID = V_CTR_ID;
    END LOOP;
    CLOSE GET_QUOTE_INFO_CUR;
    V_COUNT :=1;
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_01|| '***' ||V_QTY_01);
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_02|| '***' ||V_QTY_02);
    DBMS_OUTPUT.PUT_LINE(v_QTE_REF_NBR|| '***' ||v_CTR_ID|| '***' ||V_CTR_NME|| '***' ||V_peb_NBR|| '***' ||V_SAI_NBR_03|| '***' ||V_QTY_03);
    END;

    The interpreter could be choking on the "*from" (no space before "from") might not be parsing the SQL as intended .
    The "Enter Bind Variables" dialog box is coming from something undefined, I'd suggest putting that block into an .sql file and run it via sqlplus.
    To demonstrate how a bind variable is handled try setting up a file with:
    select * from sometablename where somecolname = &somekeyval;
    -- or '&somekeyval' if its varchar2When you connect with sqlplus and run that file it will prompt for the value to use for "somekeyval".
    Only other thing is to ensure the "select * ..." has the same column names and in the same order as expected by the fetch, perhaps the table layout has changed and you could be getting an added column or maybe missing one at the end of the list.
    If you try running that block in a sqlplus session enable serveroutput to see the dbms_out result (set serveroutput on size 50000)

  • The requested URL /apex/wwv_flow.accept was not found on this serve: 404err

    Hi Everyone,
    I have 10 tabs to dispaly, I was able to click each tab but when I reach last 2tabs I am getting this error
    The requested URL /apex/wwv_flow.accept was not found on this server: 404 Error
    I tried searching in forums, but I didnot get the answers. Could any one help me in solving this issue.
    I am using APEX 4 and Oracle 11g. Before I used APEX 3, but I didnt get this type of problem.
    Thanks in advance,
    Suma.

    Any suggestions?

  • The requested URL /apex/wwv_flow.accept was not found on this server

    I'm trying to create a report query in Apex 3.2.1
    Home>Application Builder>Application 100>Shared Components>Report Queries>Edit Report Query
    There are 5 queries and I'm trying to add additional queries, but when I click on Add Query I get the /apex/wwv_flow.accept was not found on this server error message page.
    I've had this message before in tabular view forms, where one cell will contain text that causes the error on update, but when the data is removed the page saves OK.

    Any result to this post?

  • 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

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

    I am running Apex 4.2 on an Oracle 10g XE database using the embedded pl/sql gateway.  I created an apex page that load a pl/sql page.
    My sample procedure is as follows.
    procedure myProcedure(mySelect varchar2 default null, myHidden varchar2 default null) is
    begin
    htp.formOpen('myProcedure');
    htp.formSelectOpen('mySelect');
    htp.formSelectOption('One','1');
    htp.formSelectOption('Two','2');
    htp.formSelectOption('Three','3');
    htp.formSelectClose;
    htp.formHidden('myHidden','hiddenValue');
    htp.formsubmit;
    end myProcedure;
    The page runs but when I click the submit button I get the page error:
    URL /apex/wwv_flow.accept was not found on this server
    I am very new to Apex so I am not sure what the problem is.  I've tried doing some research online and it talks about looking at the Apache logs but I am not using that.  Can somebody help me out.
    Thanks in advance.

    jeff81 wrote:
    I am running Apex 4.2 on an Oracle 10g XE database using the embedded pl/sql gateway.  I created an apex page that load a pl/sql page.
    My sample procedure is as follows.
    procedure myProcedure(mySelect varchar2 default null, myHidden varchar2 default null) is 
    begin 
    htp.formOpen('myProcedure'); 
    htp.formSelectOpen('mySelect'); 
    htp.formSelectOption('One','1'); 
    htp.formSelectOption('Two','2'); 
    htp.formSelectOption('Three','3'); 
    htp.formSelectClose; 
    htp.formHidden('myHidden','hiddenValue'); 
    htp.formsubmit; 
    end myProcedure; 
    The page runs but when I click the submit button I get the page error:
    URL /apex/wwv_flow.accept was not found on this server
    I am very new to Apex so I am not sure what the problem is. 
    Form elements cannot be nested:
    Content model:
    Flow content, but with no form element descendants.
    As APEX already generates a form container on every page (via the #FORM_OPEN# and #FORM_CLOSE# substitution strings in page templates), additional forms can only be added in region positions located outside this container.
    Why do you want to add a non-APEX form?

  • The requested URL /Site/Home.html was not found on this server - HELP!

    NOT FOUND: The requested URL /Site/Home.html was not found on this server.
    This comes up when I type in my website address. I am new to this, have created my website on iweb, bought the domain name and purchased web hosting with 123-REG. I ask for their help but have only received the same rote info and nothing that has solved my problem.
    I am using Cyberduck as my FTP client but tried Classic FTP for macs before this and although it says that I am connected, it is saying that it can not change to the directory hosting10.123-reg.co.uk and asks if I have permission to be using it? I am not sure what to do?
    Please could someone advise me?
    Thanks!

    Welcome to the Apple Discussions. Since you're not using MobileMe these pages might be of some help to you:
    http://homepage.mac.com/thgewecke/iwebserver.html
    http://iwebfaq.org/site/iWebFolderFTP.html
    http://docs.info.apple.com/article.html?path=iWeb/2.0/en/6838.html
    OT

  • When i go to gmail it says "Not Found. The requested URL/accounts/service login was not found on this server" but it used to work and I need help getting it to work again.

    I used to go to gmail all the time. Now it says "Not Found" whenever I go to gmail. Is there a reason for this and is there a way I can access gmail again?
    == URL of affected sites ==
    http://gmail.com

    You've been really helpful and I did what you said, but I'm still having a problem. I click on "tools", then click on "Add-ons", and when the box opens I click on "extensions". This is the problem" In the "Add-on" box under "extensions", it says "'''Microsoft.NET Framework Assistant''' 1.0. Adds ClickOnce support and the ability to report installed .NET versions to the web server. '''Not compatible with Firefox 3.6.3.'''" And underneath there are 3 boxes to click on: "options", "enable", and "uninstall". But it won't let me click on any of them. Also, the first thing before the text I just copied, is a red explanation point. This is the only thing that comes up under "Extensions". Any ideas? I'd appreciate any input. Thanks

  • /apex/wwv_flow.accept was not found on this server

    Hello
    I´ve performed a basic XE install on my PC
    I´ve done this several times before but this time I ran into problems
    I managed to login as system the 1st time but now a login returns
    "The requested URL /apex/wwv_flow.accept was not found on this server"
    The XE database is up and running!
    Any ideas??
    Thanks in advance
    Ganderss
    Message was edited by:
    GAnderss
    Message was edited by:
    GAnderss
    Message was edited by:
    GAnderss
    null

    Upppps!!
    The problem was caused by an incorrect import (affecting the system schema)
    Sorry for taking up your time
    GAnderss

  • Requested URL /pls/apex/wwv_flow.accept was not found on this server

    Hi there
    Since yesterday we have had troubles with apex production our environment is Apex 4.1, Oracle 11gR2 over windows server 2008, please help me to solve this issue,
    it happend in the login page and when submit the authentication
    we don have any procedure or form named CSRT (sincerly i don't know what is it)
    Sat, 02 Jun 2012 00:46:58 GMT
    wwv_flow.accept: SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: CSRT
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM:
    DAD name: apex
    PROCEDURE : wwv_flow.accept
    URL : http://<servername>/pls/apex/wwv_flow.accept
    PARAMETERS :
    ===========
    P_FLOW_ID:
    10000
    P_FLOW_STEP_ID:
    101
    P_INSTANCE:
    1188591586206701
    P_PAGE_SUBMISSION_ID:
    1718810680562501
    P_REQUEST:
    P101_PASSWORD
    CSRT:
    4970566970745194725
    P_ARG_NAMES:
    3865609856762007
    3865732602762007
    P_T01:
    administrator
    P_T02:
    passsss
    P_MD5_CHECKSUM:
    P_PAGE_CHECKSUM:
    A98EB992B8BC89BE54BB1A8BAC4F05FF
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=3
    SERVER_SOFTWARE=Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=servername
    REQUEST_METHOD=POST
    QUERY_STRING=
    PATH_INFO=/wwv_flow.accept
    SCRIPT_NAME=/pls/apex
    REMOTE_HOST=
    REMOTE_ADDR=148.204.103.109
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=APEX_PUBLIC_USER
    ORACLE_SSO_USER=
    OSSO_IDLE_TIMEOUT_EXCEEDED=
    OSSO_USER_GUID=
    HTTP_CONTENT_LENGTH=312
    HTTP_CONTENT_TYPE=application/x-www-form-urlencoded
    HTTP_USER_AGENT=Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
    HTTP_HOST=www.ebecas.ipn.mx
    HTTP_ACCEPT=text/html, application/xhtml+xml, */*
    HTTP_ACCEPT_ENCODING=
    HTTP_ACCEPT_LANGUAGE=es-MX
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=WWV_CUSTOM-F_1280503233500189_10000=3CAE234CC12CBF34CAC4A802F7E56419; WWV_CUSTOM-F_3230615565651498_2000=85A8907E234374F9065F2AD170F7B446; PUBLIC_WWV_CUSTOM-F_3230615565651498_2000=2708019786394201; WWV_CUSTOM-F_3230615565651498_2400=038325581CE3C913839B01B86444E24E; PUBLIC_WWV_CUSTOM-F_3230615565651498_2400=609137910649001; WWV_CUSTOM-F_3230615565651498_308=0437267FCCB0A166B36DCF5BA56261EB; PUBLIC_WWV_CUSTOM-F_3230615565651498_308=30428853764001; WWV_CUSTOM-F_1280503233500189_777=5B01254A5CD4D740F4758DC9EC163928; PUBLIC_WWV_CUSTOM-F_1280503233500189_777=689694810635801; PUBLIC_WWV_CUSTOM-F_1280503233500189_10000=1649958529159401; WWV_CUSTOM-F_1280503233500189_100=5932332699F7E216AE8D86FD62D69B5A; ORA_WWV_USER_63131075338127=AB757F79A601B064B269432C60D984AC; TS5d40a3=ccd424a738458568ec242aa1123ddd1e596ad0e9e522c57a4fc7aaf6; ORA_WWV_USER_71418318778246=0A42816D6E86C44D1731B394A8802013; __utmc=8977645; TS5af0a4=8ea79f2c523309c506a0a48047fd743f596ad0e9e522c57a4fc962d0; TS5af0a4_28=2a1d0a2d897dca30ab56d0cb72789138596ad0e9e522c57a0000000000000000004fc7c5b78414789acdf34f97; TS5af0a4_77=8572_0e073dd415ef2d41_rsb_0_rs_http%3A%2F%2Fwww.ebecas.ipn.mx%2Fportal%2Ff%3Fp%3D10000%3ABIENVENIDO_rs_1
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=http://<servername>/pls/apex/f?p=10000:101:1188591586206701
    HTTP_SOAPACTION=
    HTTP_ORACLE_ECID=6305641793926,1
    HTTP_ORACLE_CACHE_VERSION=10.1.2
    HTTP_AUTHORIZATION=
    WEB_AUTHENT_PREFIX=
    DAD_NAME=apex
    DOC_ACCESS_PATH=docs
    DOCUMENT_TABLE=wwv_flow_file_objects$
    PATH_ALIAS=
    REQUEST_CHARSET=AL32UTF8
    REQUEST_IANA_CHARSET=UTF-8
    SCRIPT_PREFIX=/pls
    HTTP_IF_MATCH=
    HTTP_CACHE_CONTROL=
    SOAP_BODY=
    HTTP_X_ORACLE_DEVICE_CLASS=
    HTTP_X_ORACLE_DEVICE_ORIENTATION=
    HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
    HTTP_X_ORACLE_DEVICE=
    HTTP_X_ORACLE_ORIG_ACCEPT=
    HTTP_X_ORACLE_ORIG_USER_AGENT=
    HTTP_X_ORACLE_USER_LOCALE=
    HTTP_X_ORACLE_USER_NAME=
    HTTP_X_ORACLE_USER_DISPLAYNAME=
    HTTP_X_ORACLE_USER_USERKIND=
    HTTP_X_ORACLE_USER_AUTHKIND=
    HTTP_X_ORACLE_USER_DEVICEID=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
    HTTP_X_ORACLE_USER_LOCATION_BLOCK=
    HTTP_X_ORACLE_USER_LOCATION_CITY=
    HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
    HTTP_X_ORACLE_USER_LOCATION_COUNTY=
    HTTP_X_ORACLE_USER_LOCATION_STATE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
    HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
    HTTP_X_ORACLE_USER_LOCATION_TYPE=
    HTTP_X_ORACLE_USER_LOCATION_X=
    HTTP_X_ORACLE_USER_LOCATION_Y=
    HTTP_X_ORACLE_SERVICE_HOME_URL=
    HTTP_X_ORACLE_SERVICE_PARENT_URL=
    HTTP_X_ORACLE_HOME_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
    HTTP_X_ORACLE_CACHE_USER=
    HTTP_X_ORACLE_CACHE_SUBID=
    HTTP_X_ORACLE_CACHE_AUTH=
    HTTP_X_ORACLE_CACHE_DEVICE=
    HTTP_X_ORACLE_CACHE_LANG=
    HTTP_X_ORACLE_CACHE_ENCRYPT=
    HTTP_X_ORACLE_ASSERT_USER=

    Tx for help me folks!
    Let me explain
    We have tw domains (a and b) that access to a same database (where the app is)
    i configured the dads.conf to access the database in both domains, from domain a
    i can't acces the app, it send the error before wrote, and from domain b i can access
    without trouble my app, a search the HTML source from my page in both domains and
    notice that in domain a the source is the next (just a bit)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html lang="es-mx" xmlns="http://www.w3.org/1999/xhtml" xmlns:htmldb="http://htmldb.oracle.com" xmlns:apex="http://apex.oracle.com">
    <head><script language="JavaScript">var pn = "CSRT"; var pv = '3921513832723665401';
    eval(function(a){var b=a.split("");var d=b.length;var c=parseInt(b[0]+b[1],16);var f=String.fromCharCode(c);for(var e=2;e<d;e++){var g=(parseInt(b[e]+b[e+1],16)-c)%256;c=g;f+=String.fromCharCode(g);e++}return f}("288edbe3d1d7ddd8dd968d91908da4f1d7d39283a0a3c7cddfd8a0b1d7d392829fa3dbe3d1d7ddd8dd969495a4f1d7d3928daaa9a7a4cf8e958e5eabe3e1d8924c938e5e5f444ba4e4cf8e909095964f4c8d8f95964f4c4e555e6e7aaa9b97d7d2c9ddc7b58e8d904d5f5f4d8f8d5252a4f1d7d3928ba8aa9b97d7d2c9ddc7b58e4a45454b64a4cf8e938c5e6a5e5aa4e7dbd2c4cdcbd1d7cba3aa9ba1e8d7d5e7e69a939464a8aaaa9ba1e8d7d5e7e69a585c9794a6f3d7d3928aa7aa9b97d7d2c9ddc7b58e4a61614b64a4cf8e92a77a6a5e574c918c5e6a5e5aa4edd7d9e9e7e08e8ce9e6cf8e928b5e6a5e5aa4e8aaaa9ba0d7d5dccdc4c88d578bcf9d4e535b4e444b64a4cf8e959ba1d8c6d3d5cb90578b9b635358667a6a5e5aa4e898685f48489ffae2d1dfd8e0e898685f61619fea9868a2904d5f5f4d8f9fa4cf8e938c5e6a5e5aa4e89868a9dbd2c4cdcbd1d7cbe3fafaefd7d9e9e7e08e8deab8b1d7d39289a6a3dbe3d1d7ddd8dd9651a4f1d7d3928aa7a3dbe3d1d7ddd8dd96969a9895a4f1d7d3928daaa1d3d2d8e2d2d3e2a295ccd9b9b1d1d2d2d3e2e7b5bbcdb5c8b5afced28d969764a1d5e19a9ed7d3928ba86d6ba6a7a99b9ad1d3d5dbdca3a6965654a4efe6ebf4f1d7d3928facaac8c6c88b97d7dcd3d7ba9ca19987b1d7d39291ae9f8a95c8c6c88b95ccd9b5b5e8e6dbcbd7e9d98d94985e5b5264a4cf8e99925eabe3e1d8924c97925e5f444ba4e8c8c6c88ba1d8d9b5b5e8e6dbcbd7e9d98d94989d9a64a4cf8e95c8c6c88b97d7dcd3d7ba9ca1996d5eac98a4e8c8c6c88b97d7dcd3d7ba9ca19989acecfafae0c4d5d7cb909899a4f8fafab8a5924a83834e4e8adad7cb884b64a18e51a6b8b1d7d39287a4a3dbe3d1d7ddd8dd969394a4f1d7d3928aa7a3dbe3d1d7ddd8dd969798a4f1d7d39290adb4e0d7d2d3e6a592d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a83834b64ab9e96dad7cba3acaab1d7d3928ca95f4f4f5dafe6ebf4e7a9ad9e96d7e2e7afa4cf8e498d95a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced2e2e6cf8e949a9bced5d7cb90576996c08f4f535852a4f1d7d3928eabb4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced2a0a4cf8e498f9c9bced5d7cb90576996c08f4f535852a4e7a9a99aa0d7d5dccdc4c88d576996c08f4f535b4e444ba6fafae0c4d5d7cb909596a4f8efd7d9e9e7e08e8ce9b8add7d9e9e7e0969ce6e7da8b4c9de0d7d2d3e69d4c9de0d7d2d3e6a59adbd2c4d5ddd8dd944c9de0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced28b4c90929394667a7ab4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced28ea6b8b1d7d39288a5a3dbe3d1d7ddd8dd969394a4f1d7d3928aa7a3c7cddfd8a0a4cf8e9399a1e8d7d5e7e6dbd7d58f585c605d667a5f8adce8e4929ef8e799a1e8d7d5e7e6dbd7d58f585c5d5a667a5f51519ef8e79997d7d2c9ddc7b58e4a5c5c4b667a6a5e5aa4e5a7b1e6e7dae2efd7d9e9e7e08e8ae7b8b1d7d392819ea3dbe3d1d7ddd8dd969596a4f1d7d3928aa7a3dbe3d1d7ddd8dd969798a4e4cf8e578dbad3a265695da2d9d8e79c9798667a7aa3c7cddfd88ea4f1d7d39290ada1d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a83834b64ab9e96dad7cba3acaaaaacad9e96dad7cbe3efd7d9e9e7e08e8fecb8a4cf8e498ee9f8f0ede9d5d4d5868d9b93d1d1d2d2d3e2e7b07a5f97e3d2c9cbcfd7d3c9864ba4edd7d9e9e7e0ebf3d7d3928ca965959b8fd5e8e6dbcbd7e9d9d8a18fc4d7ddd8dd8f5eabe3e1d89568ac9b8fd5e8e6dbcbd7e9d9d8a18fc4d7ddd8dd9ca4d7cde1da9f5c445dafe6ebf4e79a9bced5d7cb90575d5d58a6e0c4d5d7cb909697a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96dad7cbe3e6cf8e50498d95a5f8a494a97a7aabe3e1d895a5f8a494a97a7ab2e3d2c9cbcfd7d3c98da5f8a4949a9bced5d7cb90578dbacf9d4e53585252a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96dad7cbe3e9a9a792949564a4cf8e909094954f4c8d8f94954f4c4e49848c52a4f1d7d3928ba8a1d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a8bd7dee5e9964b64a699a2ede9d5a25f8ad1cdc8c9d3905da6999ccfced2a2a2a0a699a4d7cde1daa2a19fa89b8fd1e0d5d3d2a7abd1d5d08c9394a6fab8b1d7d39286a3a3dbe3d1d7ddd8dd9651a4f1d7d3928aa7b4e0d7d2d3e6a592d3d2d8e2d2d3e2a295ccd9b9b1d1d2d2d3e2e7b5bbcdb5c8b5afced28d4a88d5e1df8f4b64a1d5e19a9ed7d3928ba86d6ba6a7a6989ad1d3d5dbdca3a6965654a4dc8992c5c6c886a6e0a0b1e6e7dae2b8a4cf8e494298e0d7d2d3e6a58fc5c8a9bbdbd3e2c0b5dce7d9d3d3d79ba4f2e0d7d2d3e6a58fc5c8a9bbdbd3e2c0b5dce7d9d3d3d79a4a8edbd0c5864e959592c7cddfd88ea6e2d1dfd8e0e4cf8e494298e0d7d2d3e6a58fd5e8d5c4cbadbbdbd3e29da4f2e0d7d2d3e6a58fd5e8d5c4cbadbbdbd3e29c4a91dddadbd0c5864e9592a6e2d1dfd8e0f2e0d7d2d3e6a59ddddadbd0c5a1a6e6fafaa65198de9a9ce69f64"));
    </script>
    <title>Bienvenido</title>
    HERE i Found the var pn with CSRT Value, so it is the problem,
    the HTML code generate for the same page from the domain b is the next:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html lang="es-mx" xmlns="http://www.w3.org/1999/xhtml" xmlns:htmldb="http://htmldb.oracle.com" xmlns:apex="http://apex.oracle.com">
    <head>
    <title>Bienvenido</title>
    Here between <head> tag and <title> tag is empty and it works fine, do you think that it could be and attack to domain a?
    if I try to access the developer environment from domain a the code of the login page is
    <!DOCTYPE html>
    <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:htmldb="http://htmldb.oracle.com" xmlns:apex="http://apex.oracle.com">
    <head><script language="JavaScript">var pn = "CSRT"; var pv = '3921513832723665401';
    eval(function(a){var b=a.split("");var d=b.length;var c=parseInt(b[0]+b[1],16);var f=String.fromCharCode(c);for(var e=2;e<d;e++){var g=(parseInt(b[e]+b[e+1],16)-c)%256;c=g;f+=String.fromCharCode(g);e++}return f}("288edbe3d1d7ddd8dd968d91908da4f1d7d39283a0a3c7cddfd8a0b1d7d392829fa3dbe3d1d7ddd8dd969495a4f1d7d3928daaa9a7a4cf8e958e5eabe3e1d8924c938e5e5f444ba4e4cf8e909095964f4c8d8f95964f4c4e555e6e7aaa9b97d7d2c9ddc7b58e8d904d5f5f4d8f8d5252a4f1d7d3928ba8aa9b97d7d2c9ddc7b58e4a45454b64a4cf8e938c5e6a5e5aa4e7dbd2c4cdcbd1d7cba3aa9ba1e8d7d5e7e69a939464a8aaaa9ba1e8d7d5e7e69a585c9794a6f3d7d3928aa7aa9b97d7d2c9ddc7b58e4a61614b64a4cf8e92a77a6a5e574c918c5e6a5e5aa4edd7d9e9e7e08e8ce9e6cf8e928b5e6a5e5aa4e8aaaa9ba0d7d5dccdc4c88d578bcf9d4e535b4e444b64a4cf8e959ba1d8c6d3d5cb90578b9b635358667a6a5e5aa4e898685f48489ffae2d1dfd8e0e898685f61619fea9868a2904d5f5f4d8f9fa4cf8e938c5e6a5e5aa4e89868a9dbd2c4cdcbd1d7cbe3fafaefd7d9e9e7e08e8deab8b1d7d39289a6a3dbe3d1d7ddd8dd9651a4f1d7d3928aa7a3dbe3d1d7ddd8dd96969a9895a4f1d7d3928daaa1d3d2d8e2d2d3e2a295ccd9b9b1d1d2d2d3e2e7b5bbcdb5c8b5afced28d969764a1d5e19a9ed7d3928ba86d6ba6a7a99b9ad1d3d5dbdca3a6965654a4efe6ebf4f1d7d3928facaac8c6c88b97d7dcd3d7ba9ca19987b1d7d39291ae9f8a95c8c6c88b95ccd9b5b5e8e6dbcbd7e9d98d94985e5b5264a4cf8e99925eabe3e1d8924c97925e5f444ba4e8c8c6c88ba1d8d9b5b5e8e6dbcbd7e9d98d94989d9a64a4cf8e95c8c6c88b97d7dcd3d7ba9ca1996d5eac98a4e8c8c6c88b97d7dcd3d7ba9ca19989acecfafae0c4d5d7cb909899a4f8fafab8a5924a83834e4e8adad7cb884b64a18e51a6b8b1d7d39287a4a3dbe3d1d7ddd8dd969394a4f1d7d3928aa7a3dbe3d1d7ddd8dd969798a4f1d7d39290adb4e0d7d2d3e6a592d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a83834b64ab9e96dad7cba3acaab1d7d3928ca95f4f4f5dafe6ebf4e7a9ad9e96d7e2e7afa4cf8e498d95a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced2e2e6cf8e949a9bced5d7cb90576996c08f4f535852a4f1d7d3928eabb4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced2a0a4cf8e498f9c9bced5d7cb90576996c08f4f535852a4e7a9a99aa0d7d5dccdc4c88d576996c08f4f535b4e444ba6fafae0c4d5d7cb909596a4f8efd7d9e9e7e08e8ce9b8add7d9e9e7e0969ce6e7da8b4c9de0d7d2d3e69d4c9de0d7d2d3e6a59adbd2c4d5ddd8dd944c9de0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced28b4c90929394667a7ab4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96d7e2e7e2cfced28ea6b8b1d7d39288a5a3dbe3d1d7ddd8dd969394a4f1d7d3928aa7a3c7cddfd8a0a4cf8e9399a1e8d7d5e7e6dbd7d58f585c605d667a5f8adce8e4929ef8e799a1e8d7d5e7e6dbd7d58f585c5d5a667a5f51519ef8e79997d7d2c9ddc7b58e4a5c5c4b667a6a5e5aa4e5a7b1e6e7dae2efd7d9e9e7e08e8ae7b8b1d7d392819ea3dbe3d1d7ddd8dd969596a4f1d7d3928aa7a3dbe3d1d7ddd8dd969798a4e4cf8e578dbad3a265695da2d9d8e79c9798667a7aa3c7cddfd88ea4f1d7d39290ada1d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a83834b64ab9e96dad7cba3acaaaaacad9e96dad7cbe3efd7d9e9e7e08e8fecb8a4cf8e498ee9f8f0ede9d5d4d5868d9b93d1d1d2d2d3e2e7b07a5f97e3d2c9cbcfd7d3c9864ba4edd7d9e9e7e0ebf3d7d3928ca965959b8fd5e8e6dbcbd7e9d9d8a18fc4d7ddd8dd8f5eabe3e1d89568ac9b8fd5e8e6dbcbd7e9d9d8a18fc4d7ddd8dd9ca4d7cde1da9f5c445dafe6ebf4e79a9bced5d7cb90575d5d58a6e0c4d5d7cb909697a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96dad7cbe3e6cf8e50498d95a5f8a494a97a7aabe3e1d895a5f8a494a97a7ab2e3d2c9cbcfd7d3c98da5f8a4949a9bced5d7cb90578dbacf9d4e53585252a4e7a9b4e0d7d2d3e6a59adbd2c4d5ddd8dd9c96dad7cbe3e9a9a792949564a4cf8e909094954f4c8d8f94954f4c4e49848c52a4f1d7d3928ba8a1d3d2d8e2d2d3e2a291d5d7c6d5d9aab1d1d2d2d3e29c4a8bd7dee5e9964b64a699a2ede9d5a25f8ad1cdc8c9d3905da6999ccfced2a2a2a0a699a4d7cde1daa2a19fa89b8fd1e0d5d3d2a7abd1d5d08c9394a6fab8b1d7d39286a3a3dbe3d1d7ddd8dd9651a4f1d7d3928aa7b4e0d7d2d3e6a592d3d2d8e2d2d3e2a295ccd9b9b1d1d2d2d3e2e7b5bbcdb5c8b5afced28d4a88d5e1df8f4b64a1d5e19a9ed7d3928ba86d6ba6a7a6989ad1d3d5dbdca3a6965654a4dc8992c5c6c886a6e0a0b1e6e7dae2b8a4cf8e494298e0d7d2d3e6a58fc5c8a9bbdbd3e2c0b5dce7d9d3d3d79ba4f2e0d7d2d3e6a58fc5c8a9bbdbd3e2c0b5dce7d9d3d3d79a4a8edbd0c5864e959592c7cddfd88ea6e2d1dfd8e0e4cf8e494298e0d7d2d3e6a58fd5e8d5c4cbadbbdbd3e29da4f2e0d7d2d3e6a58fd5e8d5c4cbadbbdbd3e29c4a91dddadbd0c5864e9592a6e2d1dfd8e0f2e0d7d2d3e6a59ddddadbd0c5a1a6e6fafaa65198de9a9ce69f64"));
    </script>
    and obviously i Can't access
    Please help me...
    tx in advance

  • The requested URL /pls/apex/wwv_flow.accept was not found on this server.

    any ideas on how to t'shoot this?
    I know I am supposed to check the Apache Server logs but don't see anything.
    I am not using Apache as listener but Embedded gateway as listener...
    any ideas?

    Hi
    Are you getting this error permanently or it comes sometimes? You may check alert.log also.
    Zulqarnain
    MaxApex Hosting
    http://www.maxapex.com

  • Can't start httml db. the requested URL /pls/beta/htmldb was not found on t

    Hi, I'm trying to login to htmldb but are getting the following errors:
    The requested URL /pls/beta/htmldb was not found on this server.
    Oracle HTTP Server Powered by Apache/1.3.22 Server at Matea Port 7777
    My database is 9.2.0.4. These are the values in conf files:
    LISTENER.ORA:
    # TNSNAMES.ORA Network Configuration File: /home/oracle/app/oracle/product/9.2.0/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    BETA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = BETA.world)
    ROM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ROM.world)
    INST1_HTTP =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    TNSNAMES.ORA:
    # TNSNAMES.ORA Network Configuration File: /home/oracle/app/oracle/product/9.2.0/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    BETA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = BETA.world)
    ROM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ROM.world)
    INST1_HTTP =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Matea)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = MODOSE)
    (PRESENTATION = http://HRService)
    HTTPD.CONF:
    Alias /i/ "/home/oracle/app/oracle/product/9.2.0/images/"
    wdbsvr.app:
    [DAD_htmldb]
    connect_string = 89.0.0.4:1521:beta
    password = !YmV0YWh0bWw=
    username = htmldb_public_user
    default_page = htmldb
    document_table = wwv_flow_file_objects$
    document_path = docs
    document_proc = wwv_flow_file_mgr.process_download
    reuse = No
    enablesso = No
    stateful = STATELESS_RESET
    nls_lang = American_America.WE8ISO8859P1
    Values in nls_database_parameters:
    SQL> select * from nls_database_parameters;
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET WE8ISO8859P1
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    PARAMETER VALUE
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 9.2.0.4.0
    20 rows selected.
    I can start http server and login to http server index page, but can't go any further. There seems to be a problem with database descriptor.
    What's wrong ? Can I enable any trace on ?
    Help will be greatly appreciated ....!

    OK. Some plsql objects are not valid:
    1 select object_name,object_type ,status from dba_objects where owner like 'FLO%'
    2* and status='INVALID'
    SQL> /
    OBJECT_NAME OBJECT_TYPE STATUS
    VRN FUNCTION INVALID
    WWV_BIU_FLOW_COLLECTION TRIGGER INVALID
    WWV_BIU_FLOW_COMPANIES TRIGGER INVALID
    WWV_CREATE_FORUM_DEMO_SCRIPT PROCEDURE INVALID
    WWV_CRYPT PACKAGE BODY INVALID
    WWV_FLOW_CSS_API PACKAGE BODY INVALID
    WWV_FLOW_DEBUGTAB_BIU_FER TRIGGER INVALID
    WWV_FLOW_FILE_API PACKAGE BODY INVALID
    WWV_FLOW_FILE_MGR PACKAGE BODY INVALID
    WWV_FLOW_FND_USER_API PACKAGE BODY INVALID
    WWV_FLOW_GENERATE_DDL PACKAGE BODY INVALID
    OBJECT_NAME OBJECT_TYPE STATUS
    WWV_FLOW_GEN_API2 PACKAGE BODY INVALID
    WWV_FLOW_HTML_API PACKAGE BODY INVALID
    WWV_FLOW_IMAGE_API PACKAGE BODY INVALID
    WWV_FLOW_IMPORT_EXPORT_RESET PROCEDURE INVALID
    WWV_FLOW_IMPORT_EXPORT_UPDATE PROCEDURE INVALID
    WWV_FLOW_IMP_PARSER PACKAGE BODY INVALID
    WWV_FLOW_LOAD_DATA PACKAGE BODY INVALID
    WWV_FLOW_LOAD_EXCEL_DATA PACKAGE BODY INVALID
    WWV_FLOW_PARSER PACKAGE INVALID
    WWV_FLOW_PARSER PACKAGE BODY INVALID
    WWV_FLOW_PARSER_PUBLIC PACKAGE INVALID
    OBJECT_NAME OBJECT_TYPE STATUS
    WWV_FLOW_PARSER_PUBLIC PACKAGE BODY INVALID
    WWV_FLOW_SCRIPT_EXPORT PACKAGE BODY INVALID
    WWV_FLOW_SW_API PACKAGE BODY INVALID
    WWV_FLOW_XLIFF PACKAGE BODY INVALID
    26 rows selected.

  • The requested URL /OA_HTML/AppsLocalLogin.jsp was not found

    Dear,
    i was just upgrade the OracleAS 10g Release 3 (10.1.3.0) Patch Set 4 (10.1.3.4.0) and Java 6.0 JDK on this system (ebs r12.0.6) OUL5x64
    and run adautoconfig with no error.
    Before the upgrade the system was fine.
    but when i connect to the URL got this error.
    NOT FOUND the request URL "The requested URL /OA_HTML/AppsLocalLogin.jsp was not found on this server."
    looked into the apache error log and it complained , could not find the file, but i compared with a good system there were no file and DIR OA_HTML/AppsLogin.
    /u01/oracle/CRPXX/inst/apps/CRPXX_xxx/portal/OA_HTML/AppsLogin.
    from Apache error log:
    File does not exist: /u01/oracle/CRPXX/inst/apps/CRPXX_xxx/portal/OA_HTML/AppsLogin.
    Please advise.
    Regards,

    Hi,
    Have a look at this thread.
    Login Page not getting Displayed after 10.1.3 Home Upgrade in R12
    Login Page not getting Displayed after 10.1.3 Home Upgrade in R12
    Regards,
    Hussein

  • Wwv_flow.accept was not found on this server

    Hi all. When I am trying to export my application on apex error appear:
    Not Found
    The requested URL /pls/apex/wwv_flow.accept was not found on this server.
    Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server Server at business Port 7778
    Can somebody help me. What the reason of the error?
    Best regards, Alexey.

    Hello Jes,
    My webserver logs tell me:
    <1885440046 ms>[ReqStartTime: 25/Sep/2007:10:54:20]
    <1885440046 ms>Request ID ReqID:1124_1190703260
    <1885440046 ms>Connecting to database with connect string : "(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))(CONNECT_DATA=(SID=web)))"
    <1885440046 ms>OpenCursor
    <1885440046 ms>(wpd.c,1761) Logged in as (unknown)
    <1885440046 ms>(wpx.c,595) Going to select...
    <1885440046 ms>(wpx.c,649) Have been asked to execute a request
    <1885440046 ms>(wppa.c,332) Building Arglist based on Parsed Content from WRB
    <1885440046 ms>(wppa.c,1012) Enter ParseUrlData
    <1885440046 ms>POST
    <1885440046 ms>(wpu.c,256) Attempting to read 473 bytes
    <1885440046 ms>(wpu.c,261) We read 473, had 0, to get 0 bytes
    <1885440046 ms>[headers begin]
    <1885440046 ms>HTTP_COOKIE(11): (92)ISCOOKIE=true; ORACLE_PLATFORM_REMEMBER_UN=ADMIN:WEB_PORTAL; WWV_FLOW_USER2=A12843ECC05B47F9
    <1885440046 ms>[headers end]
    <1885440046 ms>p_flow_id=4000&p_flow_step_id=4900&p_instance=3737292023359227&p_page_submission_id=50868&p_request=ExportFlow&p_arg_names=6926471043&p_t01=100&p_arg_names=1721949240&p_t02=DOS&p_arg_names=791781102&p_t03=&p_arg_names=18891404558260052&p_t04=RUN_AND_BUILD&p_arg_names=198614502120573324&p_t05=1&p_arg_names=25717725405973450&p_t06=N&p_arg_names=124195606865896920&p_t07=Y&p_arg_names=45083820509961243&p_t08=5&p_arg_names=72688801649844540&p_t09=103%3B1%7C1&p_md5_checksum=
    <1885440046 ms>[form_data]
    <1885440046 ms>p_flow_id=4000&p_flow_step_id=4900&p_instance=3737292023359227&p_page_submission_id=50868&p_request=ExportFlow&p_arg_names=6926471043&p_t01=100&p_arg_names=1721949240&p_t02=DOS&p_arg_names=791781102&p_t03=&p_arg_names=18891404558260052&p_t04=RUN_AND_BUILD&p_arg_names=198614502120573324&p_t05=1&p_arg_names=25717725405973450&p_t06=N&p_arg_names=124195606865896920&p_t07=Y&p_arg_names=45083820509961243&p_t08=5&p_arg_names=72688801649844540&p_t09=103%3B1%7C1&p_md5_checksum=
    <1885440046 ms>(wppa.c,1506) indx = 24, entryCnt = 24
    <1885440046 ms>(wppa.c,1605) Array bind graduated (9=>20, 19=>32)
    <1885440046 ms>(wppa.c,1827) Listing distinct actual names:
    <1885440046 ms>(wppa.c,1829) p_flow_id
    <1885440046 ms>(wppa.c,1829) p_flow_step_id
    <1885440046 ms>(wppa.c,1829) p_instance
    <1885440046 ms>(wppa.c,1829) p_page_submission_id
    <1885440046 ms>(wppa.c,1829) p_request
    <1885440046 ms>(wppa.c,1829) p_arg_names
    <1885440046 ms>(wppa.c,1829) p_t01
    <1885440046 ms>(wppa.c,1829) p_t02
    <1885440046 ms>(wppa.c,1829) p_t03
    <1885440046 ms>(wppa.c,1829) p_t04
    <1885440046 ms>(wppa.c,1829) p_t05
    <1885440046 ms>(wppa.c,1829) p_t06
    <1885440046 ms>(wppa.c,1829) p_t07
    <1885440046 ms>(wppa.c,1829) p_t08
    <1885440046 ms>(wppa.c,1829) p_t09
    <1885440046 ms>(wppa.c,1829) p_md5_checksum
    <1885440046 ms>(wppa.c,1831) Listing actuals of array with large entries:
    <1885440046 ms>(wppa.c,1836) Listing distinct actual names and values:
    <1885440046 ms>(wppa.c,1868) p_flow_id, type = 0, value (5) = 4000
    <1885440046 ms>(wppa.c,1868) p_flow_step_id, type = 0, value (5) = 4900
    <1885440046 ms>(wppa.c,1868) p_instance, type = 0, value (17) = 3737292023359227
    <1885440046 ms>(wppa.c,1868) p_page_submission_id, type = 0, value (6) = 50868
    <1885440046 ms>(wppa.c,1868) p_request, type = 0, value (11) = ExportFlow
    <1885440046 ms>(wppa.c,1860) p_arg_names (maxlen 19), small array, values:
    <1885440046 ms>(wppa.c,1863) 6926471043
    <1885440046 ms>(wppa.c,1863) 1721949240
    <1885440046 ms>(wppa.c,1863) 791781102
    <1885440046 ms>(wppa.c,1863) 18891404558260052
    <1885440046 ms>(wppa.c,1863) 198614502120573324
    <1885440046 ms>(wppa.c,1863) 25717725405973450
    <1885440046 ms>(wppa.c,1863) 124195606865896920
    <1885440046 ms>(wppa.c,1863) 45083820509961243
    <1885440046 ms>(wppa.c,1863) 72688801649844540
    <1885440046 ms>(wppa.c,1868) p_t01, type = 0, value (4) = 100
    <1885440046 ms>(wppa.c,1868) p_t02, type = 0, value (4) = DOS
    <1885440046 ms>(wppa.c,1868) p_t03, type = 0, value (1) =
    <1885440046 ms>(wppa.c,1868) p_t04, type = 0, value (14) = RUN_AND_BUILD
    <1885440046 ms>(wppa.c,1868) p_t05, type = 0, value (2) = 1
    <1885440046 ms>(wppa.c,1868) p_t06, type = 0, value (2) = N
    <1885440046 ms>(wppa.c,1868) p_t07, type = 0, value (2) = Y
    <1885440046 ms>(wppa.c,1868) p_t08, type = 0, value (2) = 5
    <1885440046 ms>(wppa.c,1868) p_t09, type = 0, value (8) = 103;1|1
    <1885440046 ms>(wppa.c,1868) p_md5_checksum, type = 0, value (1) =
    <1885440046 ms>(wppa.c,427) Arglist built, 16 unique entries
    <1885440046 ms>(wpx.c,656) Going to wpprodb_OciDoBlock...
    <1885440046 ms>(wppr.c,459) start working with wwv_flow.accept
    <1885440046 ms>(wppr.c,1163) The CALL block: len=1284, bind_count=24
    declare
    rc__ number;
    start_time__ binary_integer;
    simple_list__ owa_util.vc_arr;
    complex_list__ owa_util.vc_arr;
    begin
    start_time__ := dbms_utility.get_time;
    owa.init_cgi_env(:n__,:nm__,:v__);
    htp.HTBUF_LEN := 255;
    htp.set_transfer_mode('raw');
    null;
    simple_list__(1) := 'sys.%';
    simple_list__(2) := 'dbms\_%';
    simple_list__(3) := 'utl\_%';
    simple_list__(4) := 'owa\_%';
    simple_list__(5) := 'owa.%';
    simple_list__(6) := 'htp.%';
    simple_list__(7) := 'htf.%';
    if ((owa_match.match_pattern('wwv_flow.accept', simple_list__, complex_list__, true))) then
    rc__ := 2;
    else
    null;
    null;
    wwv_flow.accept(p_flow_id=>:p_flow_id,p_flow_step_id=>:p_flow_step_id,p_instance=>:p_instance,p_page_submission_id=>:p_page_submission_id,p_request=>:p_request,p_arg_names=>:p_arg_names,p_t01=>:p_t01,p_t02=>:p_t02,p_t03=>:p_t03,p_t04=>:p_t04,p_t05=>:p_t05,p_t06=>:p_t06,p_t07=>:p_t07,p_t08=>:p_t08,p_t09=>:p_t09,p_md5_checksum=>:p_md5_checksum);
    if (wpg_docload.is_file_download) then
    rc__ := 1;
    wpg_docload.get_download_file(:doc_info);
    null;
    null;
    null;
    commit;
    else
    rc__ := 0;
    null;
    null;
    null;
    commit;
    owa.get_page_raw(:data__,:ndata__);
    end if;
    end if;
    :rc__ := rc__;
    :db_proc_time__ := dbms_utility.get_time - start_time__;
    end;
    <1885440046 ms>(wppr.c,519) Pl/sql block parsed...
    <1885440046 ms>(wpdenv.c,1526) CGI Environment has 31 vars. Max name len 128, Max Value Len 128
    <1885440046 ms> PLSQL_GATEWAY(14)=(6)WebDb
    <1885440046 ms> GATEWAY_IVERSION(17)=(2)3
    <1885440046 ms> SERVER_SOFTWARE(16)=(60)Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server
    <1885440046 ms> GATEWAY_INTERFACE(18)=(8)CGI/1.1
    <1885440046 ms> SERVER_PORT(12)=(5)7778
    <1885440046 ms> SERVER_NAME(12)=(9)business
    <1885440046 ms> REQUEST_METHOD(15)=(5)POST
    <1885440046 ms> PATH_INFO(10)=(17)/wwv_flow.accept
    <1885440046 ms> SCRIPT_NAME(12)=(10)/pls/apex
    <1885440046 ms> REMOTE_ADDR(12)=(12)192.168.1.9
    <1885440046 ms> SERVER_PROTOCOL(16)=(9)HTTP/1.1
    <1885440046 ms> REQUEST_PROTOCOL(17)=(5)HTTP
    <1885440046 ms> REMOTE_USER(12)=(17)APEX_PUBLIC_USER
    <1885440046 ms> HTTP_CONTENT_LENGTH(20)=(4)473
    <1885440046 ms> HTTP_CONTENT_TYPE(18)=(34)application/x-www-form-urlencoded
    <1885440046 ms> HTTP_USER_AGENT(16)=(75)Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322)
    <1885440046 ms> HTTP_HOST(10)=(14)business:7777
    <1885440046 ms> HTTP_ACCEPT(12)=(88)image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, */*
    <1885440046 ms> HTTP_ACCEPT_ENCODING(21)=(14)gzip, deflate
    <1885440046 ms> HTTP_ACCEPT_LANGUAGE(21)=(3)ru
    <1885440046 ms> HTTP_COOKIE(12)=(93)ISCOOKIE=true; ORACLE_PLATFORM_REMEMBER_UN=ADMIN:WEB_PORTAL; WWV_FLOW_USER2=A12843ECC05B47F9
    <1885440046 ms> HTTP_REFERER(13)=(79)http://business:7777/pls/apex/f?p=4000:4900:3737292023359227::::FB_FLOW_ID:103
    <1885440046 ms> HTTP_ORACLE_ECID(17)=(40)1190703260:192.168.1.9:2464:1124:1863,0
    <1885440046 ms> WEB_AUTHENT_PREFIX(19)=(1)
    <1885440046 ms> DAD_NAME(9)=(5)apex
    <1885440046 ms> DOC_ACCESS_PATH(16)=(5)docs
    <1885440046 ms> DOCUMENT_TABLE(15)=(23)wwv_flow_file_objects$
    <1885440046 ms> PATH_ALIAS(11)=(1)
    <1885440046 ms> REQUEST_CHARSET(16)=(13)CL8MSWIN1251
    <1885440046 ms> REQUEST_IANA_CHARSET(21)=(13)WINDOWS-1251
    <1885440046 ms> SCRIPT_PREFIX(14)=(5)/pls
    <1885440046 ms>StrArrPosBind pos 2 Charset Id : 171
    <1885440046 ms>StrArrPosBind pos 3 Charset Id : 171
    <1885440046 ms>StrArrPosBind pos 9 Charset Id : 171
    <1885440359 ms>ORA-1403 Execute ORA-01403: данные не найдены
    ORA-06512: на "SYS.HTP", line 987
    ORA-06512: на "SYS.OWA", line 105
    ORA-06512: на line 38
    <1885440359 ms>Stale Connection due to Oracle error 1403
    <1885440359 ms>/pls/apex/wwv_flow.accept HTTP-404 ORA-01403: данные не найдены
    ORA-06512: на "SYS.HTP", line 987
    ORA-06512: на "SYS.OWA
    Alexey.

  • The requested URL /pls/marvel/wwv_flow.accept was not found on this server.

    The requested URL /pls/marvel/wwv_flow.accept was not found on this server.
    I get this message many times when I submit the page. Haven't changed any code on the page in months, but this started happening yesterday.
    Interesting thing is that when I run in DEBUG mode, this doesn't happen. Things work just fine. What is different when running in DEBUG?
    I have put validation (unconditional) that does insert and commit into debugging table in database. Does not get to that point. Fails before validations occur.
    Any ideas/ suggestions are appreciated.
    --JM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    1. Please tell us your first name and put it into your handle and/or profile to help us.
    2. What is your Application Express version?
    3. Look at the Apache request log and error log for clues.
    4. Is the problem consistently reproducible?
    5. Can you get this app to fail in this way on apex.oracle.com?
    Scott

Maybe you are looking for