diff src/main/webapp/proxy.jsp @ 0:3e62083dbcbf

First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
author "jurzua <jurzua@mpiwg-berlin.mpg.de>"
date Thu, 23 Apr 2015 15:46:01 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/webapp/proxy.jsp	Thu Apr 23 15:46:01 2015 +0200
@@ -0,0 +1,23 @@
+<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
+
+<html>
+
+	<head>
+
+		
+		<jsp:useBean id="proxy" class="de.mpiwg.web.jsp.JSPProxy" scope="request" >
+			<jsp:setProperty property="*" name="proxy"/>
+		</jsp:useBean>
+		
+		<jsp:setProperty name="proxy" property="request" value="${pageContext.request}" />
+		<jsp:setProperty name="proxy" property="response" value="${pageContext.response}" />
+		
+		<% 
+			response.sendRedirect(proxy.processRequest());
+		%>
+		
+	</head>
+	<body>
+	
+	</body>
+</html>
\ No newline at end of file