index.xhtml

La pagina index.xhtml

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://xmlns.jcp.org/jsf/html"
      xmlns:f="http://xmlns.jcp.org/jsf/core">
    <h:head>
        <title></title>       
    </h:head>
    <script type="text/javascript">
        function socketListener(message, channel, event) {
            document.getElementById("clockId").innerHTML += message + "<br/>";
        }
    </script>    
    <h:body>         
        <h:form>            
            <h:commandButton value="Clock" action="#{pushBean.clockAction()}">
                <f:ajax />
            </h:commandButton>
        </h:form>

        <f:websocket channel="clock" onmessage="socketListener" />        

        <hr/>
        <div id="clockId"></div>


        <br />
        <h:link outcome="welcomePrimefaces" value="Primefaces welcome page" />
    </h:body>
</html>

Last updated