summaryrefslogblamecommitdiffhomepage
path: root/pkg/deb/debian.module/unit.example-jsc-app
blob: be01e123d7cc3a338b0ef7edc283c51e32d918fc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                                                                                               
<%@ page contentType="text/plain"%><%@ page import="java.util.*" %>This is plain text response for "<%= request.getMethod() %> <%= request.getRequestURI() %>".
Here is the list of all system properties:
<%
    Properties p = System.getProperties();
    Enumeration keys = p.keys();
    while (keys.hasMoreElements()) {
        String key = (String) keys.nextElement();
        String value = (String) p.get(key);
        out.println("  " + key + " : " + value);
    }
%>
<% response.addHeader("X-Unit-JSP", "ok"); %>