You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tiles.apache.org by "David Sanmartín (JIRA)" <ji...@apache.org> on 2009/08/26 17:25:06 UTC

[jira] Created: (TILES-463) NoSuchDefinitionException on Internet Explorer using wildcard

NoSuchDefinitionException on Internet Explorer using wildcard
-------------------------------------------------------------

                 Key: TILES-463
                 URL: https://issues.apache.org/struts/browse/TILES-463
             Project: Tiles
          Issue Type: Bug
          Components: tiles-core
    Affects Versions: 2.1.3
         Environment: Struts 2.1.6; Tiles 2.1.3; Internet Explorer 6, 7 and 8
            Reporter: David Sanmartín
            Priority: Blocker


I get a NoSuchDefinitionException on Internet Explorer 6, 7 & 8 when trying to access to any page of my app. It's working fine with other explorers (Firefox 3 & 3.5, Chrome 2, Safari 4.0 and Opera 9.64).
The difference with other apps I developed it's the use of wildcard on tiles configuration. 

Here is the conf of struts.xml and tiles.xml:

<package name="connection" extends="base" namespace="/connection">
	<default-action-ref name="index"></default-action-ref>
        <global-results>
           <result type="tiles" name="index">olympia.connection.index</result>
           <result type="tiles" name="failed">olympia.connection.error</result>
            <result type="tiles" name="error">olympia.connection.error</result>
        </global-results>
        
        <action name="clientes*" class="com.vda2.app.olympia.actions.connection.ClientesAction" method="{1}">
            <result type="tiles" name="success">olympia.connection.{1}</result>
        </action>
        <action name="anuncios*" class="com.vda2.app.olympia.actions.connection.AnunciosAction" method="{1}">
            <result type="tiles" name="success">olympia.connection.{1}</result>
        </action>
	<action name="index" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="index">
		<result type="tiles" name="success">olympia.connection.index</result>
	</action>
	<action name="*" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="{1}">
            <result type="tiles" name="success">olympia.connection.{1}</result>
	</action>
</package>

------------------

<definition name="base" template="/layout/layout.jsp">
	<put-attribute name="header" value="/tiles/common/commonHeader.jsp" />
</definition>
<definition name="connection" extends="base">
	<put-attribute name="sidebar" value="/tiles/connection/sidebar.jsp" />
	<put-attribute name="footer" value="/tiles/connection/footer.jsp" />
</definition>
<definition name="olympia.connection.*" extends="connection">
	<put-attribute name="content" value="/tiles/connection/{1}.jsp" />
</definition>

----------------------

If I set a definition for every result then the app works fine even on Internet Explorer.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (TILES-463) NoSuchDefinitionException on Internet Explorer using wildcard

Posted by "David Sanmartín (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/TILES-463?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Sanmartín updated TILES-463:
----------------------------------

    Description: 
I get a NoSuchDefinitionException on Internet Explorer 6, 7 & 8 when trying to access to any page of my app. It's working fine with other explorers (Firefox 3 & 3.5, Chrome 2, Safari 4.0 and Opera 9.64).
The difference with other apps I developed it's the use of wildcard on tiles configuration. 

Here is the conf of struts.xml and tiles.xml:

<package name="connection" extends="base" namespace="/connection">
	<default-action-ref name="index"></default-action-ref>
        <global-results>
           <result type="tiles" name="index">oly.conn.index</result>
           <result type="tiles" name="failed">oly.conn.error</result>
            <result type="tiles" name="error">oly.conn.error</result>
        </global-results>
        
        <action name="clientes*" class="com.vda2.app.oly.actions.conn.ClientesAction" method="{1}">
            <result type="tiles" name="success">oly.conn.{1}</result>
        </action>
        <action name="anuncios*" class="com.vda2.app.oly.actions.conn.AnunciosAction" method="{1}">
            <result type="tiles" name="success">oly.conn.{1}</result>
        </action>
	<action name="index" class="com.vda2.app.oly.actions.conn.ConnAction" method="index">
		<result type="tiles" name="success">oly.conn.index</result>
	</action>
	<action name="*" class="com.vda2.app.oly.actions.conn.ConnAction" method="{1}">
            <result type="tiles" name="success">oly.conn.{1}</result>
	</action>
</package>

------------------

<definition name="base" template="/layout/layout.jsp">
	<put-attribute name="header" value="/tiles/common/commonHeader.jsp" />
