WL6.1 : Get '404 : File not found' for all WARs

I had some web applications deployed which were running perfectly. Now suddenly
, I get '404 - File not found' for any URL - including the server root, i.e. http://localhost/
I was able to access admin console using http://localhost/console. I checked the
config of each application & couldn't find anything wrong.
Finally I had to re-deploy the WARs to get some applications running.
However, I am still unable to get the Default Web App running - the one handling
server root path.. (I've checked the server config & it shows DefaultWebApp as
the default application).
Any pointers on what could be wrong / correction needed ?
TIA,
Subodh

Create a subdirectory called 'classes' and copy your servlet class file
          to the 'classes' dir.
          mydomain/applications/
          DefaultWebApp/
          WEB-INF/classes.
          Modify the web.xml file located in the mydomain/applications/
          DefaultWebApp/
          WEB-INF/ directory
          <web-app>
          <servlet>
          <servlet-name>
          myServlet
          </servlet-name>
          <servlet-class>
          package.name.myServlet
          </servlet-class>
          </servlet>
          <servlet-mapping>
          <servlet-name>
          myServlet
          </servlet-name>
          <url-pattern>
          servlet-url-pattern
          </url-pattern>
          </servlet-mapping>
          </web-app>
          Start the default WebLogic Server.
          Call your servlet from a Web browser with the following URL:
          http://localhost:port/servlet-url-pattern
          servlet-url-pattern is the value of the <url-pattern> element that you
          defined in the web.xml file.
          prakash wrote:
          > Hi everybody ,I have this web app on weblogic 7 .The application
          > works file with Tomcat 4.0 but on WebLogic server 7,I am getting
          > 404 not found for all the servlets ,although weblogic is serving
          > the html files without any problems
          

