Can't find action mappings

Hi. I am encountering a "...cant find actionMappings..." error in my struts app when deployed on iplanet 6.0. It works on an apache/tomcat setup which leads me to believe that my web.xml file and struts-config file is set up correctly (i've copied the web.xml file below).
I've also included nearly every library under the sun so I don't think it has anything to do with that either.
The error message i get is:
Internal error: servlet service function had thrown ServletException (uri=/index2.jsp): javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection, stack: javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:453) at jsps.index2_jsp._jspService(_index2_jsp.java:95) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:259) at org.apache.jasper.servlet.JspServlet$JspServletWrapper.access$6(JspServlet.java:249) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:530) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:599) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.java:952) at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1094) at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:1023) , root cause: javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:798) at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:506) at jsps.index2_jsp._jspService(_index2_jsp.java:70) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:259) at org.apache.jasper.servlet.JspServlet$JspServletWrapper.access$6(JspServlet.java:249) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:530) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:599) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.java:952) at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1094) at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:1023)
my web.xml file is
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>3</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>3</param-value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<taglib>
     <taglib-uri>http://jakarta.apache.org/struts/tags-bean</taglib-uri>
     <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
</taglib>
<taglib>
     <taglib-uri>http://jakarta.apache.org/struts/tags-html</taglib-uri>
     <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
</taglib>
<taglib>
     <taglib-uri>http://jakarta.apache.org/struts/tags-logic</taglib-uri>
     <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
</taglib>
<taglib>
     <taglib-uri>http://jakarta.apache.org/struts/tags-tiles</taglib-uri>
     <taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
</taglib>
<taglib>
     <taglib-uri>http://jakarta.apache.org/struts/tags-template</taglib-uri>
     <taglib-location>/WEB-INF/struts-template.tld</taglib-location>
</taglib>
<taglib>
     <taglib-uri>http://jakarta.apache.org/struts/tags-nested</taglib-uri>
     <taglib-location>/WEB-INF/struts-nested.tld</taglib-location>
</taglib>
</web-app>
Any help would be greatly appreciated!

Hi All,
I am new to Struts, facing a problem in running the sample application.
I found some tips in the net, but could not solve the problem.
Please help me in this regard. I am sorry for the inconvenience.
Here is the error code.
root cause
javax.servlet.ServletException: javax.servlet.jsp.JspException: Cannot
find ActionMappings or ActionFormBeans collection
org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:850)
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:779)
org.apache.jsp.index_jsp._jspService(index_jsp.java:107)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:337)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
root cause
javax.servlet.jsp.JspException: Cannot find ActionMappings or
ActionFormBeans collection
org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:798)
org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:506)
org.apache.jsp.index_jsp._jspx_meth_html_005fform_005f0(index_jsp.java:128)
org.apache.jsp.index_jsp._jspService(index_jsp.java:97)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:337)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:266)
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
As per your suggestion, I have changed the dtd in the config file.
But could not resolve the solution. FYI, I am hereby pasting the
config and web.xml files.
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
"http://struts.apache.org/dtds/struts-config_1_2.dtd">
<struts�|config>
<form-beans>
<form�|bean name="lookupForm" type="wiley.LookupForm"/>
</form-beans>
<action-mappings>
<action path="/Lookup" type="wiley.LookupAction" name="lookupForm"
input="/index.jsp">
<forward name="success" path="/quote.jsp"/>
<forward name="failure" path="/index.jsp"/>
</action>
</action-mappings>
<message�|resources
parameter="wiley.ApplicationResources"/>
</struts�|config>
web.xml file
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >
<taglib>
<taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
<taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
<taglib-location>/WEB-INF/struts-html.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
<taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
</taglib>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>3</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>3</param-value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
index.jsp The code is :
<html:form action="Lookup"
name="lookupForm"
type="wiley.LookupForm" >
<table width="45%" border="0">
<tr>
<td>Symbol:</td>
<td><html:text property="symbol" /></td>
</tr>
<tr>
<td colspan="2" align="center"><html:submit /></td>
</tr>
</table>
</html:form>
Thanks in advance,
Regards,
rekha24.