</definition>
<definition name="conn" extends="base">
	<put-attribute name="sidebar" value="/tiles/conn/sidebar.jsp" />
	<put-attribute name="footer" value="/tiles/conn/footer.jsp" />
</definition>
<definition name="oly.conn.*" extends="conn">
	<put-attribute name="content" value="/tiles/conn/{1}.jsp" />
</definition>

----------------------

If I set a definition for every result then the app works fine even on Internet Explorer.

  was:
I get a NoSuchDefinitionException on Internet Explorer 6, 7 & 8 when trying to access to any page of my app. It's working fine with other explorers (Firefox 3 & 3.5, Chrome 2, Safari 4.0 and Opera 9.64).
The difference with other apps I developed it's the use of wildcard on tiles configuration. 

Here is the conf of struts.xml and tiles.xml:

<package name="connection" extends="base" namespace="/connection">
	<default-action-ref name="index"></default-action-ref>
        <global-results>
           <result type="tiles" name="index">olympia.connection.index</result>
           <result type="tiles" name="failed">olympia.connection.error</result>
            <result type="tiles" name="error">olympia.connection.error</result>
        </global-results>
        
        <action name="clientes*" class="com.vda2.app.olympia.actions.connection.ClientesAction" method="{1}">
            <result type="tiles" name="success">olympia.connection.{1}</result>
        </action>
        <action name="anuncios*" class="com.vda2.app.olympia.actions.connection.AnunciosAction" method="{1}">
            <result type="tiles" name="success">olympia.connection.{1}</result>
        </action>
	<action name="index" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="index">
		<result type="tiles" name="success">olympia.connection.index</result>
	</action>
	<action name="*" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="{1}">
            <result type="tiles" name="success">olympia.connection.{1}</result>
	</action>
</package>

------------------

<definition name="base" template="/layout/layout.jsp">
	<put-attribute name="header" value="/tiles/common/commonHeader.jsp" />
</definition>
<definition name="connection" extends="base">
	<put-attribute name="sidebar" value="/tiles/connection/sidebar.jsp" />
	<put-attribute name="footer" value="/tiles/connection/footer.jsp" />
</definition>
<definition name="olympia.connection.*" extends="connection">
	<put-attribute name="content" value="/tiles/connection/{1}.jsp" />
</definition>

----------------------

If I set a definition for every result then the app works fine even on Internet Explorer.


> NoSuchDefinitionException on Internet Explorer using wildcard
> -------------------------------------------------------------
>
>                 Key: TILES-463
>                 URL: https://issues.apache.org/struts/browse/TILES-463
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.3
>         Environment: Struts 2.1.6; Tiles 2.1.3; Internet Explorer 6, 7 and 8
>            Reporter: David Sanmartín
>
> I get a NoSuchDefinitionException on Internet Explorer 6, 7 & 8 when trying to access to any page of my app. It's working fine with other explorers (Firefox 3 & 3.5, Chrome 2, Safari 4.0 and Opera 9.64).
> The difference with other apps I developed it's the use of wildcard on tiles configuration. 
> Here is the conf of struts.xml and tiles.xml:
> <package name="connection" extends="base" namespace="/connection">
> 	<default-action-ref name="index"></default-action-ref>
>         <global-results>
>            <result type="tiles" name="index">oly.conn.index</result>
>            <result type="tiles" name="failed">oly.conn.error</result>
>             <result type="tiles" name="error">oly.conn.error</result>
>         </global-results>
>         
>         <action name="clientes*" class="com.vda2.app.oly.actions.conn.ClientesAction" method="{1}">
>             <result type="tiles" name="success">oly.conn.{1}</result>
>         </action>
>         <action name="anuncios*" class="com.vda2.app.oly.actions.conn.AnunciosAction" method="{1}">
>             <result type="tiles" name="success">oly.conn.{1}</result>
>         </action>
> 	<action name="index" class="com.vda2.app.oly.actions.conn.ConnAction" method="index">
> 		<result type="tiles" name="success">oly.conn.index</result>
> 	</action>
> 	<action name="*" class="com.vda2.app.oly.actions.conn.ConnAction" method="{1}">
>             <result type="tiles" name="success">oly.conn.{1}</result>
> 	</action>
> </package>
> ------------------
> <definition name="base" template="/layout/layout.jsp">
> 	<put-attribute name="header" value="/tiles/common/commonHeader.jsp" />
> </definition>
> <definition name="conn" extends="base">
> 	<put-attribute name="sidebar" value="/tiles/conn/sidebar.jsp" />
> 	<put-attribute name="footer" value="/tiles/conn/footer.jsp" />
> </definition>
> <definition name="oly.conn.*" extends="conn">
> 	<put-attribute name="content" value="/tiles/conn/{1}.jsp" />
> </definition>
> ----------------------
> If I set a definition for every result then the app works fine even on Internet Explorer.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (TILES-463) NoSuchDefinitionException on Internet Explorer using wildcard

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/TILES-463?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Petrelli closed TILES-463.
----------------------------------

    Resolution: Incomplete

