Packages: added unit-jsc (Java Servlet Container) family.

This commit is contained in:
Andrei Belov
2019-02-28 18:22:15 +03:00
parent 834e8ca576
commit 7ce6f05975
24 changed files with 2408 additions and 14 deletions

View File

@@ -0,0 +1,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"); %>