blob: be01e123d7cc3a338b0ef7edc283c51e32d918fc (
plain) (
tree)
|
|
<%@ 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"); %>
|