ICEfaces
  1. ICEfaces
  2. ICE-2401

CS: review all sample app. web.xml files for valid config. params

    Details

    • Type: Improvement Improvement
    • Status: Closed
    • Priority: Minor Minor
    • Resolution: Fixed
    • Affects Version/s: 1.7DR#2
    • Fix Version/s: 1.7
    • Component/s: Sample Apps
    • Labels:
      None
    • Environment:
      n/a

      Description

      The web.xml files for all sample apps. and tutorials, etc. included in the ICEfaces bundle need to be reviewed to make sure they reference current config. parameters.

      For each web.xml file:

      1. Check to see that the web.xml is not using obsolete parameters. Refer to the 1.7 RC1 Developer's Guide, Appendix B. It shows all the valid ICEfaces config. parameters. Anything 'com.icesoft.faces' that's not in this list should be removed. Note that we've had reports specifically that a defunct debugDOMUpdate parameter still appears (like a ghost) in some from web.xml files.

      2. Add the following commented-out config params to the web-xml to better advertise their availability to users:

      Synchronous apps:

      - connectionTimeout
      - concurrentDOMViews (should be present in most if not all apps. already)


      Async. apps:

      - concurrentDOMViews (should be present in most if not all apps. already)
      - connectionTimeout
      - blockingConnectionTimeout
      - heartbeatInterval
      - heartbeatRetries
      - heartbeatTimeout
      - connectionLostRedirectURI (note that the app. must use outputConnectionStatus comp. for this setting to work)



      3. Test build the samples to ensure they run as expected after editing.

        Activity

        Philip Breau created issue -
        Ken Fyten made changes -
        Field Original Value New Value
        Fix Version/s 1.7 [ 10080 ]
        Description CS: remove defunct debugDOMUpdate parameter from web.xml CS: remove defunct debugDOMUpdate parameter from web.xml

        We should also review all the sample and tutorial apps. web.xml to ensure they aren't listing obsolete parameters.
        Assignee Patrick Corless [ patrick.corless ]
        Ken Fyten made changes -
        Priority Major [ 3 ] Minor [ 4 ]
        Ken Fyten made changes -
        Affects [Sample App./Tutorial]
        Assignee Priority P2
        Assignee Patrick Corless [ patrick.corless ] Arturo Zambrano [ artzambrano ]
        Ken Fyten made changes -
        Description CS: remove defunct debugDOMUpdate parameter from web.xml

        We should also review all the sample and tutorial apps. web.xml to ensure they aren't listing obsolete parameters.
        CS: remove defunct debugDOMUpdate parameter from web.xml

        We should also review all the sample and tutorial apps. web.xml to ensure they aren't listing obsolete parameters.

        Refer to the 1.7 RC1 Developer's Guide, Appendix B. It shows all the valid ICEfaces config. parameters. Anything 'com.icesoft.faces' that's not in this list should be removed.

        Please document which entries were removed in the JIRA.
        Ken Fyten made changes -
        Assignee Priority P2 P1
        Ken Fyten made changes -
        Summary CS: remove defunct debugDOMUpdate parameter from web.xml CS: review all sample app. web.xml files for valid config. params
        Issue Type Bug [ 1 ] Improvement [ 4 ]
        Description CS: remove defunct debugDOMUpdate parameter from web.xml

        We should also review all the sample and tutorial apps. web.xml to ensure they aren't listing obsolete parameters.

        Refer to the 1.7 RC1 Developer's Guide, Appendix B. It shows all the valid ICEfaces config. parameters. Anything 'com.icesoft.faces' that's not in this list should be removed.

        Please document which entries were removed in the JIRA.
        The web.xml files for all sample apps. and tutorials, etc. included in the ICEfaces bundle need to be reviewed to make sure they reference current config. parameters.

        For each web.xml file:

        1. Check to see that the web.xml is not using obsolete parameters. Refer to the 1.7 RC1 Developer's Guide, Appendix B. It shows all the valid ICEfaces config. parameters. Anything 'com.icesoft.faces' that's not in this list should be removed. Note that we've had reports specifically that a defunct debugDOMUpdate parameter still appears (like a ghost) in some from web.xml files.

        2. Add the following commented-out config params to the web-xml to better advertise their availability to users:

        Synchronous apps:

        - connectionTimeout
        - concurrentDOMViews (should be present in most if not all apps. already)


        Async. apps:

        - concurrentDOMViews (should be present in most if not all apps. already)
        - connectionTimeout
        - blockingConnectionTimeout
        - heartbeatInterval
        - heartbeatRetries
        - heartbeatTimeout
        - connectionLostRedirectURI (note that the app. must use outputConnectionStatus comp. for this setting to work)



        3. Test build the samples to ensure they run as expected after editing.

        Assignee Arturo Zambrano [ artzambrano ] Brad Kroeger [ brad.kroeger ]
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16120 Thu Mar 27 17:30:52 MDT 2008 brad.kroeger ICE-2401 Address Demo addition of default synchronous context-params.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/address-demo/conf/web.sunri.icefaces.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16122 Thu Mar 27 18:06:57 MDT 2008 brad.kroeger ICE-2401 Address Demo addition of default synchronous context-params.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/address-demo/conf/web.sunri.icefaces.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16123 Thu Mar 27 18:10:03 MDT 2008 brad.kroeger ICE-2401 AuctionMonitor addition of default asynchronous context-params.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/auctionMonitor/config/web.sunri.icefaces.ce.xml
        Hide
        Ken Fyten added a comment -

        Another config. param that we should add to all sample/tutorial app web.xml files follows:

        <!-- ConfigureListener is not generally required. Due to an apparent bug in Tomcat users have reported seeing the following error "SEVERE: ICEfaces could not initialize JavaServer Faces. Please check that the JSF .jar files are installed correctly.". Specifying the ConfigureListener resolves the issue. -->

        <listener>
        <listener-class>
        com.sun.faces.config.ConfigureListener
        </listener-class>
        </listener>

        Show
        Ken Fyten added a comment - Another config. param that we should add to all sample/tutorial app web.xml files follows: <!-- ConfigureListener is not generally required. Due to an apparent bug in Tomcat users have reported seeing the following error "SEVERE: ICEfaces could not initialize JavaServer Faces. Please check that the JSF .jar files are installed correctly.". Specifying the ConfigureListener resolves the issue. --> <listener> <listener-class> com.sun.faces.config.ConfigureListener </listener-class> </listener>
        Hide
        Ken Fyten added a comment -

        Finally, we should also make sure that every web.xml file contains the javax.faces.DEFAULT_SUFFIX parameter:

        For JSP-based apps:

        <context-param>
        <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
        <param-value>.jspx</param-value>
        </context-param>

        For Facelets apps (Showcase Facelet version, Timezone 5, 6, and 7, others?):

        <context-param>
        <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
        <param-value>.xhtml</param-value>
        </context-param>

        Show
        Ken Fyten added a comment - Finally, we should also make sure that every web.xml file contains the javax.faces.DEFAULT_SUFFIX parameter: For JSP-based apps: <context-param> <param-name>javax.faces.DEFAULT_SUFFIX</param-name> <param-value>.jspx</param-value> </context-param> For Facelets apps (Showcase Facelet version, Timezone 5, 6, and 7, others?): <context-param> <param-name>javax.faces.DEFAULT_SUFFIX</param-name> <param-value>.xhtml</param-value> </context-param>
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16127 Fri Mar 28 10:33:10 MDT 2008 brad.kroeger ICE-2401 Address Demo and AuctionMonitor addition of com.sun.faces.config.ConfigureListener and javax.faces.DEFAULT_SUFFIX.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/auctionMonitor/config/web.sunri.icefaces.ce.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/address-demo/conf/web.sunri.icefaces.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16128 Fri Mar 28 11:24:25 MDT 2008 brad.kroeger ICE-2401 Component Showcase delete debugDOMUpdate entries, addition of default asynchronous context-params and com.sun.faces.config.ConfigureListener and javax.faces.DEFAULT_SUFFIX.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase/conf/web.sunri.icefaces.facelet.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase/conf/web.sunri.icefaces.ce.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase/conf/web.sunri.icefaces.portlet.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase/conf/web.sunri.icefaces.portlet.tomcat.ahs.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase/conf/web.sunri.icefaces.portlet.ahs.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16129 Fri Mar 28 11:36:28 MDT 2008 brad.kroeger ICE-2401 Component Showcase delete debugDOMUpdate entries, addition of default asynchronous context-params and com.sun.faces.config.ConfigureListener and javax.faces.DEFAULT_SUFFIX.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase2/portlets/conf/web.sunri.icefaces.portlet.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase2/facelets/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase2/jsp/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16131 Fri Mar 28 11:39:48 MDT 2008 brad.kroeger ICE-2401 Portlet Chat addition of default asynchronous context-params and com.sun.faces.config.ConfigureListener and javax.faces.DEFAULT_SUFFIX.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/portlet/chat/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16141 Fri Mar 28 15:00:58 MDT 2008 brad.kroeger ICE-2401 basicInputText addition of com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/basicInputText/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16142 Fri Mar 28 15:01:32 MDT 2008 brad.kroeger ICE-2401 dragdrop1 addition of com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/dragdrop1/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/dragdrop1/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16143 Fri Mar 28 15:02:24 MDT 2008 brad.kroeger ICE-2401 dragdrop2 addition of com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/dragdrop2/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/dragdrop2/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16144 Fri Mar 28 15:03:02 MDT 2008 brad.kroeger ICE-2401 effects1 addition of com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/effects1/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/effects1/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16145 Fri Mar 28 15:03:32 MDT 2008 brad.kroeger ICE-2401 effects2 addition of com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/effects2/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/effects2/web/WEB-INF/web_myfaces.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16146 Fri Mar 28 15:04:02 MDT 2008 brad.kroeger ICE-2401 tiles addition of com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/tiles/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16147 Fri Mar 28 15:04:41 MDT 2008 brad.kroeger ICE-2401 timezone2 addition of com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone2/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone2/web/WEB-INF/web_myfaces.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16148 Fri Mar 28 15:05:17 MDT 2008 brad.kroeger ICE-2401 timezone3 addition of com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone3/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone3/web/WEB-INF/web_myfaces.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16149 Fri Mar 28 15:06:46 MDT 2008 brad.kroeger ICE-2401 timezone4 addition of DEFAULT_SUFFIX com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone4/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone4/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16150 Fri Mar 28 15:07:21 MDT 2008 brad.kroeger ICE-2401 timezone5 addition of DEFAULT_SUFFIX com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone5/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone5/web/WEB-INF/web_myfaces.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16151 Fri Mar 28 15:08:05 MDT 2008 brad.kroeger ICE-2401 timezone6 addition of com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Because these are very rudimentary tutorials, left out other entries that might confuse beginners at this point.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone6/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16152 Fri Mar 28 15:09:20 MDT 2008 brad.kroeger ICE-2401 timezone7 addition of com.sun.faces.config.ConfigureListener and com.icesoft.faces.synchronousUpdate to web.xml. Added in all the other entries to configure an asynchronous application that we want to show the user - they are commented out.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone7/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16153 Fri Mar 28 15:10:33 MDT 2008 brad.kroeger ICE-2401 timezone3 addition of DEFAULT_SUFFIX web.xml entry.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone3/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16158 Fri Mar 28 17:22:21 MDT 2008 brad.kroeger ICE-2401 Update of web.xml files with asynchronous defaults. All entries added in that were not already in are commented out so this commit should not have any effect on the applications.
        Files Changed
        Commit graph MODIFY /projects/seam-auctionMonitor/trunk/seam-auctionMonitor/resources/WEB-INF/web - using MainServlet.xml
        Commit graph MODIFY /projects/webmc/trunk/webmc/web/WEB-INF/web.xml
        Commit graph MODIFY /projects/webmail/trunk/webmail/web/WEB-INF/web.xml
        Commit graph MODIFY /projects/icefaces-seam-gen/trunk/icefaces-seam-gen/resources/WEB-INF/web.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcase/resources/WEB-INF/web-Glassfish1.2.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcaseWAR/resources-jboss-portal/WEB-INF/web.xml
        Commit graph MODIFY /projects/icefaces-seam-booking/trunk/icefaces-seam-booking/resources/WEB-INF/web.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcaseWAR/resources-glassfish/WEB-INF/web.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcaseWAR/resources-tomcat/WEB-INF/web.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcaseWAR/resources-weblogic/WEB-INF/web.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcase/resources/WEB-INF/web-myfaces.xml
        Commit graph MODIFY /projects/icefaces-swf-booking/src/main/webapp/WEB-INF/web.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcase/resources/WEB-INF/web-Glassfish-seam1.2.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcaseWAR/resources-jboss/WEB-INF/web.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcase/resources/WEB-INF/web-Glassfish.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcaseWAR/resources-glassfish-liferay/WEB-INF/web.xml
        Commit graph MODIFY /projects/icefaces-swf-sellitem-jsf/src/main/webapp/WEB-INF/web.xml
        Commit graph MODIFY /projects/seam-auctionMonitor/trunk/seam-auctionMonitor/resources/WEB-INF/web.xml
        Commit graph MODIFY /projects/seam-auctionMonitor/trunk/earSeam2HotDeploy/seam-auctionMonitorWeb/WebRoot/WEB-INF/web.xml
        Hide
        Brad Kroeger added a comment -

        I have made the necessary web.xml changes to everything in:

        ossrepo/icefaces/trunk/icefaces/samples
        and
        ossrepo/projects

        I have not had a chance to change them in ossrepo/tutorials yet.

        Brad

        Show
        Brad Kroeger added a comment - I have made the necessary web.xml changes to everything in: ossrepo/icefaces/trunk/icefaces/samples and ossrepo/projects I have not had a chance to change them in ossrepo/tutorials yet. Brad
        Hide
        Brad Kroeger added a comment -

        Found two undocumented context-params in applications located in the Projects folder:

        <context-param>
        <param-name>com.icesoft.faces.doJSFStateManagement</param-name>
        <param-value>true</param-value>
        </context-param>

        <context-param>
        <param-name>com.icesoft.faces.actionURLSuffix</param-name>
        <param-value>.seam</param-value>
        </context-param>

        Show
        Brad Kroeger added a comment - Found two undocumented context-params in applications located in the Projects folder: <context-param> <param-name>com.icesoft.faces.doJSFStateManagement</param-name> <param-value>true</param-value> </context-param> <context-param> <param-name>com.icesoft.faces.actionURLSuffix</param-name> <param-value>.seam</param-value> </context-param>
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16198 Tue Apr 01 13:44:28 MDT 2008 brad.kroeger ICE-2401 Comment out com.sun.faces.config.ConfigureListener
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone4/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone7/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone3/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone5/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/portlet/chat/conf/web.sunri.icefaces.portlet.ahs.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase/conf/web.sunri.icefaces.portlet.tomcat.ahs.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/portlet/chat/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/address-demo/conf/web.sunri.icefaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone2/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase2/portlets/conf/web.sunri.icefaces.portlet.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone3/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase2/facelets/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/effects1/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase/conf/web.sunri.icefaces.facelet.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone6/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase/conf/web.sunri.icefaces.portlet.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone5/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/portlet/chat/conf/web.sunri.icefaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/dragdrop1/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone2/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/portlet/chat/conf/web.sunri.icefaces.portlet.tomcat.ahs.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/dragdrop2/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/basicInputText/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase/conf/web.sunri.icefaces.ce.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase/conf/web.sunri.icefaces.portlet.ahs.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/effects1/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/effects2/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/tiles/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/auctionMonitor/config/web.sunri.icefaces.ce.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/effects2/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/dragdrop1/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone4/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/component-showcase2/jsp/web/WEB-INF/web.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/dragdrop2/web/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16199 Tue Apr 01 14:05:17 MDT 2008 brad.kroeger ICE-2401 Comment out com.sun.faces.config.ConfigureListener
        Files Changed
        Commit graph MODIFY /projects/webmc/trunk/webmc/web/WEB-INF/web.xml
        Commit graph MODIFY /projects/webmail/trunk/webmail/web/WEB-INF/web.xml
        Commit graph MODIFY /projects/seam-component-showcase/trunk/seam-component-showcaseWAR/resources-tomcat/WEB-INF/web.xml
        Repository Revision Date User Message
        ICEsoft Public SVN Repository #16201 Tue Apr 01 15:54:43 MDT 2008 brad.kroeger ICE-2401 Change DEFAULT_SUFFIX from .iface to .jsp or .jspx in web_myfaces.xml.
        Files Changed
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone4/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/dragdrop2/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/effects1/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/effects2/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone3/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/dragdrop1/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone5/web/WEB-INF/web_myfaces.xml
        Commit graph MODIFY /icefaces/trunk/icefaces/samples/tutorial/timezone2/web/WEB-INF/web_myfaces.xml
        Hide
        Ken Fyten added a comment -

        Fixed.

        Show
        Ken Fyten added a comment - Fixed.
        Ken Fyten made changes -
        Status Open [ 1 ] Resolved [ 5 ]
        Assignee Priority P1
        Resolution Fixed [ 1 ]
        Assignee Brad Kroeger [ brad.kroeger ]
        Ken Fyten made changes -
        Status Resolved [ 5 ] Closed [ 6 ]

          People

          • Assignee:
            Unassigned
            Reporter:
            Philip Breau
          • Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: