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?

Similar Messages

  • 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

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

  • 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

  • Most search engines are not working, only Google Search works and I get 404 file not found error when clicking the links.

    I have been trying virus killers, malware software from microsoft, I uninstalled Firefox and reinstalled it, I used the option to change all my options to the basic default installed options, I am able to search without problems using Internet Explorer on all search engines, Google Search engine works in firefox browser; but all the links give the 404 file not found error. Links from my Gmail account do not work either...giving me the 404 error. Firefox is much faster than Internet explorer however, this link problem makes me wonder if firefox is really any good.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • 404 File Not Found Errors - SP 2013

    Recently, user profile pictures have stopped displaying and when clicking on them, it brings us to a 404 file not found error. When I try to edit my personal mysite, I can get to the home page of it but when I click edit profile or anything else, it brings
    me again to the 404 file not found error. 
    I have a MySites web appication with a site collection created at the root of it right now. 
    Any help would be appreciated.

    The user profile sync service is also stuck on "starting"...
    When I try to start FIMSS and FIMS on windows services I get this error.
    The error from the event viewer states this, "The Forefront Identity Manager Synchronization Service terminated with service-specific error %%-2146234334.
    The user profiles kind of started malfunctioning when I believe I switched some managed accounts under security >configure service accounts 
    Your problem is the managed accounts.
    SharePoint is not very strong in managing managed accounts.  Have a look at your application pools and verify they are all running. If they are not running, verify that the identities are correct. (User name /Password)
    Do the same thing with the FIM services in Windows Services and verify that the identities are correct.
    In shorty, you need to verify the passwords of all your service accounts(those that are managed) and verify that all services are running.

  • 404 File Not Found error following 1.0.2.2.1 migration

    I am on RDBMS 8.1.7.1.1 on Windows NT 2000 Server.
    I attempted to migrate from 9iAS 1.0.2.1 Portal 3.0.8 to 9iAS
    1.0.2.2.1 Portal 3.0.8.
    There were not any errors in the migration logs.
    When I attempt to test the Apache/Jserv the 'Is It Working'
    appears. When I attempt to test the mod_plsql I can get to the
    login/password screen and into the gateway administration but
    when I click the home link I receive the Http: 404 File Not
    Found.
    The mod_jserv logs:
    [01/12/2001 18:58:08:410] (ERROR) ajp12: Servlet Error:
    NoClassDefFoundError: oracle.webdb.page.ParallelServlet
    In the portal_home/apache/jserv/servlets/zone.promperties file:
    servlet.page.code=oracle.webdb.page.ParallelServlet
    Here are my upgrade steps:
    From Rdbms 8.1.7 to Rdbms 8.1.7.1.1
    From 9iAS 1.0.2.1 to 9iAS 1.0.2.2.1
    From Portal 3.0.8 to Portal 3.0.9
    1)     Rdbms 8.1.7
    2)     Set systemtrig_enable=FALSE in init.ora
    3)     Install patchset 1711240 for 8.1.7.1.1
    4)     Execute $oracle_home/rdbms/admin/catalog.sql &
    catproc.sql scripts
    5)     Set systemtrig_enable=TRUE in init.ora
    6)     Execute the 9iAS 1.0.2.2.1 installation. An upgrade will
    take place.
    7)     Stop the Apache HTTP Service
    8)     In referencing the 9iAS Migration Guide A90222-01
    Section 5.2 Common Configuration Files:
    Edit the $portal30_home/apache/jserv/conf/jserv.properties so
    that it
    Contains one occurrence of the following lines:
    # Oracle Portal
    wrapper.classpath=E:\portal30\portal30\bibeans\jewt-opt-4_1_2.zip
    wrapper.classpath=E:\portal30\portal30\bibeans\share-opt-
    1_1_7.zip
    wrapper.classpath=E:\portal30\portal30\bibeans\utility.jar
    wrapper.classpath=E:\portal30\portal30\bibeans\utilitygui.jar
    wrapper.classpath=E:\portal30\portal30\bibeans\utilitypersist.jar
    wrapper.classpath=E:\portal30\portal30\bibeans\utilityxml.jar
    wrapper.classpath=E:\portal30\portal30\bibeans\swingall.jar
    wrapper.classpath=E:\portal30\portal30\bibeans\graph.jar
    wrapper.classpath=E:\portal30\portal30\bibeans\graphgui.jar
    wrapper.classpath=E:\portal30\portal30\bibeans\LW_PfjBean.jar
    wrapper.classpath=E:\portal30\portal30\bibeans\bivisbeans.jar
    wrapper.classpath=E:\portal30\lib\http_client.jar
    wrapper.classpath=E:\portal30\jlib\javax-ssl-1_2.jar
    wrapper.classpath=E:\portal30\jlib\jssl-1_2.jar
    wrapper.env=WV_GATEWAY_CFG=E:\portal30
    \Apache\modplsql\cfg\wdbsvr.app
    9)     In referencing the 9iAS Migration Guide A90222-01
    Section 5.2 Common Configuration Files:
    Edit the $portal30_home/apache/jserv/conf/jserv.properties so
    that it
    Contains one occurrence of the following lines:
    # Oracle BC4J
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\ordim817.zip
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\ordvir817.zip
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\ordhttp.zip
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\jndi.jar
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\jbomt.zip
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\javax_ejb.zip
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\jdev-rt.zip
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\jbohtml.zip
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\jboremote.zip
    wrapper.classpath=E:\portal30
    \Apache\BC4J\lib\connectionmanager.zip
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\jbodomorcl.zip
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\jboimdomains.zip
    wrapper.classpath=E:\portal30\Apache\BC4J\lib\jboorasql.zip
    wrapper.classpath=E:\portal30
    \Apache\Apache\htdocs\onlineorders_html
    #wrapper.classpath=E:\portal30
    \Apache\Apache\htdocs\OnlineOrders_html\OnlineOrders.jar
    9) In referencing the 9iAS Migration Guide A90222-01
    Section 5.2 Common Configuration Files:
    Edit the $portal30_home/apache/jservlets/zone.properties and
    Remove the following line:
    repositories=E:\portal30\Apache\Jserv\servlets\Parallel.jar
    10) In referencing the 9iAS Migration Guide A90222-01
    Section 5.2 Common Configuration Files:
    Edit the $portal30_home/apache/jservlets/zone.properties and
    Remove duplicates of the following line:
    servlet.page.code=oracle.webdb.page.ParallelServlet
    11)     In referencing the 9iAS 1.0.2.2.1 Release Notes A92199-01
    Section 1.5.4.1.4
    Edit the $portal30_home/apache/jservlets/zone.properties and
    Remove duplicates of the following lines:
    repositories=E:\portal30\Apache\Jserv\servlets\Parallel.jar
    (this line is actually removed completed per step 9)
    repositories=E:\portal30\Apache\Jserv\servlets\ChartServlet.jar
    repositories=E:\portal30\Apache\Jserv\servlets\AppLoader.jar
    servlet.chart.code=oracle.webdb.chart.ChartServlet
    servlet.apploader.code=oracle.webdb.apploader.AppLoaderServlet
    servlet.ojsp.code=oracle.jsp.JspServlet
    servlet.ojsp.initArgs=alias_translation=false
    12)     In referencing the 9iAS 1.0.2.2.1 Release Notes A92199-01
    Section 1.5.1.36
    Edit the $portal30_home/apache/jserv/conf/jserv.config
    Insert:
    # PTG 1.1.1 Begin
    ApJservGroupMount /ptg balance://group1/root
    # PTG 1.1.1 End
    13)     In referencing the 9iAS 1.0.2.2.1 Release Notes A92199-01
    Section 1.5.2.9
    Edit the $portal30_home/apache/apache/conf/httpd.config
    Add the following directive:
    Alias /soapdocs/ &#8220;c:/portal30/soap/&#8221;
    14) Start the Apache HTTP service

    In the web.xml you mapped the HelloServlet to the
    /sampleapp url so you should call the servlet with the
    url:
    http://localhost:8080/<webapp>/sampleapp
    The directory structure of sampleapp is as follows,
    e:\sampleapp\WEB-INF\classes\
    WEB-INF\lib
    WEB-INF\sourcefiles
    WEB-INF\web.xml
    I dont have a webapp folder in my directory at all.
    <servlet-mapping>
    <servlet-name>HelloServlet</servlet-name>
    <url-pattern>/sampleapp</url-pattern>
    </servlet-mapping>As the below lines would suggest

  • 404 File not found error using IE

    I am getting the error message "HTTP 404 - File not found" when I attempt to call a servlet from an HTML page generated from a JSP. I get this error only in IE and not in Netscape. When I type the url for my servlet directly into IE, it works.
    The url of the JSP page is http://www.mysite.com/mywebapp/mydir/myJavaServerPage.jsp
    The url of the servlet is http://www.mysite.com/mywebapp/servlet/myServletClassFile
    After the jsp page is successfully delivered to the IE web browser, mousing over the button that provides a link to the servlet results in the full and correct url of my servlet in the bar at the bottom of IE. When I click on the button that links to my servlet, IE displays the following in url bar at the top of IE and returns the 404 error message:
    http://www.mysite.com/mywebapp/mydir/(Empty%20Reference!)x=11&y=23
    I am using Tomcat 3.3
    Thanks in advance,
    John

    The problem was due to HTML that worked with Netscape and not with IE.

  • How can i Track or Read "404 File Not Found" errors that appear in the firebug console?

    Currently i'm able to capture the javascript errors using window.onerror callback. But with this callback i'm unable to capture the "File Not Found" errors. Could you let me know if there are any possible ways to track this kind of errors?

    I don't know the answer to that. You will probably have better luck asking on the Firebug website:
    *Firebug documentation - http://getfirebug.com/wiki/index.php/Main_Page
    *Firebug community - http://getfirebug.com/community
    Or try asking on the Firebug IRC channel - [https://www.mibbit.com/?server=irc.mozilla.org&channel=%23firebug #firebug on irc.mozilla.org]

  • File Not Found Error on Fresh MX7 Installation

    After spending days getting CFMX 7.0.2 installed on a CentOS5.3 (production) server running Apache 2.2.3 and WHM/cPanel 11, by religiously following Bill Mitchell's lifesaving guide, CF is up and running but I cannot access the administrator or anything else in user public_html directories.
    If I place a simple foo bar test file in the /usr/local/apache/htdocs/testfile.cfm directory, I can call it at http://[IPaddress]/testfile.cfm and it parses properly.
    However, if I place the same file at /home/cfusion/public_html/testfile.cfm and call it at http://[IPaddress]/~cfusion/testfile.cfm, I get a CF-generated 404 "File Not Found" error.
    cfusion is a cPanel account I created via WHM prior to installing ColdFusion as a repository for my CFIDE directory.
    If I place a symlink for /usr/local/apache/htdocs/CFIDE -> /home/cfusion/public_html/CFIDE:"File Not Found". If I cp -R my CFIDE into htdocs: "File Not Found." These files are physically there. I can easily verify that of course. But CF is still saying File Not Found. In fact, if I disconnect Apache - JRun, Apache finds the files all by itself no problem. They are definitely there.
    I thought this might be a permissions issue, but all my .cfm files are nobody:root 775.
    Here's what I'm seeing in the exception.log:
    coldfusion.runtime.TemplateNotFoundException: File not found: /~cfusion/filetest.cfm
        at coldfusion.filter.PathFilter.invoke(PathFilter.java:83)
        at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
        at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
        at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
        at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
        at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
        at coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:115)
        at coldfusion.CfmServlet.service(CfmServlet.java:107)
        at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
        at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
        at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
        at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
        at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
        at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
        at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
        at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
        at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
        at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    I guess maybe I need to know where the config for webroots is set from the CF/JRun perspective? I'm a decent hand with web server admin stuff, but despite being a CF dev for 10 years, CF admin stuff is still a bit over my head. Any help would be GREATLY appreciated. I'm at my wit's end!

    Thanks Mack. I set verbose to true in my httpd.conf, restarted Apache, restarted CF, but I can't see any difference in the logging. Errors seem the same, and no additional info.
    The Apache error_log file is filled with cryptic stuff that looks like it's referencing JRun. Does any of this mean anything to you? Is there another log file I should be looking at?
    [Thu Aug 06 00:06:52 2009] [notice] jrApache[8608: 15070]  filtering / (/usr/local/apache/htdocs/) HOST=null
    [Thu Aug 06 00:06:52 2009] [notice] jrApache[8608: 15070]  filterRequest:   no match
    [Thu Aug 06 00:06:52 2009] [notice] jrApache[8608: 15070]  jrun_trans: sub-request so DECLINED
    [Thu Aug 06 00:06:52 2009] [notice] jrApache[8608: 15070]  jrun_trans: sub-request so DECLINED
    [Thu Aug 06 00:06:52 2009] [notice] jrApache[8608: 15070]  jrun_trans: sub-request so DECLINED
    [Thu Aug 06 00:06:52 2009] [notice] jrApache[8608: 15070]  jrun_service: r is 0x9d1aa98, server is 0x99df290, virtual 1
    [Thu Aug 06 00:06:52 2009] [notice] jrApache[8608: 15070]  jrun_service: no handler, return DECLINED
    [Thu Aug 06 01:10:01 2009] [notice] jrApache[8548: 18910]  jrun_trans: r is 0x9d169d8, server is 0x99df290, virtual 1
    [Thu Aug 06 01:10:01 2009] [notice] jrApache[8548: 18910]     HOST: <null>
    [Thu Aug 06 01:10:01 2009] [notice] jrApache[8548: 18910]  filtering /whm-server-status (/usr/local/apache/htdocs/whm-server-status) HOST=null
    [Thu Aug 06 01:10:01 2009] [notice] jrApache[8548: 18910]  filterRequest:   no match
    [Thu Aug 06 00:11:53 2009] [notice] jrApache[8518: 55474]  jrun_trans: r is 0x9e5b930, server is 0x99df290, virtual 1
    [Thu Aug 06 00:11:53 2009] [notice] jrApache[8518: 55474]     HOST: <null>
    [Thu Aug 06 00:11:53 2009] [notice] jrApache[8518: 55474]  filtering / (/usr/local/apache/htdocs/) HOST=null
    [Thu Aug 06 00:11:53 2009] [notice] jrApache[8518: 55474]  filterRequest:   no match
    [Thu Aug 06 00:11:53 2009] [notice] jrApache[8518: 55474]  jrun_trans: sub-request so DECLINED
    [Thu Aug 06 00:11:53 2009] [notice] jrApache[8518: 55474]  jrun_trans: sub-request so DECLINED
    [Thu Aug 06 00:11:53 2009] [notice] jrApache[8518: 55474]  jrun_trans: sub-request so DECLINED
    [Thu Aug 06 00:11:53 2009] [notice] jrApache[8518: 55474]  jrun_service: r is 0x9e5b930, server is 0x99df290, virtual 1
    [Thu Aug 06 00:11:53 2009] [notice] jrApache[8518: 55474]  jrun_service: no handler, return DECLINED
    [Thu Aug 06 00:15:01 2009] [notice] jrApache[8519: 59314]  jrun_trans: r is 0x9f96cc8, server is 0x99df290, virtual 1
    [Thu Aug 06 00:15:01 2009] [notice] jrApache[8519: 59314]     HOST: <null>
    [Thu Aug 06 00:15:01 2009] [notice] jrApache[8519: 59314]  filtering /whm-server-status (/usr/local/apache/htdocs/whm-server-status) HOST=null
    [Thu Aug 06 00:15:01 2009] [notice] jrApache[8519: 59314]  filterRequest:   no match

  • PDF preview not working in ITS after patch31 - HTTP 404 file not found

    Hi Friends,
    We installed Patch 31 on ITS 620.
    Previousl patch level was 17.
    The functionality to show pdf preview using FM 'SSFCOMP_PDF_PREVIEW' is not working.(Which is working fine when viewed from SAP GUI)
    We are getting 'HTTP 404 - File Not Found' error.
    What could be the reason?
    Any help on this is highly appreciated.
    Thanks,
    Simha
    Edited by: Simha on Oct 30, 2008 3:03 AM

    problem not resolved and we reverted back to older patch.
    Closing this thread

  • Error in amconsole - Error 404: File not found: sunportal/dtadmin/DesktopAd

    When I log into amconsole and try to view the Service Configuration of the desktop I get the following
    error - Error 404: File not found: sunportal/dtadmin/DesktopAdminService
    I looked into the setup.log, but I didn't find any error during
    installation.
    So what can be wrong with my Sun One Portal

    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?

  • File not found error (404) from web browser

    I installed 901 DB on different Oracle home and iAS 1.0.2.2 in a
    different Oracle home. The ifsconfig went thru fine.
    However I am unable to access the login page ( I executed
    ifsapachesetup ). I tried to access
    http://<machine>:<port>/servlet/files.
    I see the following error in Jserv.log
    ajp12: Servlet Error: NoClassDefFoundError:
    oracle.ifs.protocols.dav.impl.IfsDavServlet
    On the browser I get File not found error ( HTTP 404 )
    Do I need to perform additional steps on Solaris machine ( apart
    from executing apache setup script ).
    Please help me.

    Make sure you have started all the services:
    - ifsjservctl -start
    - ifslaunchdc
    - ifslaunchnode
    - ifsstartdomain
    all are in the iFS bin directory.
    Keith

  • Error when open the Import window (404: File Not Found)

    HI everyone,
    I have upgraded OIM 9.1.0.1 to 9.1.0.2
    The application runs OK, but when I click in "Deployment Managerment -> Import", the App gets an error:
    "404: File Not Found
    File Not Found: /xlWebApp/dm/dmImportViewer.jsp"
    And the log gets this error:
    [12/14/09 19:21:31:371 BRST] 00000037 SystemOut O 19:21:31ERROR [WebContainer : 2] - ExceptionHandler.createTimeoutDialog: context path = /xlWebApp
    java.lang.NullPointerException
         at com.nexaweb.server.exceptions.ExceptionHandler.createDialog(ExceptionHandler.java:423)
         at com.nexaweb.server.exceptions.ExceptionHandler.createErrorDialogs(ExceptionHandler.java:403)
         at com.nexaweb.server.NexawebServer.doService(NexawebServer.java:378)
         at com.nexaweb.server.NexawebServer.doGet(NexawebServer.java:335)
         at com.nexaweb.server.admin.ServerAdmin.callNexawebServer(ServerAdmin.java:378)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at com.nexaweb.loader.xMethodInvoker.runInThread(xMethodInvoker.java:69)
         at com.nexaweb.server.api.admin.ServerAdminProxy.callNexawebServer(ServerAdminProxy.java:551)
         at com.nexaweb.redirect.RedirectServlet.doGet(RedirectServlet.java:18)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:907)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:696)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:641)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:475)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
         at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)
    [12/14/09 19:21:31:371 BRST] 00000037 SystemOut O ERROR,14 Dec 2009 19:21:31,357,[com.nexaweb.server.exceptions.ExceptionHandler],ExceptionHandler.createTimeoutDialog: context path = /xlWebApp
    java.lang.NullPointerException
         at com.nexaweb.server.exceptions.ExceptionHandler.createDialog(ExceptionHandler.java:423)
         at com.nexaweb.server.exceptions.ExceptionHandler.createErrorDialogs(ExceptionHandler.java:403)
         at com.nexaweb.server.NexawebServer.doService(NexawebServer.java:378)
         at com.nexaweb.server.NexawebServer.doGet(NexawebServer.java:335)
         at com.nexaweb.server.admin.ServerAdmin.callNexawebServer(ServerAdmin.java:378)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at com.nexaweb.loader.xMethodInvoker.runInThread(xMethodInvoker.java:69)
         at com.nexaweb.server.api.admin.ServerAdminProxy.callNexawebServer(ServerAdminProxy.java:551)
         at com.nexaweb.redirect.RedirectServlet.doGet(RedirectServlet.java:18)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:907)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:696)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:641)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:475)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
         at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)
    [12/14/09 19:21:31:385 BRST] 00000037 SystemOut O 19:21:31ERROR [WebContainer : 2] - ExceptionHandler.createTimeoutDialog: context path = /xlWebApp
    java.lang.NullPointerException
         at com.nexaweb.server.exceptions.ExceptionHandler.createDialog(ExceptionHandler.java:423)
         at com.nexaweb.server.exceptions.ExceptionHandler.createErrorDialogs(ExceptionHandler.java:405)
         at com.nexaweb.server.NexawebServer.doService(NexawebServer.java:378)
         at com.nexaweb.server.NexawebServer.doGet(NexawebServer.java:335)
         at com.nexaweb.server.admin.ServerAdmin.callNexawebServer(ServerAdmin.java:378)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at com.nexaweb.loader.xMethodInvoker.runInThread(xMethodInvoker.java:69)
         at com.nexaweb.server.api.admin.ServerAdminProxy.callNexawebServer(ServerAdminProxy.java:551)
         at com.nexaweb.redirect.RedirectServlet.doGet(RedirectServlet.java:18)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:907)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:696)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:641)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:475)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
         at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)
    [12/14/09 19:21:31:385 BRST] 00000037 SystemOut O ERROR,14 Dec 2009 19:21:31,371,[com.nexaweb.server.exceptions.ExceptionHandler],ExceptionHandler.createTimeoutDialog: context path = /xlWebApp
    java.lang.NullPointerException
         at com.nexaweb.server.exceptions.ExceptionHandler.createDialog(ExceptionHandler.java:423)
         at com.nexaweb.server.exceptions.ExceptionHandler.createErrorDialogs(ExceptionHandler.java:405)
         at com.nexaweb.server.NexawebServer.doService(NexawebServer.java:378)
         at com.nexaweb.server.NexawebServer.doGet(NexawebServer.java:335)
         at com.nexaweb.server.admin.ServerAdmin.callNexawebServer(ServerAdmin.java:378)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at com.nexaweb.loader.xMethodInvoker.runInThread(xMethodInvoker.java:69)
         at com.nexaweb.server.api.admin.ServerAdminProxy.callNexawebServer(ServerAdminProxy.java:551)
         at com.nexaweb.redirect.RedirectServlet.doGet(RedirectServlet.java:18)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:907)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:696)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:641)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:475)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
         at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)
    [12/14/09 19:21:31:386 BRST] 00000037 SystemOut O 19:21:31 WARN [WebContainer : 2] - SessionManager._createAppContextByAppName: Servlet Context is NULL for app:/xlWebApp/dm/dmImportViewer.jsp
    [12/14/09 19:21:31:386 BRST] 00000037 SystemOut O WARN,14 Dec 2009 19:21:31,386,[com.nexaweb.server.session.SessionManager],SessionManager._createAppContextByAppName: Servlet Context is NULL for app:/xlWebApp/dm/dmImportViewer.jsp
    [12/14/09 19:21:31:386 BRST] 00000037 SystemOut O 19:21:31 WARN [WebContainer : 2] - SessionManager.createAppContextUsingAppName: FAILED to create application context for appname:/xlWebApp/dm/dmImportViewer.jsp, mapped uri:/xlWebApp/dm/dmImportViewer.jsp
    [12/14/09 19:21:31:386 BRST] 00000037 SystemOut O WARN,14 Dec 2009 19:21:31,386,[com.nexaweb.server.session.SessionManager],SessionManager.createAppContextUsingAppName: FAILED to create application context for appname:/xlWebApp/dm/dmImportViewer.jsp, mapped uri:/xlWebApp/dm/dmImportViewer.jsp
    [12/14/09 19:21:31:400 BRST] 00000037 SystemOut O 19:21:31ERROR [WebContainer : 2] - ExceptionHandler.handleException
    com.nexaweb.server.exceptions.ResourceNotFoundException: Application context is NULL for app:/xlWebApp/dm/dmImportViewer.jsp
         at com.nexaweb.server.services.protocol.NexawebProtocolHandler.handleLaunchCommand(NexawebProtocolHandler.java:387)
         at com.nexaweb.server.NexawebServer.getSession(NexawebServer.java:565)
         at com.nexaweb.server.NexawebServer.doService(NexawebServer.java:408)
         at com.nexaweb.server.NexawebServer.doGet(NexawebServer.java:335)
         at com.nexaweb.server.admin.ServerAdmin.callNexawebServer(ServerAdmin.java:378)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at com.nexaweb.loader.xMethodInvoker.runInThread(xMethodInvoker.java:69)
         at com.nexaweb.server.api.admin.ServerAdminProxy.callNexawebServer(ServerAdminProxy.java:551)
         at com.nexaweb.redirect.RedirectServlet.doGet(RedirectServlet.java:18)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:907)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at com.thortech.xl.webclient.security.SecurityFilter.doFilter(Unknown Source)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:696)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:641)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:475)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:274)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
         at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
         at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)
    [12/14/09 19:21:31:400 BRST] 00000037 SystemOut O ERROR,14 Dec 2009 19:21:31,386,[com.nexaweb.server.exceptions.ExceptionHandler],ExceptionHandler.handleException
    com.nexaweb.server.exceptions.ResourceNotFoundException: Application context is NULL for app:/xlWebApp/dm/dmImportViewer.jsp
         at com.nexaweb.server.services.protocol.NexawebProtocolHandler.handleLaunchCommand(NexawebProtocolHandler.java:387)
    How can I resolve it?
    Thanks,
    Ariel

    Have you checked whether Nexaweb is deployed in your App Server or not ?
    If not you'll have redeploy it .
    Which JRE version are you using ?
    http://download.oracle.com/docs/cd/E14899_01/doc.9102/e14764/toc.htm
    5.1.14 Deployment Manager Requires JRE 1.6.0_07 (Bug 5565793)
    An export operation using the Deployment Manager may encounter problems when Microsoft Internet Explorer is configured to use Microsoft Virtual Machine. To reset the default Virtual Machine:
    Edited by: Rajiv Dewan

  • Firefox 7.0 - Can not upload the file from local machine to server...gives "error 404 : file not found"

    firefox 7.0 - Can not upload the file from local machine to server...gives "error 404 : file not found"

    you have not understood my point
    how does this code will run on servlet when I want to upload a file from client's
    machine to server machine
    what I am doing is I am giving an option to the user that he/she can browse the file and then select any file and finally it's action is post in the jsp form for which I have sent the code
    All the computers are connected in LAN
    So how to upload a file from client's machine to server's machine
    Plz give me a solution