> NoSuchDefinitionException on Internet Explorer using wildcard
> -------------------------------------------------------------
>
>                 Key: TILES-463
>                 URL: https://issues.apache.org/struts/browse/TILES-463
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.3
>         Environment: Struts 2.1.6; Tiles 2.1.3; Internet Explorer 6, 7 and 8
>            Reporter: David Sanmartín
>
> I get a NoSuchDefinitionException on Internet Explorer 6, 7 & 8 when trying to access to any page of my app. It's working fine with other explorers (Firefox 3 & 3.5, Chrome 2, Safari 4.0 and Opera 9.64).
> The difference with other apps I developed it's the use of wildcard on tiles configuration. 
> Here is the conf of struts.xml and tiles.xml:
> <package name="connection" extends="base" namespace="/connection">
> 	<default-action-ref name="index"></default-action-ref>
>         <global-results>
>            <result type="tiles" name="index">olympia.connection.index</result>
>            <result type="tiles" name="failed">olympia.connection.error</result>
>             <result type="tiles" name="error">olympia.connection.error</result>
>         </global-results>
>         
>         <action name="clientes*" class="com.vda2.app.olympia.actions.connection.ClientesAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
>         </action>
>         <action name="anuncios*" class="com.vda2.app.olympia.actions.connection.AnunciosAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
>         </action>
> 	<action name="index" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="index">
> 		<result type="tiles" name="success">olympia.connection.index</result>
> 	</action>
> 	<action name="*" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
> 	</action>
> </package>
> ------------------
> <definition name="base" template="/layout/layout.jsp">
> 	<put-attribute name="header" value="/tiles/common/commonHeader.jsp" />
> </definition>
> <definition name="connection" extends="base">
> 	<put-attribute name="sidebar" value="/tiles/connection/sidebar.jsp" />
> 	<put-attribute name="footer" value="/tiles/connection/footer.jsp" />
> </definition>
> <definition name="olympia.connection.*" extends="connection">
> 	<put-attribute name="content" value="/tiles/connection/{1}.jsp" />
> </definition>
> ----------------------
> If I set a definition for every result then the app works fine even on Internet Explorer.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (TILES-463) NoSuchDefinitionException on Internet Explorer using wildcard

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/TILES-463?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Petrelli updated TILES-463:
-----------------------------------


No test case, I close this issue.

> NoSuchDefinitionException on Internet Explorer using wildcard
> -------------------------------------------------------------
>
>                 Key: TILES-463
>                 URL: https://issues.apache.org/struts/browse/TILES-463
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.3
>         Environment: Struts 2.1.6; Tiles 2.1.3; Internet Explorer 6, 7 and 8
>            Reporter: David Sanmartín
>
> I get a NoSuchDefinitionException on Internet Explorer 6, 7 & 8 when trying to access to any page of my app. It's working fine with other explorers (Firefox 3 & 3.5, Chrome 2, Safari 4.0 and Opera 9.64).
> The difference with other apps I developed it's the use of wildcard on tiles configuration. 
> Here is the conf of struts.xml and tiles.xml:
> <package name="connection" extends="base" namespace="/connection">
> 	<default-action-ref name="index"></default-action-ref>
>         <global-results>
>            <result type="tiles" name="index">olympia.connection.index</result>
>            <result type="tiles" name="failed">olympia.connection.error</result>
>             <result type="tiles" name="error">olympia.connection.error</result>
>         </global-results>
>         
>         <action name="clientes*" class="com.vda2.app.olympia.actions.connection.ClientesAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
>         </action>
>         <action name="anuncios*" class="com.vda2.app.olympia.actions.connection.AnunciosAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
>         </action>
> 	<action name="index" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="index">
> 		<result type="tiles" name="success">olympia.connection.index</result>
> 	</action>
> 	<action name="*" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
> 	</action>
> </package>
> ------------------
> <definition name="base" template="/layout/layout.jsp">
> 	<put-attribute name="header" value="/tiles/common/commonHeader.jsp" />
> </definition>
> <definition name="connection" extends="base">
> 	<put-attribute name="sidebar" value="/tiles/connection/sidebar.jsp" />
> 	<put-attribute name="footer" value="/tiles/connection/footer.jsp" />
> </definition>
> <definition name="olympia.connection.*" extends="connection">
> 	<put-attribute name="content" value="/tiles/connection/{1}.jsp" />
> </definition>
> ----------------------
> If I set a definition for every result then the app works fine even on Internet Explorer.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-463) NoSuchDefinitionException on Internet Explorer using wildcard

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-463?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46708#action_46708 ] 

