xref: /unit/pkg/deb/debian.module/unit.example-jsc-app (revision 980:e1c4434c1060)
1<%@ page contentType="text/plain"%><%@ page import="java.util.*" %>This is plain text response for "<%= request.getMethod() %> <%= request.getRequestURI() %>".
2Here is the list of all system properties:
3<%
4    Properties p = System.getProperties();
5    Enumeration keys = p.keys();
6    while (keys.hasMoreElements()) {
7        String key = (String) keys.nextElement();
8        String value = (String) p.get(key);
9        out.println("  " + key + " : " + value);
10    }
11%>
12<% response.addHeader("X-Unit-JSP", "ok"); %>
13