Similar Messages

  • I can't find Actions in windows panel,i am using Adobe Photostop CS 6 version

    hii...i am using Photoshop CS6 version when i tried to open actions in windows panel i can't find it.can anyone help me ?

    There's an ability to hide menus in the Edit- Menus configuration panel.
    Maybe you should try resetting your preferences to defaults...
    Press and hold Control - Shift - Alt simultaneously (or Command - Shift - Option if on a Mac) immediately upon cold-starting Photoshop. If you get the keys down quickly enough - and you have to be really quick - it will prompt you to confirm deletion of your current preferences, which will lead to the establishment of a fresh default set. If it does not prompt you, you haven't been quick enough to get the keys down.
    Good luck.
    -Noel

  • Just downloaded newest update for PS- Can't find actions/presets

    Just downloaded newest update for PS.  Now, I cannot find my actions/presets.  It asked to migrate them when downloading and I said yes. BUT, I cannot find them anywhere? I can't even find where to load them again.  Help please!  PS. I looked at the preset manager, etc. and can't find them. I also tried to redownload, and a message said they were already in place…where I do not know. Thanks

    Hi a/p lost,
    See Jeff Tranberry's blog post on this topic: Photoshop CC to 2014: Where’s my stuff? (Settings, workspaces, presets, panels, plug-ins)
    Some is migrated, some will need to be reinstalled.
    Regards,
    Pete

  • Can't find action menu in iCloud to add filter

    Apple support says to acess the "action pop-up menu" in the sidebar to add filtering rules. There's no visible action pop-up menu here.
    How can I add filtering rules? Where can I find the action menu?
    Thanks.

    It should be on the bottom-left corner in the Mail application on iCloud.com.  If you don't see it, make sure your browser is full screen.

  • Can't find Actions Panel

    I am using PS6.0 and can't get to the actions panel.  I have read all about clicking Actions under 'Windows' or pressing 'F9'.  First I don't see 'Actions' under 'Windows' and F9 does nothing.  I do have some .atn files in my Photoshop Actions folder.
    Need help please.

    You can install actions into the effects panel in Elements 6, and elements 7 has an actions player built in, but you can only run actions on one image at a time in PSE, not on a folder, and the action has to include only steps that PSE understands. (Otherwise it may run, but the results will be very different from what you get in PS).
    EDIT and you can't record actions in PSE.

  • Can't find actions tab

    The "actions" tab is not located i my windows tab in photoshop 9??

    Thanks, as I can see that under Windows there is no "Actions" neither in Organizer nor in Editor.
    Organizer :
    Editor :
    May I know is this the same location you are looking at  ?
    Actions are present in Photoshop not in Photoshop Elements 9

  • Can't find action button on PSE 11

    Hi everybody
    I saw on youtube that clicking on Windows at the top of that software, I should find the "actions" button, opening the action panel.
    Still The "action" button isn't there, do you have a solution please?

    No. Scripts are designed to be run with the automator. Have you installed any third party plug-ins which may have changed the default settings?
    If not try going to:
    Edit >> Preferences >> General
    Click the button to reset prefs on next launch.
    Close Elements and open again.

  • Find Cube Mappings from Dictionary View

    How can I find the mappings between the columns in fact table and cube?
    I'm needing to find the column name in the cube view that a column in the fact table is mapped to.
    Obviously this is held and it is displayed in the Mappings window in AWM - but how to query to find it?
    The Oracle OLAP User Guide helpfully lists related views here: http://docs.oracle.com/cd/E11882_01/olap.112/e17123/query.htm#OLAUG9186
    But none of these satisfy this requirement as far as I can see.
    So can this be done?
    thanks
    Jim

    You can query all_cube_mappings if you are using 12c Version of the Database
    For 11.2 the only way to do this is to to export the XML for the Cube using DBMS_CUBE.EXPORT_XML see DBMS_CUBE
    The Cube Mappings are in the <CubeMap> tag

  • Adobe mentions it cannot find action list

    When installing adobe flash it mentions at the end of the install process that it can't find 'action list' does anyone know how to solve this?

    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the o

    When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the original in my work folder. I need to know how to stop this from happeing and get it back to the way it has been working he last 6 months since i purchased this program.

    Hi pissedadobeuser,
    Does this issue occur with any particular web page?
    Are you able to print the webpage to 'Adobe PDF' to convert it to pdf.
    Which Browser version, OS version and Acrobat version are you using?
    Regards,
    Rave

  • Where can I find the Action Panel in Photoshop?

    Where can I find the Action Panel in Photoshop?

    Are you using photoshop or photoshop elements and which version?
    (in photoshop it should be under Window>Actions or Window>Show Actions)
    (only photoshop elements 11 has Window>Actions)
    (no other version of photoshop elements has Window>Actions)
    What operating system?

  • I just updated to ps cc 2014 with help from a chat person and all of my actions have dissapeared how can i find them?

    I just updated to ps cc 2014 with help from a chat person and all of my actions have disappeared how can i find them?

    Do you still have your old version of Photoshop loaded? You need to open that, and save your actions so that you can open them in 2014.

  • Where can I find a log of action center/security?

    I have a message in Action Center under security that says it has found a malware on my computer. 
    Where can I find a log of which file and location it was? 
    It only states the malware-name. No location or filename.
    Also note that this is not my antivirus (system center endpoint protection) who located the malware. And it was not the mrt.exe either. I checked that log and it is clean.

    I don't have Win 7 right now, but in Win 8 you can check archived messages option on lect side when you browse to : 
    Control Panel\All Control Panel Items\Action Center
    Can you check this ?
    I don't think we have separate logging for action center. 
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • Actions list weird, can't find basic things.

    Hello,
    [Quick intro: This is my first time on the site so hello! My name is Jason, I'm an artist, graphic designer, and animator, and I use most Adobe products in creating my artwork and videos.]
    So, here is my problem. I used to use drag and drop stuff to create websites and just recently got into using Flash and Dreamweaver. I am using the CS3 versions of both of these programs. What I'm trying to do now is make an animated button that's also a link to another page on my site. I was able to make the button in Flash with an up state, animated over state, down, hit and all. My problems are as follows:
    1. It's a link on my index page and I'm trying to make it link to my main page where there's the menu and links to the rest of the site... but I don't know how to make the button a clickable link. I've searched for tutorials and guides online, and it seems I have to do a getURL action on it, but I'm not sure that I'm doing it right (I'm copy and pasting examples and switching in my own link): it ends up looking like this:
    on(release)
    getURL("http://www.example.com", "_blank");
    I'm not familiar with the code, but it seems simple enough. Anyway, I'm trying this with just basic links to standard websites, and I can't seem to get it to work.
    2. A major problem I have is with creating the actions themselves. My menu for selecting the actions is weird; I see on all these tutorials that there's are menus that you can select it like this:
    Though, my menu for actions looks like this:
    Tons and tons of fl.something things... I can't find any of these getURL menus, or anything like that.
    So, am I going about making this animated button a link correctly? Is there an easier way to do it? Is there some easier way to do it in Dreamweaver after I've already created the button? Also, one last little question. When I have the button done, should it be saved as a .fla file? Or exported as a .swf file?
    Sorry for bombarding everyone with questions in my first post, but I've been at this for hours and hours and I feel like I'm going in circles looking at these tutorials and guides.
    Thanks so much!
    Jason

    I tried again, making sure that actionscript 2.0 was selected (though, when I went to the menu it already was). Here's what I have: I just drew a simple black box for the button just to test (Up, down, over and hit area all the same). So I put that in the stage, and put the action on it as you can see at the bottom. On the right in the pic is the settings in publish settings. (Action script 2.0 is selected).

  • SEVERE: null : Can't find file '/WEB-INF/tiles-defs.xml'

    I'm trying to get Tiles to work with Struts on my server. I'm running a local instance of Tomcat v5.5. Development environment is Eclipse. I"ve looked everywhere on the web and can't find any solutions that work. I've been working on this for several days now. It shouldn't be this hard...
    I appreciate any help or suggestions people might have. I would really like to get beyond the configuration $#!^ and start coding.
    Thanks in advance!!!
    Jim
    Here are snippets from the pertinent files:
    web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <display-name>
         admin</display-name>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
              <welcome-file>index.htm</welcome-file>
              <welcome-file>index.jsp</welcome-file>
              <welcome-file>default.html</welcome-file>
              <welcome-file>default.htm</welcome-file>
              <welcome-file>default.jsp</welcome-file>
         </welcome-file-list>
         <servlet>
              <servlet-name>action</servlet-name>
              <servlet-class>
                   org.apache.struts.action.ActionServlet
              </servlet-class>
              <init-param>
                   <param-name>config</param-name>
                   <param-value>/WEB-INF/struts-config.xml</param-value>
              </init-param>
              <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
              <servlet-name>action</servlet-name>
              <url-pattern>*.do</url-pattern>          
         </servlet-mapping>
         <jsp-config>
              <taglib>
                   <taglib-uri>struts-bean</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-bean.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>struts-logic</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-logic.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>struts-html</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>struts-tiles</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-tiles.tld</taglib-location>
              </taglib>
              <!-- The following tag library info was added for JSTL libraries. -->
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/fmt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/fmt-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/fmt-rt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/c.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/core-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/c-rt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/sql</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/sql.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/sql-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/sql-rt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/x</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/x.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/x-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/x-rt.tld</taglib-location>
              </taglib>
         </jsp-config>
    </web-app>
    struts-config.xml:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
    "/WEB-INF/dtds/struts-config_1_2.dtd">
    <struts-config>
         <!-- ============================================ Data Source Configuration -->
         <data-sources />
         <!-- ================================================ Form Bean Definitions -->
         <form-beans>
         </form-beans>
         <!-- ========================================= Global Exception Definitions -->
         <global-exceptions />
         <!-- =========================================== Global Forward Definitions -->
         <global-forwards />
         <!-- =========================================== Action Mapping Definitions -->
         <action-mappings>          
              <action path="/foobar" forward="/createAccount.jsp" />
         </action-mappings>
         <!--
         ============================================= Controller Configuration
         <controller contentType="text/html; charset=UTF-8" />
         ======================================== Message Resources Definitions
         <message-resources
              parameter="com.xilinx.web.registration.struts.res.ApplicationResources" />
         =============================================== Plug Ins Configuration -->
         <!--======================================================= Tiles plugin -->
         <!--
              This plugin initialize Tiles definition factory. This later can takes some
              parameters explained here after. The plugin first read parameters from
              web.xml, thenoverload them with parameters defined here. All parameters
              are optional.
              The plugin should be declared in each struts-config file.
              - definitions-config: (optional)
              Specify configuration file names. There can be several comma
              separated file names (default: ?? )
              - moduleAware: (optional - struts1.1)
              Specify if the Tiles definition factory is module aware. If true
              (default), there will be one factory for each Struts module.
              If false, there will be one common factory for all module. In this
              later case, it is still needed to declare one plugin per module.
              The factory will be initialized with parameters found in the first
              initialized plugin (generally the one associated with the default
              module).
              true : One factory per module. (default)
              false : one single shared factory for all modules
              - definitions-parser-validate: (optional)
              Specify if xml parser should validate the Tiles configuration file.
              true : validate. DTD should be specified in file header (default)
              false : no validation
              Paths found in Tiles definitions are relative to the main context.
         -->
              <plug-in className="org.apache.struts.tiles.TilesPlugin" >
              <set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" />
              <set-property property="definitions-debug" value="2" />
              <set-property property="definitions-parser-details" value="2" />
              <set-property property="definitions-parser-validate" value="true" />
              </plug-in>
         <!-- =================================================== Validator plugin
         <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
              <set-property property="pathnames"
                   value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml" />
         </plug-in>
         -->
    </struts-config>
    tiles-defs.xml (in the WEB-INF directory as are the other xml files...):
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"     
                                                 "http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
    <tiles-definitions>
         <definition name="Tiles.register" page="/tiles/template.jsp">
              <put name="header" value="/tiles/header.jsp" />          
              <put name="body" value="/register.jsp" />
              <put name="footer" value="/tiles/footer.jsp" />
         </definition>
    </tiles-definitions>
    Console output when starting the server:
    INFO: Starting Servlet Engine: Apache Tomcat/5.5.17
    Jul 7, 2006 11:36:41 AM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    Jul 7, 2006 11:36:43 AM org.apache.struts.tiles.xmlDefinition.I18nFactorySet initFactory
    SEVERE: null : Can't find file '/WEB-INF/tiles-defs.xml'
    Jul 7, 2006 11:36:43 AM org.apache.struts.tiles.TilesPlugin initDefinitionsFactory
    SEVERE: Can't create Tiles definition factory for module ''.
    Jul 7, 2006 11:36:43 AM org.apache.struts.action.ActionServlet init
    SEVERE: Unable to initialize Struts ActionServlet due to an unexpected exception or error thrown, so marking the servlet as unavailable. Most likely, this is due to an incorrect or missing library dependency.
    javax.servlet.ServletException: null : Can't find file '/WEB-INF/tiles-defs.xml'
         at org.apache.struts.tiles.TilesPlugin.initDefinitionsFactory(TilesPlugin.java:233)
         at org.apache.struts.tiles.TilesPlugin.init(TilesPlugin.java:137)
         at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:869)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:336)
         at javax.servlet.GenericServlet.init(GenericServlet.java:211)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:932)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3917)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4201)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
         at org.apache.catalina.core.StandardService.start(StandardService.java:450)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
    Jul 7, 2006 11:36:43 AM org.apache.catalina.core.ApplicationContext log
    INFO: Marking servlet action as unavailable
    Jul 7, 2006 11:36:43 AM org.apache.catalina.core.StandardContext loadOnStartup
    SEVERE: Servlet /admin threw load() exception
    javax.servlet.UnavailableException: null : Can't find file '/WEB-INF/tiles-defs.xml'
    I have the following jars in my Web App Libraries (WEB-INF/lib):
    standard.jar
    commons-fileupload.jar
    antlr.jar
    struts.jar
    commons-beanutils.jar
    commons-logging.jar
    commons-validator.jar
    myswl-connector-java-3.1.12-bin.jar
    struts-el.jar
    jstl.jar
    commons-digester.jar
    Struts is version: 1.2.9.
    JRE / JDK: 1.5.0_06 (Program files shows I have JRE 1.5.0_05 in the tree as well)
    Note: Struts will work if I comment out the tiles plug-in in the struts-config.xml file.

    you don�t call o files-defs.xml in jsp?

Maybe you are looking for

  • External Monitor Not Working (Can't Hear Vocals)

    Hi all. I am about to tear my hair out with monitoring problems I have started experiencing with Adobe Audition. I want to use the External Monitor feature to monitor my vocals whilst recording a track (Don't like the latency of Audtion monitor).  Ho

  • GR for a Subcontract PO

    Hello all, Can anyone help me about this issue? <b>Action:</b> Partial Goods Receipt for a subcontracting PO with item category 'L', with BOM explosion. We've send all the components to our subcontract Vendor. And when we are about to do the MIGO, an

  • Making a Swf a valid widget

    I have a swf carousel that will work sat inside an HTML file for the purposes of siting on a web page. What as3 code do I need to make this a valid widget? I don't actually need it to interact with the captivate project, but I need the user to be abl

  • Wrong posting period open

    Dear All, Wrongly i had opened June 2009 instade of May 2009. How i can delete this entry. I got note no. 487381 but i am not able to find the transaction or manu path for the same. there are no postings made in june 2009. Please reply urgently if an

  • All browsers lagging except Safari :/

    I have only had my Macbook around 3 days and when i initially got it everything was working perfectly however recently I'm having a really strange issue where all other browsers except Safari are running really, really slowly however Safari is fine..