Antonio Petrelli commented on TILES-463:
----------------------------------------

Please add a test case, a Maven project is preferred, but a WAR file with sources is fine.

> NoSuchDefinitionException on Internet Explorer using wildcard
> -------------------------------------------------------------
>
>                 Key: TILES-463
>                 URL: https://issues.apache.org/struts/browse/TILES-463
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.3
>         Environment: Struts 2.1.6; Tiles 2.1.3; Internet Explorer 6, 7 and 8
>            Reporter: David Sanmartín
>            Priority: Blocker
>
> I get a NoSuchDefinitionException on Internet Explorer 6, 7 & 8 when trying to access to any page of my app. It's working fine with other explorers (Firefox 3 & 3.5, Chrome 2, Safari 4.0 and Opera 9.64).
> The difference with other apps I developed it's the use of wildcard on tiles configuration. 
> Here is the conf of struts.xml and tiles.xml:
> <package name="connection" extends="base" namespace="/connection">
> 	<default-action-ref name="index"></default-action-ref>
>         <global-results>
>            <result type="tiles" name="index">olympia.connection.index</result>
>            <result type="tiles" name="failed">olympia.connection.error</result>
>             <result type="tiles" name="error">olympia.connection.error</result>
>         </global-results>
>         
>         <action name="clientes*" class="com.vda2.app.olympia.actions.connection.ClientesAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
>         </action>
>         <action name="anuncios*" class="com.vda2.app.olympia.actions.connection.AnunciosAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
>         </action>
> 	<action name="index" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="index">
> 		<result type="tiles" name="success">olympia.connection.index</result>
> 	</action>
> 	<action name="*" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
> 	</action>
> </package>
> ------------------
> <definition name="base" template="/layout/layout.jsp">
> 	<put-attribute name="header" value="/tiles/common/commonHeader.jsp" />
> </definition>
> <definition name="connection" extends="base">
> 	<put-attribute name="sidebar" value="/tiles/connection/sidebar.jsp" />
> 	<put-attribute name="footer" value="/tiles/connection/footer.jsp" />
> </definition>
> <definition name="olympia.connection.*" extends="connection">
> 	<put-attribute name="content" value="/tiles/connection/{1}.jsp" />
> </definition>
> ----------------------
> If I set a definition for every result then the app works fine even on Internet Explorer.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TILES-463) NoSuchDefinitionException on Internet Explorer using wildcard

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/struts/browse/TILES-463?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=46875#action_46875 ] 

Antonio Petrelli commented on TILES-463:
----------------------------------------

Please try using the code at SVN branch:
http://svn.eu.apache.org/repos/asf/tiles/framework/branches/TILES_2_1_X/
You can find a reasonably updated version at the Maven snapshot repository:
http://people.apache.org/repo/m2-snapshot-repository/

If it still does not work, please, *PLEASE*, attach a test case, otherwise it is pretty impossible to reproduce your problem.

