view src/main/webapp/proxy.jsp @ 55:95bf4ac726e6

Topic synchronization with extraction-interface. new tables in LGService database
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Tue, 16 Feb 2016 15:09:40 +0100
parents 3e62083dbcbf
children
line wrap: on
line source

<%@ 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>