Similar Messages

  • 404 file not found ,for servlets in a web app but not for html files

              Hi everybody ,I have this web app on weblogic 7 .The application
              works file with Tomcat 4.0 but on WebLogic server 7,I am getting
              404 not found for all the servlets ,although weblogic is serving
              the html files without any problems
              

    Create a subdirectory called 'classes' and copy your servlet class file
              to the 'classes' dir.
              mydomain/applications/
              DefaultWebApp/
              WEB-INF/classes.
              Modify the web.xml file located in the mydomain/applications/
              DefaultWebApp/
              WEB-INF/ directory
              <web-app>
              <servlet>
              <servlet-name>
              myServlet
              </servlet-name>
              <servlet-class>
              package.name.myServlet
              </servlet-class>
              </servlet>
              <servlet-mapping>
              <servlet-name>
              myServlet
              </servlet-name>
              <url-pattern>
              servlet-url-pattern
              </url-pattern>
              </servlet-mapping>
              </web-app>
              Start the default WebLogic Server.
              Call your servlet from a Web browser with the following URL:
              http://localhost:port/servlet-url-pattern
              servlet-url-pattern is the value of the <url-pattern> element that you
              defined in the web.xml file.
              prakash wrote:
              > Hi everybody ,I have this web app on weblogic 7 .The application
              > works file with Tomcat 4.0 but on WebLogic server 7,I am getting
              > 404 not found for all the servlets ,although weblogic is serving
              > the html files without any problems
              

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

  • 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

  • Have published iweb site for five years with no problems and just opened a new site and get - 404: Page not found  This error is generated when there was no web page with the name you specified at the web site.-is the problem with iweb or with hosting?  T

    I am sorry if thie is republished-My first time doing this and I am not sure what goes where and where to hear feedback.
    Have published iweb site for five years with no problems and just opened a new site and get -
    404: Page not found 
    This error is generated when there was no web page with the name you specified at the web site.-
    Troubleshooting suggestions:
    Ensure the page you are linking to exists in the correct folder.
    Check your file name for case sensitivity . Index.htm is not the same as index.htm!
    Temporarily disable any rewrite rules by renaming your .htaccess file if it exists
    is the problem with
    iweb or with hosting?
    One Apple tech started to fix Iweb and had to end session and the next said problem with hosting at Network Solutions as it published
    to local folder. NWS has checked sttting a few times-
    Any help would be extremely appreciated as trying to fix this for about five weeks
    Thanks VG
    <Email Edited by Host>

    It's a really bad idea to post your email address - it's an invitation to spam - and I've asked the Hosts to remove it. (Even though I've now noticed you mis-spelled it! - anyway, never post your address in a forum.)
    You have a site here: http://virginiagordon.com/www.virginiagordon.com/WELCOME.html
    If that's not the page you are having trouble with, what is that page's URL?

  • Web-application deployment problem (404 - File not found)

    Hello
    Does anyone have had the same problems like me on deploying java web-applications on iPlanet WS 6.0?
    I started with the HelloWorld.war example that came with the server and went through the manual but no luck so far. Heres what I did:
    0. Checked that webapps are enabled in the servler.xml file
    1. Created a directory /opt/webapps and /opt/webapps/hello with sufficient permissions
    2. Copied the HelloWorld.war example to /opt/webapps
    3. Deployed the excample on my test-server using the webinterface.
    Heres the content of the web-apps.xml file of my testserver after step 3:
    [DTD here]
    <vs>
    <jsp-servlet enable="true">
    <init-param>
    <param-name>use-precompiled</param-name>
    <param-value>true</param-value>
    </init-param>
    </jsp-servlet>
    <web-app uri="/hello" dir="/opt/webapps/hello" enable="true"/>
    </vs>
    All files have been extracted to /opt/webapps/hello properly. The server has been restarted.
    When I finally point my browser to http://server/hello or hello/index.jsp I get only a 404 - File not found message by the server. The context path seems to be totaly ignored.
    Heres the error log of the server
    [17/Feb/2003:16:17:38] info (12040): successful server startup
    [17/Feb/2003:16:17:38] info (12040): iPlanet-WebServer-Enterprise/6.0SP2 B11/13/2001 00:49
    [17/Feb/2003:16:17:39] info (12041): Installing a new configuration
    [17/Feb/2003:16:17:39] info (12041): [LS ls1] http://XXX.XXX.XXX.XX, port 1080 ready to accept requests
    [17/Feb/2003:16:17:39] info (12041): A new configuration was successfully installed
    [17/Feb/2003:16:17:40] info (12041): Using the Solaris VM v1.2.2 from Sun Microsystems Inc.
    [17/Feb/2003:16:17:40] info (12041): Java VM classpath: /www/ns-home6sp2/plugins/servlets/examples/legacy/beans.10/SDKBeans10.jar:/opt/jdk1.2.2/lib/tools.jar:/www/ns-home6sp2/bin/https/jar/NSServletLayer.jar:/www/ns-home6sp2/bin/https/jar/NSJavaUtil.jar:/www/ns-home6sp2/bin/https/jar/NSJavaMiscUtil.jar:/www/ns-home6sp2/bin/https/jar/servlet.jar:/www/ns-home6sp2/bin/https/jar/servlet-2.3-filters-api.jar:/www/ns-home6sp2/bin/https/jar/jsp092.jar:/www/ns-home6sp2/bin/https/jar/jaxp.jar:/www/ns-home6sp2/bin/https/jar/crimson.jar:/www/ns-home6sp2/bin/https/jar/xalan.jar:/www/ns-home6sp2/bin/https/jar/jspengine.jar:
    [17/Feb/2003:16:17:40] info (12041): Loading IWSSessionManager by default.
    [17/Feb/2003:16:17:40] info (12041): IWSSessionManager: Maximum number of sessions is 1000
    [17/Feb/2003:16:17:40] info (12041): Adding web application (/hello) at (/opt/webapps/hello)
    [17/Feb/2003:16:17:40] info (12041): Loading IWSSessionManager by default.
    [17/Feb/2003:16:17:40] info (12041): IWSSessionManager: Maximum number of sessions is 1000
    [17/Feb/2003:16:17:40] info (12041): vs(https-duke)servlet 'snoop' class = 'SnoopServlet' loaded in context = '/hello'
    [17/Feb/2003:16:17:40] info (12041): snoop: init
    [17/Feb/2003:16:17:40] info (12041): Successfully initialized web application environment (web-apps.xml) for virtual server (https-duke)

    i had similar problem due to the incorrect jdk path...
    try http://..../hello/snoop, if this works, it seems that the jsp file cannot be compiled automatically and jdk path needs to be checked...

  • 404 File not Found when accessing Video Web server

    I am trying to access a Video Web server remotely. Everything works fine on a PC and also on Internet Explorer for Mac.
    When I login using Safari I get the error message "404 File not Found" "The requested URL was not found on this server"
    I have been successful twice through Safari but after that it doesn't seem to work for days.
    I have removed all cookies, emptied the Cache, reset safari, deleted all keychain access references to the website.
    It seems to be a security issue but I am not sure what else to do.
    Any ideas would be greatly appreciated

    Try using open DNS:
    Adding Open DNS codes to your Network Preferences, should give good results in terms of speed-up as well as added security:
    Open System Preferences/Network. Double click on your connection type, or select it in the drop-down menu, and in the box marked 'DNS Servers' add the following two numbers:
    208.67.222.222
    208.67.220.220
    (You can also enter them if you click on Advanced and then DNS)

  • 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

  • Home.uix file not found for Enterprise Manager 10g R1

    I installed Oracle 10 R1, Enterprise manager was not working. It was giving error
    404 file not found.
    I checked the error log, found that home.uix file was not found.
    So is there any source from net to get any uix missing files.
    or what else could b the solution.
    Thanks

    I found solution for this issue. When I started my WebLogic server, the PATH and CLASSPATH env variables contained paths leading to my E-Business Suite installation under the same user. All I had to do was unset these env variables and set them to default ones and start the WebLogic server.

  • Portal is down and HTTP 404 - File not found

    Hi All,
    our Portal dispatcher is running and server is not connected. shows the following error...
    HTTP 404 - File not found
    http://server: 50000/index.html - im able to get
    http://server: 50000/irj/portal - getting...
    HTTP 404 - File not found
    Please let us know urgently what went wrong..
    Thanks
    Pradeep

    Hello Pradeep,
    Please check the below mentioned link :
    http://help.sap.com/saphelp_nw70/helpdata/en/43/54cdc48d395f6ce10000000a1553f6/content.htm
    You can check the logs of the server for details.dev_bootstrap,dev_jcontrol,dev_serverX,std_server.out files can give you the details of what is wrong with the service.
    Also make sure that you are typing the correct url.
    http://<hostname>:5<instance no.>00/irj/portal.
    Regards,
    Sandeep.
    Edited by: Sandeep Sehgal on Mar 25, 2008 7:38 PM

  • "XML File not found for the Container DataBindings.cpx" error after deploy

    Hello,
    I have a problem with my JSP-Javaproject. Local works all fine but when i deploy my project to a Oracle Aplication Server i allway get this XML-File-Not-found exception:
    oracle.jbo.NoXMLFileException: JBO-26001: XML File not found for the Container DataBindings.cpx
    In my EAR-File the DataBindings.cpx is at:
    \WEB-INF\classes\
    My JSP-File:
    <jbo:ApplicationModule id="AippackageModule" definition="DataBindings.DataModule" releasemode="Stateful" />
    My web.xml:
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>DataBindings</param-value>
    </context-param>
    My DataBindings.cpx:
    <?xml version='1.0' encoding='windows-1252' ?>
    <Application xmlns="http://xmlns.oracle.com/adfm/application" id="DataBindings"
    Package="" ClientType="Generic">
    <pageMap>
    </pageMap>
    <pageDefinitionUsages>
    <page id="eonerrorPageDef"
    path="de.avacon.ahb.system.tools.pageDefs.eonerrorPageDef"/>
    </pageDefinitionUsages>
    <dataControlUsages>
    <BC4JDataControl Configuration="AppModuleLocal"
    Package="model.data"
    xmlns="http://xmlns.oracle.com/adfm/datacontrol"
    id="DataModule">
    <Parameters/>
    </BC4JDataControl>
    </dataControlUsages>
    </Application>
    What can i do?
    Thanks, steve

    Adding the dependency in the ViewController fixed this for me.
    I'm using two AppModules in the controller and the second one wasn't being picked up.
    I was able to fix this by:
    Go to the Project Properties, select Dependencies, edit the Dependent Projects and Archives, find the model that's failing and add a tick in the Build Output box.
    The model should now be picked up in the ViewController's DataBindings.cpx source file, though I did have to restart JDev for this to be picked up.
    HTH
    Phil

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

  • 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

  • Checking plugins - Unknown Plugin - Research - 404 File Not Found

    Checking plugin status, two are listed as "Unknown Plugin"
    The buttons offering to research them result in a 404 File Not Found.
    The buttons link to[[ https://www.mozilla.org/en-US/plugincheck/null]] which comes up with:
    Whoops! What are you doing here?
    Did you make a left at that last URL instead of a right? No problem. Unless you want us to deal you in, here are some tips to get you back on your way:
    If you typed in the address, check your spelling. Could just be a typo.
    If you followed a link, it’s probably broken. Please contact us and we’ll fix it.
    If you’re not sure what you’re looking for, start at mozilla.org.

    When I click a Research link, I and sent to a Google results page. When I right-click a Research link and choose Copy Link Location, I get (for example) this: http://www.google.com/search?q=current%20version%20plugin%20Microsoft%20Office%202010
    If you right-click and Copy Link Location, what do you get?
    Have you changed your default search engine?

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

Maybe you are looking for

  • Desktop Version of 8.1 is not working

    I'm using windows 8.1 where skype is installed with the operating system. But that has a problem as when I go to any other windows skype does not wor. That's why I wanted to install desktop version. I've installed the letest version of Skype desktop

  • ITunes 10.1 64bit on Windows 7 Ultimate x64 has bug, it freezes ...

    I am using Windows 7 x64 Ultimate (Traditional Chinese) and I was using iTunes 10.0 for a few months without any problem. A few days ago, when I want to upgrade my iPhone 3GS to iOS 4.2.1. I upgrade the iTunes to 10.1 64 bit and found out it freezes

  • Getting Action Script 3 to work in Action script 1 template?

    Hi all, I'm creating an interactive Flash project based on an AS1 template, but a lot of my effects (scenes in separate swf files) are action script 3.0. I am working with Flash CS5, which can run everything in the AS1 template, but I wasn't sure how

  • Guidance needed for psunami plugin!

    hello everyone,i have to make a logo come out from between the waves created by the psunami plugin.any kind of help regarding how to do that would be highly appreciated. regards, Abhishek

  • Saving the report in the Dashboard.

    Hi, If I try to save a report in dashoboard after modifying its asks me to save in folders not that particular dashboard. Do I need to save in folder and then from there I need to put in dashboard? Please suggest. Thanks.