From cea2f395ec773b386ec628d60120752cf320f6b6 Mon Sep 17 00:00:00 2001
From: Thomas Lenz
Date: Mon, 27 Jan 2014 16:27:02 +0100
Subject: add PVP2 Demo Application change SZRGWClient to JAXWs
---
id/oa/src/main/webapp/index.jsp | 60 -----------------------------------------
1 file changed, 60 deletions(-)
delete mode 100644 id/oa/src/main/webapp/index.jsp
(limited to 'id/oa/src/main/webapp/index.jsp')
diff --git a/id/oa/src/main/webapp/index.jsp b/id/oa/src/main/webapp/index.jsp
deleted file mode 100644
index 35e49d743..000000000
--- a/id/oa/src/main/webapp/index.jsp
+++ /dev/null
@@ -1,60 +0,0 @@
-<%@ page import="java.util.*,javax.servlet.http.*,sun.misc.BASE64Decoder" %>
-
-
-Sample Online Application
-
-
-Sample Online Application
-
-Request headers:
-
- <%
- /* collect parameters from request */
- for (Enumeration headers = request.getHeaderNames(); headers.hasMoreElements(); ) {
- String key = (String) headers.nextElement();
- String value = request.getHeader(key); %>
- <%=key%> | <%=value%> |
- <% } %>
-
-
-
-<% String query=request.getQueryString(); %>
-QueryString: "<%=query%>"
-
-
-Request parameters:
-
- <%
- /* collect parameters from request */
- for (Enumeration params = request.getParameterNames(); params.hasMoreElements(); ) {
- String name = (String) params.nextElement();
- String value = request.getParameter(name); %>
- <%=name%> | <%=value%> |
- <% } %>
-
-
-
-Cookies:
-
- <%
- /* collect attributes from request */
- Cookie[] cookies = request.getCookies();
- if (cookies != null) {
- for (int i = 0; i < cookies.length; i++) {
- Cookie cookie = cookies[i]; %>
- <%=cookie.getName()%> | <%=cookie.getValue()%> |
- <% }
- } %>
-
-
-
-<% String authHeader = request.getHeader("Authorization");
- if (authHeader != null) {
- authHeader = authHeader.substring(authHeader.indexOf(" ")+1);
- String decAuthHeader = new String(new BASE64Decoder().decodeBuffer(authHeader));
-%>
-Basic authentication credentials: <%=decAuthHeader%>
-<% } %>
-Form sample
-
-
\ No newline at end of file
--
cgit v1.2.3