404 resource not found error

So I'm debugging my application when I suddenly start getting this error:
No resource found (404)
The requested URL /content/adeparchitecture-debug/adeparchitecture.html resulted in an error in org.apache.sling.servlets.resolver.internal.defaults.DefaultErrorHandlerServlet.
Request Progress:
      0 (2011-08-31 13:25:37) TIMER_START{Request Processing}
      0 (2011-08-31 13:25:37) COMMENT timer_end format is {<elapsed msec>,<timer name>} <optional message>
      0 (2011-08-31 13:25:37) LOG Method=GET, PathInfo=/content/adeparchitecture-debug/adeparchitecture.html
      1 (2011-08-31 13:25:37) TIMER_START{ResourceResolution}
      3 (2011-08-31 13:25:37) TIMER_END{2,ResourceResolution} URI=/content/adeparchitecture-debug/adeparchitecture.html resolves to Resource=NonExistingResource, path=/content/adeparchitecture-debug/adeparchitecture.html
      3 (2011-08-31 13:25:37) LOG Resource Path Info: SlingRequestPathInfo: path='/content/adeparchitecture-debug/adeparchitecture.html', selectorString='null', extension='html', suffix='null'
      3 (2011-08-31 13:25:37) TIMER_START{ServletResolution}
      3 (2011-08-31 13:25:37) TIMER_START{resolveServlet(NonExistingResource, path=/content/adeparchitecture-debug/adeparchitecture.html)}
      4 (2011-08-31 13:25:37) TIMER_END{1,resolveServlet(NonExistingResource, path=/content/adeparchitecture-debug/adeparchitecture.html)} Using servlet org.apache.sling.servlets.get.DefaultGetServlet
      4 (2011-08-31 13:25:37) TIMER_END{1,ServletResolution} URI=/content/adeparchitecture-debug/adeparchitecture.html handled by Servlet=org.apache.sling.servlets.get.DefaultGetServlet
      4 (2011-08-31 13:25:37) LOG Applying Requestfilters
      4 (2011-08-31 13:25:37) LOG Calling filter: org.apache.sling.security.impl.ReferrerFilter
      4 (2011-08-31 13:25:37) LOG Calling filter: org.apache.sling.i18n.impl.I18NFilter
      4 (2011-08-31 13:25:37) LOG Calling filter: com.adobe.ep.taskmanagement.task.service.FormsRedirect
      4 (2011-08-31 13:25:37) LOG Calling filter: com.adobe.aes.aesop.j2ee.impl.UserTransactionCleanupFilter
      4 (2011-08-31 13:25:37) LOG Calling filter: org.apache.sling.engine.impl.debug.RequestProgressTrackerLogFilter
      4 (2011-08-31 13:25:37) LOG Calling filter: com.adobe.livecycle.crx.security.SpringSecurityBridgeFilter
      4 (2011-08-31 13:25:37) LOG Calling filter: com.adobe.livecycle.content.sling.impl.ResourceResolverFilter
      4 (2011-08-31 13:25:37) LOG Calling filter: com.adobe.livecycle.content.appcontext.impl.AppContextFilter
      4 (2011-08-31 13:25:37) TIMER_START{org.apache.sling.servlets.get.DefaultGetServlet#0}
      5 (2011-08-31 13:25:37) TIMER_END{1,org.apache.sling.servlets.get.DefaultGetServlet#0}
      5 (2011-08-31 13:25:37) TIMER_START{handleError:status=404}
      6 (2011-08-31 13:25:37) TIMER_END{1,handleError:status=404} Using handler org.apache.sling.servlets.resolver.internal.defaults.DefaultErrorHandlerServlet
      6 (2011-08-31 13:25:37) TIMER_END{6,Request Processing} Dumping SlingRequestProgressTracker Entries
Any idea what could be causing it?  I just started happening, I didn't do anything to cause it or change anything on the server.

Did a clean on the project and it started launching again.

Similar Messages

  • 404 Resource Not Found In UWL for Display Request in Travel Management

    Hi Team,
    Issue regarding Uwl in Travel Management.In Mss inbox when approver clicks on display form for travel request its throwing error like 404 resource not found.
    i have check all uwl iview properties like list actions to be excluded and Xml code etc.
    Regards,
    Venkat.

    Hi Venkat
    I hope you are well and many thanks for using the discussion forums .
    In relation to the scenario that you have described you mentioned that:
    Once a user (via the MSS Inbox) clicks on the display form for travel request you are encountering a 404 resource not found error.
    Ok so the first means of analysis is to ensure the UWL Destination Service Configuration is setup and maintained accordingly. Kindly review and consult the documentation below carefully.
    SAP Note: 1133821 - UWL Destination Service configuration
    After ensuring the destination(s) are setup accordingly and if the issue persists kindly restart the UWL service and clear the UWL cache to see if that resolves the issue.
    In the destination configuration kindly ensure there are no discrepancies or misconfigurations.
    Now have you navigated to your current connector setup and viewed the status columns to see if there are any exceptions appearing?
    Lastly kindly check if the URL being called (at the request page) is correct.
    Kindly update me as per your findings.
    Kind Regards & All The Best
    Troy Cronin - Enterprise Portal Support Engineer

  • Getting 104 resource not found error, when deploying my first servlet

    Hi,
    I am new to servlets, and after doing little home work i have created a small servlet but i am i getting http 104 resource not found error.
    steps i followed:
    1) installed pre-configured version of tomcat from http://www.coreservlets.com/Apache-Tomcat-Tutorial/.
    2)created new directory called ch1 under webapps, created WEB-INF under ch1
    3)included web.xml, classes in WEB-INF directly
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_5.xsd"
    version="2.5">
    <servlet>
    <servlet-name>Ch1servlet</servlet-name>
    <servlet-class>Ch1servlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Ch1servlet</servlet-name>
    <url-pattern>/servlet</url-pattern>
    </servlet-mapping>
    </web-app>
    4) included .class file under classes folder from following Ch1servlet.java file, I have set class path to point to servlet-api.jar file and jsp-api.jar and compliled following java file to get .class file which is included in classes folder
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class Ch1servlet extends HttpServlet
    public void doGet(HttpServletRequest request,HttpServletResponse response)throws IOException
    response.setContentType("text/html");
    PrintWriter out=response.getWriter();
    java.util.Date today=new java.util.Date();
    out.println("<html>"+
    "<body>"+
    "<h1 align=center>HF\'s Chapter1 Servlet</h1>"
    +"<br>" + today + "</body>" + "</html>");
    5) I am started tomcat server and when typed http://localhost( changed port from 8080 to 80), its giving tomcat page and not showing any error
    6) When i typed http://localhost/ch1/servlet/Ch1servlet, its giving http 404 error
    type Status report
    message: /servlet/Ch1servlet
    description: The requested resource (/servlet/Ch1servlet) is not available.
    7) i have uncommented(it comes preconfigured) the invoker part in web.xml.
    I have tried including servlet in an package and without package
    I am not sure if its problem with server configuration orelse problem with my file placing.
    Please let me know if you have any idea what went wrong.

    I found this, unable to copy it, so i am typing it:
    Feb11,2008 11:55:57 AM org.apache.catalina.core.AprLifecycleLIstener init
    INFO: The Apache Tomcat Native Library which allows optimal performance in production environemnt was not found on the java.library.path:c:\program Files\Java\jdk1.6.0\bin;....
    last line says
    org.apache.cataline.startup.catalina start
    INfo: Server startup in 657ms

  • 404 File not Found error trying servlet under https

    Hi,
    This is the first time that I've had to work with SSL. I have a servlet that worked fine under regular http. I had to implement SSL and run my site over https. When I try to access my servlet under HTTPS, I get the 404 File not found error. Is there something that I need to setup for servlets to run under SSL in apache or server.xml? or Do I need to modify my JSP and Servlet code?
    I call my servlet from my JSP on the action method of the form like such:
    * JSP call to servlet
    <form action="https://www.benefitserver.com:8081/FDFServlet" method="post">
    * Servlet code
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.net.ssl.*;
    import java.io.*;
    import java.util.*;
    import com.yoursummit.benefitserver.*;
    import com.adobe.fdf.*;
    import com.adobe.fdf.exceptions.*;
    public class FDFServlet extends HttpServlet
    private static final String CONTENT_TYPE = "text/html";
    private String fileout = "";
    //Initialize global variables
    public void init() throws ServletException
    System.setProperty("java.protocol.handler.pkgs","sun.net.ssl.internal.www.protocol");
    java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    //Process the HTTP Get request
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    doPost( request, response);
    //Process the HTTP Post request
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    String planID = request.getParameter("planID");
    String empID = request.getParameter("empID");
    HttpSession session = request.getSession();
              try {
                   FDFDoc outputFDF = null;
                   /* Create a new FDF. */
                   outputFDF = new FDFDoc();
    // Set the form fields with values from the database
    if ( planID.equalsIgnoreCase("31") )
    formDeltaPopulation formDP = new formDeltaPopulation();
    fileout = formDP.populateDeltaForm( outputFDF, planID, empID, request );
    if (planID.equalsIgnoreCase("29") )
    formUnicarePopulation formUC = new formUnicarePopulation();
    fileout = formUC.populateUnicareForm( outputFDF, planID, empID, request );
    if (planID.equalsIgnoreCase("30") || planID.equalsIgnoreCase("32") || planID.equalsIgnoreCase("33") || planID.equalsIgnoreCase("34") || planID.equalsIgnoreCase("35"))
    formSunLifePopulation formSL = new formSunLifePopulation();
    fileout = formSL.populateSunLifeForm( outputFDF, planID, empID, request );
    response.sendRedirect(com.yoursummit.utils.urlRewrite.getServletURL(request,"emp_main.jsp?empID=" + empID));
    } catch(FDFException fdfe) {
    /* We handle an error by emitting an html header */
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("Caught FDF exception");
    out.println(fdfe.toString());
    fdfe.printStackTrace(out);
    IOException e = new IOException ( fdfe.getMessage() );
    throw e;
    catch(IOException ioe) {
         /* We handle an error by emitting an html header */
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("Caught FDF exception");
    out.println(ioe.toString());
    ioe.printStackTrace(out);
    throw ioe;
    catch(Exception e) {
    /* We handle an error by emitting an html header */
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("Caught tomcatDB exception");
    out.println(e.toString());
    e.printStackTrace(out);
    IOException ioe = new IOException ( e.getMessage() );
    throw ioe;
    //Clean up resources
    public void destroy()
    }

    I have been told that there is problem with my configuration of Tomcat. I have followed the documentation found at
    http://jakarta.apache.org/tomcat/tomcat-4.1-doc/ssl-howto.html
    and it doesn't work. I have been working on this for a week now and can't seem to get it to work. Can someone please take a look at it and tell me what I am doing wrong? THANKS!
    I get "HTTP 404 - File not Found" with the URL https://www.benefitserver.com/FDFServlet
    I get "Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request" with the URL https://www.benefitserver.com/servlet/FDFServlet
    I've looked at the log files for Apache and I don't see any errors listed. No errors logged in the Tomcat log file either.
    * httpd.conf
    ## Include line for mod_jk.so (Jakarta-Tomcat installation)
    #Include /usr/home/summimps/usr/local/jakarta/jakarta-tomcat-3.2.3/conf/mod_jk.conf-auto
    LoadModule jk_module libexec/mod_jk.so
    AddModule mod_jk.c
    JkWorkersFile /usr/home/summimps/usr/tomcat4.1.24/conf/worker.properties
    JkLogFile /usr/home/summimps/var/log/mod_jk.log
    JkLogLevel info
    #JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
    #JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
    #JkRequestLogFormat "%w %V %T"
    JkMount /*.jsp benefitserver
    JkMount /solarc/*.jsp benefitserver
    JkMount /servlet/* ajp13
    JkMount /solarc/servlet/* ajp13
    # Should mod_jk send SSL information to Tomcat (default is On)
    #JkExtractSSL On
    # What is the indicator for SSL (default is HTTPS)
    JkHTTPSIndicator HTTPS
    # What is the indicator for SSL session (default is SSL_SESSION_ID)
    JkSESSIONIndicator SSL_SESSION_ID
    # What is the indicator for client SSL cipher suit (default is SSL_CIPHER)
    JkCIPHERIndicator SSL_CIPHER
    # What is the indicator for the client SSL certificated (default is SSL_CLIENT_CERT)
    JkCERTSIndicator SSL_CLIENT_CERT
    <Directory />
    AllowOverride None
    </Directory>
    <Directory "/usr/tomcat4.1.24/webapps/ROOT">
      Options Indexes
      <IfDefine SSL>
        SSLRequireSSL
        SSLOptions +StdEnvVars +ExportCertData +StrictRequire
        SSLVerifyClient require
        SSLVerifyDepth 1
      </IfDefine>
    </Directory>
    <VirtualHost benefitserver.com www.benefitserver.com>
    SSLRequireSSL
    ServerName benefitserver.com
    ServerAdmin [email protected]
    DocumentRoot /usr/local/etc/httpd/htdocs/benefitserver
    TransferLog /usr/local/etc/httpd/logs/bsAccess_log
    ErrorLog /usr/local/etc/httpd/logs/bsError_log
    </VirtualHost>
    * server.xml
    <?xml version='1.0' encoding='utf-8'?>
    <Server className="org.apache.catalina.core.StandardServer" debug="0" port="8006" shutdown="SHUTDOWN">
      <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" debug="0" jsr77Names="false"/>
      <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" debug="0"/>
      <GlobalNamingResources>
      </GlobalNamingResources>
      <Service className="org.apache.catalina.core.StandardService" debug="0" name="Tomcat-Standalone">
        <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    redirectPort="8443" bufferSize="2048" port="8081" connectionTimeout="20000" scheme="https" enableLookups="true" secure="true" protocolHandlerClassName="org.apache.coyote.http11.Http11Protocol" debug="0" disableUploadTimeout="true" maxKeepAliveRequests="100" proxyPort="0" tcpNoDelay="true" minProcessors="5" maxProcessors="75" acceptCount="100" useURIValidationHack="false" connectionLinger="-1" compression="off">
          <Factory className="org.apache.catalina.net.SSLServerSocketFactory" keystoreFile="//.keystore" keystoreType="JKS" algorithm="SunX509" clientAuth="false" protocol="TLS"/>
        </Connector>
        <Engine className="org.apache.catalina.core.StandardEngine" mapperClass="org.apache.catalina.core.StandardEngineMapper" debug="0" defaultHost="localhost" name="Standalone">
          <Host className="org.apache.catalina.core.StandardHost" appBase="webapps" liveDeploy="true" mapperClass="org.apache.catalina.core.StandardHostMapper" autoDeploy="true" configClass="org.apache.catalina.startup.ContextConfig" errorReportValveClass="org.apache.catalina.valves.ErrorReportValve" debug="9" deployXML="true" contextClass="org.apache.catalina.core.StandardContext" unpackWARs="true" name="localhost">
            <Context className="org.apache.catalina.core.StandardContext" crossContext="false" reloadable="false" mapperClass="org.apache.catalina.core.StandardContextMapper" useNaming="true" debug="0" swallowOutput="false" privileged="false" displayName="Welcome to Tomcat" wrapperClass="org.apache.catalina.core.StandardWrapper" docBase="/usr/tomcat4.1.24/webapps/ROOT" cookies="true" path="" cachingAllowed="true" charsetMapperClass="org.apache.catalina.util.CharsetMapper">
              <Environment name="uploadUrl" override="true" type="java.lang.String" description="URL to display uploaded file in Benefit Server" value="http://www.benefitserver.com:8081/bsup"/>
              <Environment name="exportPath" override="true" type="java.lang.String" description="Export Path for Benefit Server Export Utility" value="/usr/tomcat4.1.24/webapps/ROOT/bsex"/>
              <Environment name="uploadPath" override="true" type="java.lang.String" description="Upload Path for Benefit Server" value="/usr/tomcat4.1.24/webapps/ROOT/bsup/"/>
              <Environment name="tempPath" override="true" type="java.lang.String" description="Temporary Directory for File Upload in Benefit Server - Developm" value="/usr/home/summimps/tmp/benefitserver"/>
              <Resource name="BS_Data" type="javax.sql.DataSource" scope="Shareable"/>
              <ResourceParams name="BS_Mail">
                <parameter>
                  <name>mail.smtp.host</name>
                  <value>localhost</value>
                </parameter>
              </ResourceParams>
              <ResourceParams name="BS_Data">
                <parameter>
                  <name>url</name>
                  <value>jdbc:mysql://localhost/BS_Data</value>
                </parameter>
                <parameter>
                  <name>password</name>
                  <value>kdsusa1350</value>
                </parameter>
                <parameter>
                  <name>maxActive</name>
                  <value>50</value>
                </parameter>
                <parameter>
                  <name>maxWait</name>
                  <value>5000</value>
                </parameter>
                <parameter>
                  <name>driverClassName</name>
                  <value>com.mysql.jdbc.Driver</value>
                </parameter>
                <parameter>
                  <name>username</name>
                  <value>summimps</value>
                </parameter>
                <parameter>
                  <name>maxIdle</name>
                  <value>5</value>
                </parameter>
              </ResourceParams>
            </Context>
            <Logger className="org.apache.catalina.logger.FileLogger" debug="0" verbosity="1" prefix="localhost_log." directory="logs" timestamp="true" suffix=".txt"/>
          </Host>
          <Logger className="org.apache.catalina.logger.FileLogger" debug="0" verbosity="1" prefix="catalina_log." directory="logs" timestamp="true" suffix=".txt"/>
          <Realm className="org.apache.catalina.realm.UserDatabaseRealm" debug="0" resourceName="UserDatabase" validate="true"/>
        </Engine>
      </Service>
    </Server>
    * web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
           <servlet>
                 <servlet-name>FDFServlet</servlet-name>
                 <servlet-class>FDFServlet</servlet-class>
           </servlet>
           <servlet-mapping>
                <servlet-name>FDFServlet</servlet-name>
                <url-pattern>/FDFServlet</url-pattern>
           </servlet-mapping>
    </web-app>

  • 404 File not found error in jdeveloper

    Hi all,
    I developed a jsp page in jdeveloper and I added all the required files. The page was compiled successfully. But when i ran the page it shows 404 File Not Found Error. web.xml is not added to my project. Can anyone help me
    Regards,
    Kannan

    web.xml is not added to my project
    web.xml gets created when a JSP page is created. Has the web.xml been deleted or was the JSP created not in JDeveloper? Is the JSP in the public_html directory?

  • Can't Download from iTunes Store - "Requested Resource Not Found" Error

    I am trying to download a couple of (free) apps for my iPhone and iTunes is throwing up an error saying "The requested resource was not found. There was an error in the iTunes Store. Please try again later." Is anyone else having this issue at the moment? Is the store down?

    It has been a few hours now. Same problem. "Resource Not Found" error when trying to download apps from the iTunes store. Anyone else having this problem? Anyone NOT having this problem? Anyone?

  • Apache plug-in prob : when trying to access '/weblogic/' URL , "404 : file not found" error is shown

    On : Apache 2.0 , Weblogic 7.0, Win 2000
    I installed the Apache plug-in for as described in WL docs, but when I try to
    access a URL /weblogic/ ( supposed to be configured automatically ) on apache,
    I get '404 : file not found' error.
    As per the docs, I did following config in Apache:
    1. Copied the 'mod_wl_20.so' file found in WLHOME\server\bin directory to the
    APACHE_HOME\modules directory
    2. Added to httpd.conf :
    LoadModule weblogic_module modules/mod_wl_20.so
    3. Apache httpd.conf syntax correct : checked by running ' APACHE_HOME\bin\Apache
    -t '
    4. Restarted WL & Apache.
    Now, the weblogic documentation says,
    "Test the Apache plug-in by opening a browser and setting the URL to the Apache
    Server + "/weblogic/", which should bring up the default WebLogic Server HTML
    page, welcome file, or default servlet, as defined for the default Web Application
    on WebLogic Server. For example:
    http://myApacheserver.com/weblogic/".
    For my server, 'http://localhost/weblogic/' - I get a "404 : file not found" error.
    What other configuration is needed ? Do I have to specify '/weblogic/' name anywhere
    else in Apache configuration file ?
    Any pointers will be appreciated.
    Thanks,
    S

    Forgot to mention , I've also added following configuration in httpd.conf :
    LoadModule weblogic_module modules\mod_wl_20.so
    <IfModule mod_weblogic.c>
    WebLogicHost localhost
    WebLogicPort 7501
    </IfModule>
    <Location /weblogic>
    SetHandler weblogic-handler
    PathTrim /weblogic
    </Location>
    "S" <[email protected]> wrote:
    >
    On : Apache 2.0 , Weblogic 7.0, Win 2000
    I installed the Apache plug-in for as described in WL docs, but when
    I try to
    access a URL /weblogic/ ( supposed to be configured automatically ) on
    apache,
    I get '404 : file not found' error.
    As per the docs, I did following config in Apache:
    1. Copied the 'mod_wl_20.so' file found in WLHOME\server\bin directory
    to the
    APACHE_HOME\modules directory
    2. Added to httpd.conf :
    LoadModule weblogic_module modules/mod_wl_20.so
    3. Apache httpd.conf syntax correct : checked by running ' APACHE_HOME\bin\Apache
    -t '
    4. Restarted WL & Apache.
    Now, the weblogic documentation says,
    "Test the Apache plug-in by opening a browser and setting the URL to
    the Apache
    Server + "/weblogic/", which should bring up the default WebLogic Server
    HTML
    page, welcome file, or default servlet, as defined for the default Web
    Application
    on WebLogic Server. For example:
    http://myApacheserver.com/weblogic/".
    For my server, 'http://localhost/weblogic/' - I get a "404 : file not
    found" error.
    What other configuration is needed ? Do I have to specify '/weblogic/'
    name anywhere
    else in Apache configuration file ?
    Any pointers will be appreciated.
    Thanks,
    S

  • Integration Directory : getting 404 Page not found error while accessing In

    Hello,
    When i am trying to open the Interation Directory, it is showing me 404 Page not found Error.
    Some Description
    - Executing sxmb_ifr,
    - From http://erpsys07:50300/rep/start/index.jsp,i am getting mentioned error when i am trying to access Integration Directory from URL.
    erpsys07 -> Central SLD -> J2ee Port - 50100
    erpsys07 -> PI system -> J2ee Port - 50300
    When i am clicking on integration directory link, it is pointing to Central SLD J2ee Port (50100) instead of 50300, it is pointing to
    http://erpsys07:50100/dir/start/sso/Directory.jsp instead of http://erpsys0750300/dir/start/sso/Directory.jsp.
    Could some help me where to change and what to change?
    Thanks,
    V.SINGH

    Have you checked port in Netweaver Administration?
    See which port is mentioned there. (If you are using PI 7.1)
    Check in SXMB_ADM transaction, and in your RFC Destination, where it is pointing.
    Thanks,
    Hetal
    Edited by: hetal shah on Nov 24, 2009 4:49 PM

  • HTTP 404 page not found error !! on tabs

    Hello All,
    I am having a page with multiple tabs . When the user navigates from one tab to another tab ( using standard tab set ) from interactive report I am getting the HTTP 404 page not found error .
    The tabs are in the following fashion.
    home page#1
    varlist page#2
    criteria page#7
    dynamic report page#10
    interactive report page#15
    I can move forward by selecting the tabs but when i am in interactive report tab and select any of the other tabs i am getting HTTP 404 page not found error..
    Can any one help me .
    thanks/kumar
    Edited by: kumar73 on May 5, 2010 2:45 PM
    Edited by: kumar73 on May 5, 2010 2:46 PM

    Hello Jarola / All,
    Selected Pseudo Parent Tab: TS1
    Select Standard Tabs: DBTable, variables , condition , Report , interactive report.
    When I am navigating from tab interactive report to any other tab the url is chaning to
    http://cosmo:8080/apex/wwv_flow.accept - resulting in HTTP 404 page not found error ..
    but when navigating with in the following tabs
    DBTable page#1
    variables page#2
    condition page#7
    report page#10
    I am having different url like example -
    http://cosmo:8080/apex/f?p=125:7:1075354762414252::NO
    Can any one tell me why i am unable to navigate from interactive tab to other tabs ..
    ================================
    I uploaded the applicatoin in oracle.apex.com
    http://apex.oracle.com/pls/apex/f?p=29558:1:3623891857047276:::::
    please find the link above .
    ===================
    The database tables are huge and inorder for me to replicate at oracl.apex.com I got to load the full schema which is not possible . May be you can go through the code to understand whats going wrong.
    thanks/kumar
    Edited by: kumar73 on May 6, 2010 6:46 AM
    Edited by: kumar73 on May 6, 2010 1:00 PM
    Edited by: kumar73 on May 6, 2010 1:01 PM
    Edited by: kumar73 on May 6, 2010 1:04 PM
    Edited by: kumar73 on May 6, 2010 2:46 PM

  • 404 page not found error after upgrade to 4.0 from 3.x

    We developed this application in 1.6 and a couple years ago upgraded to 3.2. We've just upgraded the Production version to 4.0.0 (that's what was on the Dev box). I understand that the template we used when developing it is now obsolete and I added some stuff to make it work properly (found tips here). In Dev it seemed to work correctly but now that it's in production we're getting a 404 Page not found error which "seems" to only occur after a search returns some results and you change the search criteria and try to rerun the search with this modified criteria without first leaving that page (if you click to a different tab and back before changing the search criteria you don't get the error). It doesn't matter which criteria field you change (date, text, LOV) the error comes up consistently. The criteria is submitted via a button (Go request). It's a PL/SQL function body returning SQL query. The only processes that are run is a Reset Pagination on the Go request.
    Is there some quick setting that can be changed that causes this? Or something in 4.0 that is different that I need to change when submitting a page, etc... I can't see anything in the debug & all the variables do have appropriate values.

    A column in the search results was changed to a Simple Checkbox when we upgraded to 4.0 (it has always been a checkbox in the older APEX versions). When I put it back to Standard Report Column I no longer get the page not found error.
    Is there some additional/different setting I need to do in order to use the simple checkbox option in a search results set?
    ETA: I see now that Checkboxes are not intended to work in standard report regions so I'll change them to LOVs or something and my problem should be solved.
    Edited by: mimi_jones on Jul 18, 2011 6:16 AM

  • 404 (Page Not Found) Error! Changes not Appearing on webpage

    Made changes in IWeb. However, these changes are not showing up on safari AND I am receiving a 404 (Page Not Found) Error! Help!! I have tried everything to resolve this

    Where do you publish your site and how do you upload the files?
    What is the URL of your site?

  • I'm getting a message "404 (page not found error)" I think I entered an incorrect URL into my browser's address bar. How do I fix that?

    I was trying to post a comment on a support group site. I was asked what web address I was using, or something along those lines. In hindsight, I stupidly typed a '?' and pressed send. Now, when I try to access that site I get the message "404 (page not found error)
    If you're the site owner, one of two things happened:
    1. 1) You entered an incorrect URL into your browser's address bar, or
    2. 2) You haven't uploaded content."
    How can I fix this.

    I spoke with a Dell technician about this problem. He tried to access the site in question from his computer, i.e. separate from my computer, and he also got the same "404 (page not found error)". He said the problem lies with the site itself, not my computer, and that I should notify the site. Problem is I can't notify the site if I can't access it.

  • HTTP 404- File not found error xMII 11.5 SR3 install on Win XP Prof

    Hello Everyone,
    I have tried installing xMII 11.5sr03 on Windows XP Professional 2002 sr2.
    The installation of IIS5.1 along with scripts virtual directory was successful.
    And so was the installation on xMII.
    However when i open the SAP xMII Menu (http://localhost/Lighthammer/Menu.jsp )
    or Security menu (http://localhost/LHSecurity/admin/). It shows the HTTP 404- File not found error.
    IIS help and localhost homepage http://localhost/localstart.asp is working fine.
    The License has also been copied to the Lighthammer license directory.
    Can anybody tell me where/how to look for a solution ?
    Warm Regards,
    Amol

    Hi Ryan,
    Its a fresh install and as mentioned in the guide i started with sr01 ,sr02 and
    sr03. Since these were the only 3 files available for download from service marketplace for xMII 11.5.
    I don't think there is a base 11.5 install available after which i go about installing the sr01 ,02 and 03 respectively.
    Please let me know if there is any and where to get it from...
    Thanks for your suggestions.
    Warm Regards,
    Amol

  • Application returns a "404 Page not found" error

    Application returns a "404 Page not found" error when attempting to use any of the Download links. What is the exact problem?
    Can anybody tell me how to resolve this problem?
    David

    http://nnnnnn.nnn.nnnnn:99/pls/apex/f?p=88:52:2181500142828824:FLOW_EXCEL_OUTPUT_R35183980327530985_en-us
    It looks like this.
    Thank you.
    David
    Edited by: user628655 on Sep 30, 2009 6:37 PM

  • HTTP 404 page not found error

    Hi all,
    I am getting HTTP 404 Page not found error when I try to run the test_fwktutorial.jsp. I have followed the instructions of a similar thread but none have helped.
    Kindly suggest me some solution to this problem.
    Thanks,
    Priya

    I did a simple search for 404 in the forum and got at least 10 threads, I think this thread is relevant to you, please try the solution suggested in the thread
    HTTP 404 Not Found error in JDeveloper 10.1.3.3.0 for Oracle Apps R12
    "Hi,
    Problem I faced:
    When I try to run, test_fwktutorial.jsp in JDev 10.1.3.3.0 for Oracle Apps R12, I was getting the first page with the links, but when i click on any of the links, say "Hello World", I am getting a "HTTP 404 Not Found". Same error I got by directly running any of the tutorial pages, or any custom pages. CHecked all the normal setting options like: responsibility key, username/pwds etc.
    Then I noticed in my address bar an error text:"You have insufficient privileges for the current operation".
    Solution I arrived at:
    In one of the forums, I had come across the point that maybe my local machine and Application server were on different domains, due to which I was getting "You have insufficient privileges for the current operation".
    1. Hence I checked for the domain on which my local machine was in:
    My Computer -> Properties -> Computer Name.
    2. There it was showing WORKGROUP instead of Domain.
    3. Here I clicked on the Change button and entered mycompany domain on which the server was like <companyidentier1>.<companyidentier2>.com
    I had to do this even though the machine i was using was connected to the domain using a VPN connection.
    4. Then after restarting my machine, I changed the Embedded OC4J Server Preferences to Default Local IP Address. And when i ran my page, it worked!!
    Before when I had not changed the domain of my local machine to the Apps Server domain, simply changing the Embedded OC4J Server Preferences to Default Local IP Address (as suggested in some forums), still gave me the same error.
    Hope this helps others facing similar problems.
    Thanks
    "

Maybe you are looking for

  • Notes at the Item level is not getting Copied

    Hi All, When a quotation is copied by clicking on the "Copy" button, the new quotation has all the Notes copied at the header level. But all the Notes maintained at the Item level dosent get copied. The Copy control has been maintained between the It

  • Unable to restore to 10.6.8 after upgrade to Lion

    After my troubles upgrading to Lion (see Cannot login after Lion Update), I decided to try a restore to 10.6.8 on my TimeMachine. I inserted the 10.6 upgrade DVD, booted off of it, and restored to a TM backup dated before I even purchased / downloade

  • Chromium freezes while typing in the omnibar

    KDE base runtime 4.8.0-1 Chromium 17.0.963.46-1 AdBlock Plus 1.2 If multiple tabs are open, typing into the omni-bar will sometimes cause chromium to freeze after a few keystrokes. Removing the ~/.config/chromium directory, thereby resetting the prof

  • Reccomendation for NAS

    Hi, not sure this is the right forum, but the closest I could find. I'm looking to get a NAS for for file sharing and (non-Time Machine) backup for Macs running OSX 10.9.4. Could I get some recommendations, has anyone had particularly good or bad exp

  • DateFormat for updating the metadata field through RIDC

    Could you please tell me what will be the valid date time format for updating metadata field value through RIDC.? I am using ADF technology to connect with webcenter UCM and using all services to check-in,update, search generic screens using UCM serv