view src/main/webapp/proxy.jsp @ 58:b8ad346e39a0

new: modify based on doc 'Improving LGServices interface.docx': user workflow improvement, functions like adding task into a topic and search suggestions.
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Mon, 02 May 2016 12:03:30 +0200
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>