You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
822 B

7 years ago
  1. <%--
  2. Document : index
  3. Created on : Jan 5, 2017, 10:48:32 PM
  4. Author : eldermoraes
  5. --%>
  6. <%@ page import="java.net.InetAddress"%>
  7. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  12. <title>Cluster Test</title>
  13. </head>
  14. <body>
  15. <center>
  16. <h1>The request is being answered by:</h1>
  17. <h2><font color="red">IP: <%=InetAddress.getLocalHost().getHostAddress()%></font></h2>
  18. <h2><font color="blue">HostName: <%=InetAddress.getLocalHost().getCanonicalHostName() %></font></h2>
  19. <h2><font color="green">Session ID: <%=request.getSession().getId() %></font></h2>
  20. </center>
  21. </body>
  22. </html>