eap-session-replication/src/main/webapp/index.jsp [41:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    <hr>

    <br> <b>Session Data</b>

    <br>
    <br>

    Session ID: <%=session.getId()%>

    <br>
    <br>

    <table>
        <tr>
            <th>Description</th>
            <th>Attribute Name</th>
            <th>Attribute Value</th>
        </tr>

        <tr>
            <td>Session counter</td>
            <td>demo.counter</td>
            <td><%= session.getAttribute("demo.counter") %></td>
        </tr>

        <tr>
            <td>Timestamp of last increment</td>
            <td>demo.timestamp</td>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



eap-session-replication/src/main/webapp/testHA.jsp [171:198]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    <hr>

    <br> <b>Session Data</b>

    <br>
    <br>

    Session ID: <%=session.getId()%>

    <br>
    <br>

    <table>
        <tr>
            <th>Description</th>
            <th>Attribute Name</th>
            <th>Attribute Value</th>
        </tr>

        <tr>
            <td>Session counter</td>
            <td>demo.counter</td>
            <td><%= session.getAttribute("demo.counter") %></td>
        </tr>

        <tr>
            <td>Timestamp of last increment</td>
            <td>demo.timestamp</td>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