Maybe you are looking for

  • How do i use my new ringtone as a text tone?

    I had downloaded two ringtones directly to my phone via Itunes. It was fine and I was using one for Texts that came in and another for when my sister calls me, then I synced my phone and they disappeared. I call Apple and they resent them to me and t

  • Error while importing a .dmp file

    Hi Friends, I have created a DB in Oracle 10g and when i started to import the dump file C:\>imp sys/pwd@sample file=E:\sample\sample.dmp ignore=y I get the following error IMP-00058: ORACLE error 12514 encountered ORA-12514: TNS:listener does not cu

  • Adobe Acrobat Pro 9 (CS5 Suite) -Deployment Silent Install

    Hello! Has anyone managed to get Adobe Acrobat Pro 9.0 for Mac to deploy with any level of reliability through tools such as Apple Remote Desktop?

  • Do Media Services integrate with CDN?

    Just wonder if Media Services are integrated with CDN and how does this integration affect egress bandwidth configured by on-demand streaming reserved units?

  • Probleme neue Festplatte - alte Creative Suite 6 Design & Web Premium

    Ich wollte meine privat genutzte Software Adobe Creative Suite 6 Design & Web Premium neu aufspielen, da sich das Programm Bridge nicht zuverlässig bedienen ließ. Beim Löschen von Creative Suite 6 musste ich feststellen, dass ca. 30 MB des Programmes