<f:view xmlns:h="http://java.sun.com/jsf/html"
       xmlns:f="http://java.sun.com/jsf/core"      
       xmlns:ice="http://www.icesoft.com/icefaces/component">
  <html>
     <head>
         <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
         <title>page 2</title>        
     </head>
     <body>
         <ice:form>
             <p>ON PAGE 2</p>
             
             <ice:panelGrid>                                                            
                 <ice:commandLink value="commandLink to page1" action="toPage1" type="submit"/>                                
                 <ice:outputLink value="#{facesContext.externalContext.requestContextPath}/page1.iface">
                     <ice:outputText value="outputLink to Page1"/>
                 </ice:outputLink>
             </ice:panelGrid>
         </ice:form>                        
     </body>
 </html>
</f:view>