You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by bu...@apache.org on 2003/04/10 02:56:29 UTC

DO NOT REPLY [Bug 18887] New: - tiles:insert changes pageContext's module

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18887>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18887

tiles:insert changes pageContext's module

           Summary: tiles:insert changes pageContext's module
           Product: Struts
           Version: Nightly Build
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Tiles framework
        AssignedTo: struts-dev@jakarta.apache.org
        ReportedBy: lquijano@hotpop.com


I'm running an action in a module called "tramites". In the JSP, I have a
tiles:insert to put a small tile in another module (the module called "admin").
This is the JSP code:

<% System.out.println("1.moduleConfig=" +
org.apache.struts.util.RequestUtils.getModuleConfig(pageContext));
   System.out.println("1.prefix=" +
org.apache.struts.util.RequestUtils.getModuleConfig(pageContext).getPrefix()); %>
				<tiles:insert name="comboMarcas">
					<tiles:put name="width"    value="180"      />
					<tiles:put name="property" value="codMarca" />
				</tiles:insert>
<% System.out.println("2.moduleConfig=" +
org.apache.struts.util.RequestUtils.getModuleConfig(pageContext)); 
   System.out.println("2.prefix=" +
org.apache.struts.util.RequestUtils.getModuleConfig(pageContext).getPrefix()); %>

...

<html:form action="/registrarCambioAparato" method="post">
...

I just added the println calls to check the moduleConfig for this pageContext. 
So, when I refresh the page, this is what I get:

1.moduleConfig=org.apache.struts.config.impl.ModuleConfigImpl@1a33d409
1.prefix=/tramites
...
DEBUG ListaMarcasAction - Buscando listado de marcas en sesi�n... 
DEBUG ListaMarcasAction - Se encontr� un listado. 
2.moduleConfig=org.apache.struts.config.impl.ModuleConfigImpl@1e465401
2.prefix=/admin

And then the page crashes because it can't find the mapping for the form
("registrarCambioAparato").

The tile's definition in tiles-ga.xml is this:

<definition name="comboMarcas" path="/ga/jsp/util/comboMarcas.jsp" 
            controllerUrl="/admin/listaMarcas.do">
    <put name="width"    value="230"      />
    <put name="property" value="codMarca" />
</definition>

If I remove the controller it behaves good. But if I don't, the INSERT changes
my page's module (it was "tramites") , and the form gets an error. 

Finally, every module has this plugin configuration:
<!-- ========== Plug Ins Configuration ================================= -->
<plug-in className="org.apache.struts.tiles.TilesPlugin" >
    <set-property property="moduleAware" value="false" />
    <set-property property="definitions-parser-validate" value="true" />
</plug-in>

I declare the tiles configs in web.xml's ActionServlet config:
<!-- ***** Definiciones de TILES ***** -->
<init-param>
    <param-name>definitions-config</param-name>
    <param-value>
        /common/conf/tiles-common.xml, /general/conf/tiles-general.xml,
        /ga/conf/tiles-ga.xml, /gd/conf/tiles-gd.xml, 
        /gt/conf/tiles-gt.xml, /menu/conf/tiles-menu.xml
    </param-value>
</init-param>

This is the whole DEBUG level output:
[10/04/03 01:00:36:281 GMT]  7225405 SystemOut     U DEBUG TilesRequestProcessor
- processForwardConfig(asignacionCambioAparato, false) 
[10/04/03 01:00:36:328 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/common/conf/tiles-common_es_CR.xml' 
[10/04/03 01:00:36:328 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/general/conf/tiles-general_es_CR.xml' 
[10/04/03 01:00:36:343 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/ga/conf/tiles-ga_es_CR.xml' 
[10/04/03 01:00:36:343 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/gd/conf/tiles-gd_es_CR.xml' 
[10/04/03 01:00:36:390 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/gt/conf/tiles-gt_es_CR.xml' 
[10/04/03 01:00:36:406 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/menu/conf/tiles-menu_es_CR.xml' 
[10/04/03 01:00:36:406 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/common/conf/tiles-common_es.xml' 
[10/04/03 01:00:36:421 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/general/conf/tiles-general_es.xml' 
[10/04/03 01:00:36:468 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/ga/conf/tiles-ga_es.xml' 
[10/04/03 01:00:36:468 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/gd/conf/tiles-gd_es.xml' 
[10/04/03 01:00:36:484 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/gt/conf/tiles-gt_es.xml' 
[10/04/03 01:00:36:484 GMT]  7225405 SystemOut     U DEBUG I18nFactorySet -
Can't open file '/menu/conf/tiles-menu_es.xml' 
[10/04/03 01:00:36:531 GMT]  7225405 SystemOut     U DEBUG TilesRequestProcessor
- uri=/common/jsp/layout/template.jsp doInclude=false 
[10/04/03 01:00:37:265 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 
[10/04/03 01:00:37:312 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.util.LocalStrings', returnNull=true 
[10/04/03 01:00:37:375 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 
[10/04/03 01:00:37:406 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.bean.LocalStrings', returnNull=true 
[10/04/03 01:00:37:437 GMT]  7225405 SystemOut     U DEBUG InsertTag - insert
page='header.jsp'. 
[10/04/03 01:00:37:531 GMT]  7225405 SystemOut     U DEBUG InsertTag - insert
page='menu.jsp'. 
[10/04/03 01:00:37:609 GMT]  7225405 SystemOut     U DEBUG InsertTag - insert
page='/gt/jsp/ordenes/cambiosAparato/aparatos.jsp'. 
[10/04/03 01:00:46:375 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 
[10/04/03 01:00:46:375 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 
[10/04/03 01:00:46:375 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 
[10/04/03 01:00:46:437 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 
[10/04/03 01:00:46:453 GMT]  7225405 SystemOut     U
1.moduleConfig=org.apache.struts.config.impl.ModuleConfigImpl@1e25d406
[10/04/03 01:00:46:453 GMT]  7225405 SystemOut     U 1.prefix=/tramites
[10/04/03 01:00:46:453 GMT]  7225405 SystemOut     U DEBUG ComponentDefinition -
Create controller name=/admin/listaMarcas.do, type=url 
[10/04/03 01:00:46:515 GMT]  7225405 SystemOut     U DEBUG InsertTag - insert
page='/ga/jsp/util/comboMarcas.jsp'. 
[10/04/03 01:00:46:515 GMT]  7225405 SystemOut     U DEBUG RequestUtils - Get
module name for path /admin/listaMarcas.do 
[10/04/03 01:00:46:515 GMT]  7225405 SystemOut     U DEBUG RequestUtils - Module
name found: /admin 
[10/04/03 01:00:46:531 GMT]  7225405 SystemOut     U  INFO TilesRequestProcessor
- Tiles definition factory found for request processor '/admin'. 
[10/04/03 01:00:46:578 GMT]  7225405 SystemOut     U DEBUG RequestProcessor -
Processing a 'GET' for path '/listaMarcas' 
[10/04/03 01:00:46:578 GMT]  7225405 SystemOut     U DEBUG RequestProcessor - 
Looking for Action instance for class
com.grupoice.celular.ga.web.action.util.ListaMarcasAction 
[10/04/03 01:00:46:578 GMT]  7225405 SystemOut     U DEBUG RequestProcessor -  
Creating new Action instance 
[10/04/03 01:00:46:656 GMT]  7225405 SystemOut     U DEBUG ListaMarcasAction -
Buscando listado de marcas en sesi�n... 
[10/04/03 01:00:46:796 GMT]  7225405 SystemOut     U DEBUG ListaMarcasAction -
No se encontr� un listado. Ejecutando consulta... 
[10/04/03 01:00:46:796 GMT]  7225405 SystemOut     U DEBUG
EJBGAControllerFactory - Creando nuevo EJBMarcasController... 
[10/04/03 01:00:46:828 GMT]  7225405 SystemOut     U DEBUG ServiceLocator -
Obteniendo objeto JDNI: ejb/com/grupoice/celular/ga/ejb/MarcasEJBHome, Clase:
interface com.grupoice.celular.ga.ejb.MarcasEJBHome 
[10/04/03 01:00:46:953 GMT]  7225405 SystemOut     U DEBUG
DefaultGAControllerFactory - Creando nuevo DefaultMarcasController... 
[10/04/03 01:00:46:968 GMT]  7225405 SystemOut     U DEBUG FactoryUtils -
Creando nuevo HibernateDAO... 
[10/04/03 01:00:46:968 GMT]  7225405 SystemOut     U DEBUG FactoryUtils -
Creando nuevo EventoDAOLogger... 
[10/04/03 01:00:46:968 GMT]  7225405 SystemOut     U DEBUG
DefaultGEControllerFactory - Creando nuevo DefaultEventosController... 
[10/04/03 01:00:47:015 GMT]  7225405 SystemOut     U DEBUG FactoryUtils -
Creando nuevo HibernateDAO... 
[10/04/03 01:00:47:031 GMT]  7225405 SystemOut     U DEBUG
DefaultEventosController - Usando GenericDAO:
com.grupoice.dao.impl.HibernateDAO@2e39d43c 
[10/04/03 01:00:47:031 GMT]  7225405 SystemOut     U DEBUG
DefaultMarcasController - Usando GenericDAO:
com.grupoice.dao.impl.HibernateDAO@2f18143c 
[10/04/03 01:00:47:031 GMT]  7225405 SystemOut     U DEBUG
DefaultMarcasController - Obteniendo listado de marcas... 
[10/04/03 01:00:47:203 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 
[10/04/03 01:00:47:203 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 
[10/04/03 01:00:47:265 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 
[10/04/03 01:00:47:421 GMT]  7225405 SystemOut     U
2.moduleConfig=org.apache.struts.config.impl.ModuleConfigImpl@4e02141f
[10/04/03 01:00:47:421 GMT]  7225405 SystemOut     U 2.prefix=/admin
[10/04/03 01:00:47:421 GMT]  7225405 SystemOut     U  INFO
PropertyMessageResources - Initializing,
config='org.apache.struts.taglib.html.LocalStrings', returnNull=true 
[10/04/03 01:00:47:421 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources - getMessage(es_CR,formTag.mapping) 
[10/04/03 01:00:47:468 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources - loadLocale(es_CR) 
[10/04/03 01:00:47:468 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Loading resource
'org/apache/struts/taglib/html/LocalStrings_es_CR.properties' 
[10/04/03 01:00:47:484 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Loading resource completed 
[10/04/03 01:00:47:484 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources - loadLocale(es) 
[10/04/03 01:00:47:546 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Loading resource
'org/apache/struts/taglib/html/LocalStrings_es.properties' 
[10/04/03 01:00:47:546 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Loading resource completed 
[10/04/03 01:00:47:546 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources - loadLocale() 
[10/04/03 01:00:47:546 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Loading resource
'org/apache/struts/taglib/html/LocalStrings.properties' 
[10/04/03 01:00:47:609 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Loading resource completed 
[10/04/03 01:00:47:609 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.optionsCollectionTag.collection 
[10/04/03 01:00:47:609 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.forwardTag.forward 
[10/04/03 01:00:47:609 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.imgTag.bundle 
[10/04/03 01:00:47:687 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.indexed.noEnclosingIterate 
[10/04/03 01:00:47:687 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.includeTag.include 
[10/04/03 01:00:47:687 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.messageTag.message 
[10/04/03 01:00:47:687 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.linkTag.forwards 
[10/04/03 01:00:47:750 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.common.both 
[10/04/03 01:00:47:750 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.optionsTag.iterator 
[10/04/03 01:00:47:750 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.linkTag.destination 
[10/04/03 01:00:47:750 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.getter.name 
[10/04/03 01:00:47:828 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.iterateTag.iterator 
[10/04/03 01:00:47:828 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.linkTag.url 
[10/04/03 01:00:47:828 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.getter.method 
[10/04/03 01:00:47:828 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.enumerateTag.enumeration 
[10/04/03 01:00:47:890 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.linkTag.type1 
[10/04/03 01:00:47:890 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.formTag.create 
[10/04/03 01:00:47:890 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.formTag.nameType 
[10/04/03 01:00:47:890 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.optionsCollectionTag.iterator 
[10/04/03 01:00:47:968 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.linkTag.forward 
[10/04/03 01:00:47:968 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.common.io 
[10/04/03 01:00:47:968 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.optionsTag.enumeration 
[10/04/03 01:00:47:968 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.forwardTag.redirect 
[10/04/03 01:00:48:031 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.imgTag.title 
[10/04/03 01:00:48:046 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.imgTag.alt 
[10/04/03 01:00:48:046 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.getter.access 
[10/04/03 01:00:48:046 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.getter.property 
[10/04/03 01:00:48:109 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.formTag.collections 
[10/04/03 01:00:48:109 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.getter.bean 
[10/04/03 01:00:48:109 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.imgTag.src 
[10/04/03 01:00:48:109 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.optionsTag.select 
[10/04/03 01:00:48:187 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.imgTag.type 
[10/04/03 01:00:48:187 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.forwardTag.lookup 
[10/04/03 01:00:48:187 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.getter.result 
[10/04/03 01:00:48:187 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.formTag.mapping 
[10/04/03 01:00:48:250 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.rewrite.url 
[10/04/03 01:00:48:250 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.linkTag.type 
[10/04/03 01:00:48:250 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.formTag.formBean 
[10/04/03 01:00:48:250 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.includeTag.lookup 
[10/04/03 01:00:48:328 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.messageTag.resources 
[10/04/03 01:00:48:328 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.optionsCollectionTag.select 
[10/04/03 01:00:48:328 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.multiboxTag.value 
[10/04/03 01:00:48:328 GMT]  7225405 SystemOut     U DEBUG
PropertyMessageResources -   Saving message key '.optionTag.select 
[10/04/03 01:00:49:968 GMT]  7225405 SystemOut     U DEBUG InsertTag -
[ServletException in:/gt/jsp/ordenes/cambiosAparato/aparatos.jsp] Cannot
retrieve mapping for action /registrarCambioAparato'
javax.servlet.jsp.JspException: Cannot retrieve mapping for action
/registrarCambioAparato
	at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:755)
	at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:506)
	at
gt.jsp.ordenes.cambiosAparato._aparatos_jsp_22._jspService(_aparatos_jsp_22.java:375)
	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:142)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
	at
org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:300)
	at org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:430)
	at org.apache.jasper.runtime.JspServlet.service(JspServlet.java:565)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
	at
com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:827)
	at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:167)
	at
com.ibm.servlet.engine.webapp.ServicingServletState.service(StrictLifecycleServlet.java:317)
	at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:110)
	at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:472)
	at
com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:1012)
	at
com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:913)
	at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:523)
	at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:282)
	at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:119)
	at org.apache.struts.tiles.TilesUtilImpl.doInclude(TilesUtilImpl.java:118)
	at org.apache.struts.tiles.TilesUtil.doInclude(TilesUtil.java:160)
	at org.apache.struts.taglib.tiles.InsertTag.doInclude(InsertTag.java:702)
	at
org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(InsertTag.java:817)
	at org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.java:466)
	at common.jsp.layout._template_jsp_0._jspService(_template_jsp_0.java:248)
	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:142)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
	at
org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:300)
	at org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:430)
	at org.apache.jasper.runtime.JspServlet.service(JspServlet.java:565)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
	at
com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:827)
	at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:167)
	at
com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:297)
	at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:110)
	at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:472)
	at
com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:1012)
	at
com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:913)
	at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:523)
	at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:282)
	at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:112)
	at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1057)
	at
org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:267)
	at
org.apache.struts.tiles.TilesRequestProcessor.processTilesDefinition(TilesRequestProcessor.java:248)
	at
org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:301)
	at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
	at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1421)
	at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:500)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
	at
com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:827)
	at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:167)
	at
com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:297)
	at
com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:110)
	at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:472)
	at
com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:1012)
	at
com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:913)
	at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:523)
	at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:282)
	at
com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:112)
	at com.ibm.servlet.engine.srt.WebAppInvoker.doForward(WebAppInvoker.java:91)
	at
com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:184)
	at
com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
	at
com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:122)
	at
com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:315)
	at
com.ibm.servlet.engine.http11.HttpConnection.handleRequest(HttpConnection.java:60)
	at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:323)
	at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:252)
	at com.ibm.ws.util.CachedThread.run(ThreadPool.java:122)

[10/04/03 01:00:51:718 GMT]  7225405 SystemOut     U DEBUG InsertTag - insert
page='footer.jsp'. 
[10/04/03 01:00:51:812 GMT]  7225405 SystemOut     U DEBUG TilesRequestProcessor
-   'asignacionCambioAparato' - processed as definition 

Leonardo

---------------------------------------------------------------------
To unsubscribe, e-mail: struts-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-dev-help@jakarta.apache.org