404 Not Found - Resource /analytics/saw.dll not found on this server

Hi,
I am trying to integrate obiee 10g with my EBS R12 applications.
When i try to access obiee from ebs responsibility getting this error.
I didn't see any errors in NQServer.log.
The same setup is working in another test instance.
Thanks,

Hi,
Redeploy your analytics application in your oc4j.
Above is an extract from an answered thread:
https://forums.oracle.com/thread/1041189
Hope this helps!
Best Regards

Similar Messages

  • Resource /analytics not found on this server

    I've tried a lot of different things to overcome this issue, but I'll try and keep this brief. Hopefully someone else has encountered a similar problem :-)
    I'm getting the following error with I try to access http://localhost:9704/analytics:
    "Resource /analytics not found on this server"
    My setup:
    Windows 7
    Oracle DB 11g Release 2 installed locally
    OBIEE 10g v10.1.3.2
    I installed 11g Release 2 prior to installing OBIEE.
    I can connect to databases through both 11g and OBIEE. I have successfully imported database metadata into OBIEE and built a basic repository. When I try to access analytics I get the error.
    I also have tried logging into Application Server Control (http://localhost:9704/em/) as oc4jadmin. I get the following error:
    "This OC4J is configured to make JMX connections via RMIS and fall back to RMI if the RMIS port is not configured. The RMIS connection on the OC4J local instance is configured but a connection could not be established. The JMX protocol is specified by the oracle.oc4j.jmx.internal.connection.protocol property in opmn.xml"
    The only opmn.xml file I find on my system is at C:\OracleBI\oc4j_bi\j2ee\home\applications\ascontrol\ascontrol\WEB-INF\config\registration, and it doesn't have the oracle.oc4j.jmx.internal.connection.protocol in it.
    I've tried the usual stop/start services, restart the computer, making sure ORACLE_HOME and JAVA_HOME are set. Any suggestions on what else to try?

    Thanks again Rachit. I had found those instructions, but since I can't get into Application Server Control, I can't redeploy the war in that way.
    Last night I was able to fix my problem. Here is what I ended up doing:
    1) Uninstall OBIEE
    2) Restart computer
    3) Delete any OBIEE files that uninstall left (there was still on OracleBI directory structure)
    4) Restart computer again
    5) Install the latest *32-bit* JDK. I had the latest *64-bit* version, and had a suspicion that I might need the 32-bit
    6) Restart computer
    7) Reinstall OBIEE, pointing to the 32-bit JDK install
    8) Restart computer
    After that I am able to launch presentation services and get into Answers.
    I still have one problem to overcome, but that is for another thread if I can't figure it out.

  • SOAP:ENV Error: Resource..not found on this server

    I created a simple java class with a method that returns org.w3c.dom.Element type.
    Created web service for this class and method in Jdeveloper.
    Deployed this web service in OC4J locally (as explained by other web services examples).
    Then I created a Client Stub for this web service (.wsdl file).
    When testing this client stub ( I followed the same steps as mentioned in OTN DEPT/EMP Web Service), I get the following exception:
    D:\JDEVELOPER\jdk\bin\javaw.exe -ojvm -classpath D:\JDEVELOPER\jdev\mywork\MyWorkspace\MyProject2\classes;D:\JDEVELOPER\jdev\lib\jdev-rt.jar;D:\JDEVELOPER\jdbc\lib\classes12.jar;D:\JDEVELOPER\jdbc\lib\nls_charset12.jar;D:\JDEVELOPER\jdev\lib\jdev-rt.jar;D:\JDEVELOPER\soap\lib\soap.jar;D:\JDEVELOPER\lib\xmlparserv2.jar;D:\JDEVELOPER\jlib\javax-ssl-1_2.jar;D:\JDEVELOPER\jlib\jssl-1_2.jar;D:\JDEVELOPER\j2ee\home\lib\activation.jar;D:\JDEVELOPER\j2ee\home\lib\mail.jar;D:\JDEVELOPER\j2ee\home\lib\http_client.jar;D:\JDEVELOPER\lib\xmlparserv2.jar;D:\JDEVELOPER\lib\xmlcomp.jar;D:\JDEVELOPER\rdbms\jlib\xsu12.jar GetProductsClient
    [SOAPException: faultCode=SOAP-ENV:Protocol; msg=Unsupported response content type "text/html", must be: "text/xml". Response was:
    <HTML><HEAD><TITLE>404 Not Found</TITLE></HEAD><BODY><H1>404 Not Found</H1>Resource /MyWorkspace-MyProject2-context-root/GetProducts not found on this server</BODY></HTML>
    The SOAP response is as bellow:
    HTTP/1.1 404 Not Found
    Date: Wed, 27 Nov 2002 15:36:27 GMT
    Server: Oracle9iAS (9.0.3.0.0) Containers for J2EE
    Content-Length: 171
    Connection: Close
    Content-Type: text/html
    <HTML><HEAD><TITLE>404 Not Found</TITLE></HEAD><BODY><H1>404 Not Found</H1>Resource /MyWorkspace-MyProject2-context-root/GetProducts not found on this server</BODY></HTML>
    The Debug shows, the Method getProductsXM() in the client stub is failing at
    Response response = call.invoke(endpointURL, "");
    This appears to be generating fault and the code is throughing exception which is not casted in to a Element type.
    Not sure what is causing this to fail. And I have not toucjed/ changed the URI for this webservice myself at all. Whatever URIs or Name spaces are there, they are all generarted by JDeveloper.
    I was trying to create a web service that display/return Resultset.
    Any feedback/suggestions ? I would appreciate if you can point me to some sample code that does this ( returning Resultset as XML -<ROWSET> Element)
    Thanks,
    Madhu

    Does this do the trick?
    Server side class:
    import org.w3c.dom.*;
    import oracle.xml.parser.v2.*;
    public class Employee
    public Employee ()
    public Element getEmployeeElement(){
    Document doc = new XMLDocument();
    Element elAdd = doc.createElement( "employee");
    Element elA = doc.createElement( "name");
    elA.appendChild(doc.createTextNode("Mike"));
    elAdd.appendChild(elA);
    doc.appendChild(elAdd);
    return doc.getDocumentElement();
    Generated Interface from JDev:
    * Generated by the Oracle9i JDeveloper Web Services Interface Generator
    * Date Created: Wed Nov 27 11:42:37 PST 2002
    * This interface lists the subset of public methods that you
    * selected for inclusion in your web service's public interface.
    * It is referenced in the web.xml deployment descriptor for this service.
    * This file should not be edited.
    public interface IEmployee
    public org.w3c.dom.Element getEmployeeElement();
    Generated client with a print method to output the result (using WSDL generated by JDeveloper):
    import oracle.soap.transport.http.OracleSOAPHTTPConnection;
    import org.apache.soap.encoding.soapenc.BeanSerializer;
    import org.apache.soap.encoding.SOAPMappingRegistry;
    import org.apache.soap.util.xml.QName;
    import java.net.URL;
    import org.apache.soap.Constants;
    import org.apache.soap.Fault;
    import org.apache.soap.SOAPException;
    import org.apache.soap.rpc.Call;
    import org.apache.soap.rpc.Parameter;
    import org.apache.soap.rpc.Response;
    import org.w3c.dom.Element;
    import java.util.Vector;
    import java.util.Properties;
    import oracle.xml.parser.v2.*;
    * Generated by the Oracle9i JDeveloper Web Services Stub/Skeleton Generator.
    * Date Created: Wed Nov 27 11:39:29 PST 2002
    * WSDL URL: file:/D:/demo/Workspace5/Project1/src/Employee.wsdl
    public class EmployeeStub
    public EmployeeStub()
    m_httpConnection = new OracleSOAPHTTPConnection();
    m_smr = new SOAPMappingRegistry();
    public static void main(String[] args)
    try
    EmployeeStub stub = new EmployeeStub();
    // Add your own code here.
    Element e = stub.getEmployeeElement();
    ((XMLElement)e).print(System.out);
    catch(Exception ex)
    ex.printStackTrace();
    public String endpoint = "http://127.0.0.1:8888/Workspace5-Project1-context-root/Employee";
    private OracleSOAPHTTPConnection m_httpConnection = null;
    private SOAPMappingRegistry m_smr = null;
    public Element getEmployeeElement() throws Exception
    Element returnVal = null;
    URL endpointURL = new URL(endpoint);
    Call call = new Call();
    call.setSOAPTransport(m_httpConnection);
    call.setTargetObjectURI("Employee");
    call.setMethodName("getEmployeeElement");
    call.setEncodingStyleURI(Constants.NS_URI_LITERAL_XML);
    Vector params = new Vector();
    call.setParams(params);
    call.setSOAPMappingRegistry(m_smr);
    Response response = call.invoke(endpointURL, "");
    if (!response.generatedFault())
    Parameter result = response.getReturnValue();
    returnVal = (Element)result.getValue();
    else
    Fault fault = response.getFault();
    throw new SOAPException(fault.getFaultCode(), fault.getFaultString());
    return returnVal;
    public void setMaintainSession(boolean maintainSession)
    m_httpConnection.setMaintainSession(maintainSession);
    public boolean getMaintainSession()
    return m_httpConnection.getMaintainSession();
    public void setTransportProperties(Properties props)
    m_httpConnection.setProperties(props);
    public Properties getTransportProperties()
    return m_httpConnection.getProperties();
    Mike.

  • 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

  • Started OC4J using "start_oc4j.bat"- Resource  /em not found on this server

    I have installed JDeveloper on Windows XP SP2.
    I also have Oracle 10g Express Edition (XE) database installed on my machine.
    I tried to start OC4J applications server by clicking the "start_oc4j.bat" found in <jdeveloper_home>--><jdev/bin>
    However it started with a waring message.
    Starting OC4J with command: "..\..\jdk\bin\java.exe" -XX:MaxPermSize=512m -jar o
    c4j.jar
    Oct 6, 2008 2:57:54 PM oracle.j2ee.xml.XMLMessages warningException
    WARNING: Exception Encountered
    08/10/06 14:58:01 SEVERE: AbstractInfo.getAnnotation oracle.webservices.annotati
    ons.async.AsyncWebService cannot be found in the given classpath.
    08/10/06 14:58:01 SEVERE: AbstractInfo.getAnnotation oracle.webservices.annotati
    ons.async.AsyncWebService cannot be found in the given classpath.
    08/10/06 14:58:03 Don't know how to map non-serializable type: interface javax.m
    anagement.j2ee.statistics.Stats to Open MBean Type.
    08/10/06 14:58:04 WARNING: J2EE JNDI-00002
    08/10/06 14:58:04 WARNING: No javax.jms.ConnectionFactory found at null
    08/10/06 14:58:07 Oracle Containers for J2EE 11g (11.1.1.0.0) initialized.
    When I try to invoke the homepage by "http://127.0.0.1:8888/em", I get the message "Resource /em not found on this server"
    I also do not find links in the JDeveloper in the "Tools-->Preferences--> Embedded OC4J Server Preferences.
    I do not have any proxies.
    Can anyone help in regards to this issue? I would greatly appreciate it

    Max,
    Thanks for ur intrest in replying to me.
    I am a newbie in this regards.
    I was reading some articles posted in ORACLE
    http://www.oracle.com/technology/obe/obe1013jdev/10131/deployment/deployment.htm
    It mentions that "Standalone OC4J that comes with JDeveloper also includes ENTERPRISE MANAGER"
    But u are mentioning that, the Jdeveloper doesnt include the Enterprise Manager.
    Kindly help me out.
    Thanks,
    Sai Krishna.

  • Error loading XML Document from /analytics/saw.dll/common/privileges.xml

    I tested my procedure for upgrading from OBI 11.1.1.5 to 11.1.1.6 which was successful. I had to rollback to OBI 11.1.1.5 using my database backup and VM snapshot due to project requirements.
    The OBI application successfully comes up but users who login just get "Error loading XML Document from /analytics/saw.dll/common/privileges.xml?fmapID=KqIJCw. The response given was: ". They can't close this message box so are unable to do anything.
    How can I fix this?

    Hi All,
    You can face this issue with other versions of OBIEE 11.*
    Problem cab be solved as follows:
    Go to http://localhost:7001/em  > coreapplication > Capacity Management > Scalibility >
    1. Lock and edit
    2 .increase number of presentation services to 2
    3. restart opmn component.
    Go to coreapplication > Availibility > processes
    1 .please note that in deployment > catalog > change path of catalog field from $coreapplication to path where your catalog resides.
    2. Take down your primary instance.
    3. As your secondary is up, it will grant you to browse you through catalog and dashboards.
    If you want to run primary instance of presentation services
    Go to path \Middleware\instances\instance1\bifoundation\OracleBIPresentationServicesComponent\coreapplication_obips2
    except catalog and catalog manager > Copy all other files to coreapplication_obips1
    restart opmn component > problem solved.!!!
    Regards,
    Akshay S.
    please like if you find it helpful

  • Apex_util.get_blob was not found on this server

    Hi All,
    APEX Version: 3.1.1.00.09
    Database version 11g
    I am trying to create a report, with a column having a link to download the file stored as BLOB type in the database.
    I performed the following steps:
    *1. created custom report base on SQL Query:*
    select PROGRAM_ID ,
    USER_ID ,
    dbms_lob.getlength(FILE_CONTENT) "FILE_CONTENT" ,
    File_name
    from PGMRECRT_FRMS_USRSUBMTSTATUS
    [Primary Keys for the table PGMRECRT_FRMS_USRSUBMTSTATUS are :  Program_id and user_id]
    *2. Configured BLOB Download Format Mask for the column "File_Content" as:*
    DOWNLOAD:PGMRECRT_FRMS_USRSUBMTSTATUS:FILE_CONTENT:PROGRAM_ID:USER_ID::FILE_NAME:LST_UPD_TSTMP::attachment:Download
    *3. When I run the report I get the Download link in the "File_Content" column.*
    *4. When the link is clicked it throws 404 Not found Error, with the following message on the browser:*
    The requested URL /pls/apex/apex_util.get_blob was not found on this server.
    The Page Source contains the following
    href="apex_util.get_blob?s=3261371303066053&a=101&c=2878703203169482&p=16&k1=147&k2=&ck=01786319873F8A6F1A1344A1B2A17567&rt=CR" alt="Download" title="Download 32KB"
    I don't see the second Primary key being passed in the source. (User_id)
    I checked the HTTP Server error log, here is the error recorded in the log file:
    [Sat Jun  6 02:22:14 2009] [error] [client 141.144.160.57] [ecid: 1244280134:148.87.1.123:18724:0:2223,0] mod_plsql: /pls/apex/apex_util.get_blob HTTP-404 ORA-00900: invalid SQL statement\nORA-06512: at "SYS.WWV_DBMS_SQL", line 206\nORA-06512: at "FLOWS_030100.WWV_FLOW_DML", line 2409\nORA-06512: at "FLOWS_030100.HTMLDB_UTIL", line 1580\nORA-06512: at line 31\n
    Please suggest what is the problem here and how should I go about resolving it.
    I have created sample report: Visit following link: [It is SSO enabled]
    https://techbpo-stage.oracle.com:4443/pls/apex/f?p=101:16
    Thanks & Regards
    Pooja

    For people who are still searching for a solution:
    I think you have to make sure that you select the primary key of the table containing the blob and do not use an alias for this column.
    I first tried following scenario:
    select my_table.pk_id, my_table.description, dbms_lob.getlength(doc.document_data) document_data
    from table1 my_table
    join table2 doc
    on doc.pk_id = my_table.fk_doc_id;
    I filled in the correct column attributes but still this resulted in the 500 error.
    After some research i tried following scenario:
    select my_table.pk_id, my_table.description, doc.pk_id document_id, dbms_lob.getlength(doc.document_data) document_data
    from table1 my_table
    join table2 doc
    on doc.pk_id = my_table.fk_doc_id;
    But still this resulted in the 500 error.
    Finally thanks to a lucky guess I removed the alias from the doc.pk_id and added an alias for the my_table.pk_id and everything worked fine.
    select my_table.pk_id table_id, my_table.description, doc.pk_id, dbms_lob.getlength(doc.document_data) document_data
    from table1 my_table
    join table2 doc
    on doc.pk_id = my_table.fk_doc_id;
    I also read something about the order in which you select the blob file, I always select it as the last column. I'm not sure if this has any influence on the result.
    Regards,
    Bjorn

  • The requested URL not found on this server

    Hi
    I was trying to export the output of a report to Excel spreadsheet using the technique mentioned in the below link
    http://htmldb.oracle.com/pls/otn/f?p=18326:54:4064128727007824::::P54_ID:1962
    and got a "requested URL pls/apex/x.excel_xml was not found in this server" error message. I have successfully created the procedure and it exists under the workspace schema with the correct permissions.
    What am I doing wrong?
    Thanks in advance.

    Hi Scott,
    Thanks for looking into this. I am using Oracle-Application-Server-10g/10.1.2.0.2 , Application Express Release 2.2 and Oracle Database 10g Enterprise Edition Release 10.2.0.1.0.
    My application and the oracle procedure I am trying to call (excel_xml) exists in the same workspace "testworkspace" . I ran the grant requst as "grant execute on excel_xml to public".
    But still I get the URL not found error message.
    Here is the error log from Apache
    [Wed Sep 20 08:35:59 2006] [error] [client 10.60.23.126] [ecid: 4141503397020,1] File does not exist: c:/orahome_1/apache/apache/htdocs/favicon.ico
    [Wed Sep 20 08:56:09 2006] [error] [client 10.60.23.126] [ecid: 3866626726665,1] mod_plsql: /pls/apex/report.excel_xml HTTP-404 \nreport.excel_xml: PROCEDURE DOESN'T EXIST\n
    [Wed Sep 20 09:03:38 2006] [error] [client 10.60.23.126] [ecid: 1976841578959,1] mod_plsql: /pls/apex/report.excel_xml HTTP-404 \nreport.excel_xml: PROCEDURE DOESN'T EXIST\n
    Really appreciate any help on this.
    Thanks.

  • 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

  • My bookmarks suddenly are not accessible. Each time I try to use a bookmark, the following message comes up on the error page: The requested URL /exec/obidos/subst/home/home.html/103-3592028-6560639 was not found on this server. The page error is ident

    My bookmarks suddenly are not accessible. Each time I try to use a bookmark, the following message comes up on the error page: The requested URL /exec/obidos/subst/home/home.html/103-3592028-6560639 was not found on this server. The page error is identified as "ERROR 404" I tried a clean install of the latest version; no luck. looked at plug-ins & add-ons; no luck
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    Hi Mac Attack,
    My computer will not disconnect from the internet.  It seems to find a clone router and continues even when I shut down and unplug my my own home iy
    Your main question was 'chopped' in the title. Please reply in the body of a reply box with the full question and anything you have tried. And no, the long report was not helpful .
    If the same website is opening each time you launch a browser (Safari?) hold down the shift key as you launch to prevent previous pages from opening.
    Have a look at your settings in Safari > Preferences. Especially General and Privacy.
    Reset Safari to remove cookies and other stored data.
    System Preferences > General
    Have a look at your settings in System Preferences >  Security & Privacy.
    Call back with more questions.
    Regards,
    Ian

  • Wwv_flow.accept was not found on this server when PlsqlTransferMode = RAW

    Hello. When PlsqlTransferMode is set to RAW, I have an error "wwv_flow.accept was not found on this server" on submiting any page.
    Procedure wwv_flow.show() works correctly in this mode.
    My dads.conf is
    <Location /utf>
    Order deny,allow
    PlsqlDocumentPath docs
    AllowOverride None
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlDatabaseConnectString ACER:1521:utf8
    PlsqlTransferMode RAW
    PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDefaultPage apex
    PlsqlDatabasePassword xxxx
    Allow from all
    </Location>
    My error_log on server is
    mod_plsql: /utf/wwv_flow.accept HTTP-404 ORA-01403: \xe4\xe0\xed\xed\xfb\xe5 \xed\xe5 \xed\xe0\xe9\xe4\xe5\xed\xfb\nORA-06512: \xed\xe0 "SYS.HTP", line 987\nORA-06512: \xed\xe0 "SYS.OWA", line 105\nORA-06512: \xed\xe0 line 36\n
    PLEASE, HELP!!!

    There is something similar before:
    wwv_flow.accept was not found on this server
    what lead to some DAD changes....revert is helping ?
    Regards,
    Damir

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

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

  • I am unable to watch downloaded context. Getting requested URL not found on this server

    I am unable to watch the content I downloaded. I keep getting the requested URL is not found on this server. Can anyone help. Please

    Hi Scott,
    Thanks for looking into this. I am using Oracle-Application-Server-10g/10.1.2.0.2 , Application Express Release 2.2 and Oracle Database 10g Enterprise Edition Release 10.2.0.1.0.
    My application and the oracle procedure I am trying to call (excel_xml) exists in the same workspace "testworkspace" . I ran the grant requst as "grant execute on excel_xml to public".
    But still I get the URL not found error message.
    Here is the error log from Apache
    [Wed Sep 20 08:35:59 2006] [error] [client 10.60.23.126] [ecid: 4141503397020,1] File does not exist: c:/orahome_1/apache/apache/htdocs/favicon.ico
    [Wed Sep 20 08:56:09 2006] [error] [client 10.60.23.126] [ecid: 3866626726665,1] mod_plsql: /pls/apex/report.excel_xml HTTP-404 \nreport.excel_xml: PROCEDURE DOESN'T EXIST\n
    [Wed Sep 20 09:03:38 2006] [error] [client 10.60.23.126] [ecid: 1976841578959,1] mod_plsql: /pls/apex/report.excel_xml HTTP-404 \nreport.excel_xml: PROCEDURE DOESN'T EXIST\n
    Really appreciate any help on this.
    Thanks.

  • My iphone wont let me play songs that I bought from iTunes. It says "The requested URL was not found on this server" How can i play my music also my music videos again?

    I bought a few songs and music videos from iTunes, then all of a sudden it wouldn't play and would just skip to the next song. With the music videos it would do the same. Also, this message would show up " The Requested URL could not be found on this server" What does that exactly mean? And what do I need to do to play my music/videos again?

    This previous discussion has a solution:
    https://discussions.apple.com/message/16527576#16527576

Maybe you are looking for

  • Metadata Methodology in SRM 7.0

    Hello, I'm a new developer to SAP and even newer to SRM. I have a requirement to modify a dynpro to default some values and hide some other fields in the SC line item dynpro specifically /SAPSRM/WDC_DODC_SC_I_LIM. We've determined that Metadata Metho

  • ITunes 11.1.1 won't open on Windows XP

    this morning I tried to sync new music into my iPhone 5, but I guess since I just updated to iOS7 I had to update to the new itunes, so I did but now the latest version of iTunes won't open up on my Windows XP. Uninstalled and reinstalled and still,

  • Insert select statement or insert in cursor

    hi all, i need a performance compare for: insert operation in cursor one by one and select statement insert, for example: 1. insert into TableA (ColumA,ColumnB) select A, B from TableB; 2. cursor my_cur is select A, B from TableB for my_rec in my_cur

  • Synchronous question in iTunes 10

    Dear All, I have a question want to know about the synchronous my iPhone and iTunes 10. I have lots of application in my iTunes, most of them are synchronous from my iPhone, but some of them have deleted from my iPhone but I don't want to keep them i

  • NetBoot images not showing on clients

    I have two Mavericks (10.9.4) servers from which I am trying to netboot to use DeployStudio to deploy Fall semester images. None of the clients see the images offered by either server either from the Startup Disk pref pane or by holding option or N a