> NoSuchDefinitionException on Internet Explorer using wildcard
> -------------------------------------------------------------
>
>                 Key: TILES-463
>                 URL: https://issues.apache.org/struts/browse/TILES-463
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.3
>         Environment: Struts 2.1.6; Tiles 2.1.3; Internet Explorer 6, 7 and 8
>            Reporter: David Sanmartín
>
> I get a NoSuchDefinitionException on Internet Explorer 6, 7 & 8 when trying to access to any page of my app. It's working fine with other explorers (Firefox 3 & 3.5, Chrome 2, Safari 4.0 and Opera 9.64).
> The difference with other apps I developed it's the use of wildcard on tiles configuration. 
> Here is the conf of struts.xml and tiles.xml:
> <package name="connection" extends="base" namespace="/connection">
> 	<default-action-ref name="index"></default-action-ref>
>         <global-results>
>            <result type="tiles" name="index">oly.conn.index</result>
>            <result type="tiles" name="failed">oly.conn.error</result>
>             <result type="tiles" name="error">oly.conn.error</result>
>         </global-results>
>         
>         <action name="clientes*" class="com.vda2.app.oly.actions.conn.ClientesAction" method="{1}">
>             <result type="tiles" name="success">oly.conn.{1}</result>
>         </action>
>         <action name="anuncios*" class="com.vda2.app.oly.actions.conn.AnunciosAction" method="{1}">
>             <result type="tiles" name="success">oly.conn.{1}</result>
>         </action>
> 	<action name="index" class="com.vda2.app.oly.actions.conn.ConnAction" method="index">
> 		<result type="tiles" name="success">oly.conn.index</result>
> 	</action>
> 	<action name="*" class="com.vda2.app.oly.actions.conn.ConnAction" method="{1}">
>             <result type="tiles" name="success">oly.conn.{1}</result>
> 	</action>
> </package>
> ------------------
> <definition name="base" template="/layout/layout.jsp">
> 	<put-attribute name="header" value="/tiles/common/commonHeader.jsp" />
> </definition>
> <definition name="conn" extends="base">
> 	<put-attribute name="sidebar" value="/tiles/conn/sidebar.jsp" />
> 	<put-attribute name="footer" value="/tiles/conn/footer.jsp" />
> </definition>
> <definition name="oly.conn.*" extends="conn">
> 	<put-attribute name="content" value="/tiles/conn/{1}.jsp" />
> </definition>
> ----------------------
> If I set a definition for every result then the app works fine even on Internet Explorer.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (TILES-463) NoSuchDefinitionException on Internet Explorer using wildcard

Posted by "Antonio Petrelli (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/struts/browse/TILES-463?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Petrelli updated TILES-463:
-----------------------------------

    Priority: Major  (was: Blocker)

> NoSuchDefinitionException on Internet Explorer using wildcard
> -------------------------------------------------------------
>
>                 Key: TILES-463
>                 URL: https://issues.apache.org/struts/browse/TILES-463
>             Project: Tiles
>          Issue Type: Bug
>          Components: tiles-core
>    Affects Versions: 2.1.3
>         Environment: Struts 2.1.6; Tiles 2.1.3; Internet Explorer 6, 7 and 8
>            Reporter: David Sanmartín
>
> I get a NoSuchDefinitionException on Internet Explorer 6, 7 & 8 when trying to access to any page of my app. It's working fine with other explorers (Firefox 3 & 3.5, Chrome 2, Safari 4.0 and Opera 9.64).
> The difference with other apps I developed it's the use of wildcard on tiles configuration. 
> Here is the conf of struts.xml and tiles.xml:
> <package name="connection" extends="base" namespace="/connection">
> 	<default-action-ref name="index"></default-action-ref>
>         <global-results>
>            <result type="tiles" name="index">olympia.connection.index</result>
>            <result type="tiles" name="failed">olympia.connection.error</result>
>             <result type="tiles" name="error">olympia.connection.error</result>
>         </global-results>
>         
>         <action name="clientes*" class="com.vda2.app.olympia.actions.connection.ClientesAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
>         </action>
>         <action name="anuncios*" class="com.vda2.app.olympia.actions.connection.AnunciosAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
>         </action>
> 	<action name="index" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="index">
> 		<result type="tiles" name="success">olympia.connection.index</result>
> 	</action>
> 	<action name="*" class="com.vda2.app.olympia.actions.connection.ConnectionAction" method="{1}">
>             <result type="tiles" name="success">olympia.connection.{1}</result>
> 	</action>
> </package>
> ------------------
> <definition name="base" template="/layout/layout.jsp">
> 	<put-attribute name="header" value="/tiles/common/commonHeader.jsp" />
> </definition>
> <definition name="connection" extends="base">
> 	<put-attribute name="sidebar" value="/tiles/connection/sidebar.jsp" />
> 	<put-attribute name="footer" value="/tiles/connection/footer.jsp" />
> </definition>
> <definition name="olympia.connection.*" extends="connection">
> 	<put-attribute name="content" value="/tiles/connection/{1}.jsp" />
> </definition>
> ----------------------
> If I set a definition for every result then the app works fine even on Internet Explorer.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.