org.symbian.tools.wrttools.previewer/http-content/wrtdebugger/connectionTest.jsp
author John Kern <johnk@symbian.org>
Tue, 16 Feb 2010 16:21:02 -0800
changeset 160 9229a5237a62
parent 41 fc4a1d68260a
permissions -rw-r--r--
explicitly pass source and build to equinox

<%@ page import="org.symbian.tools.wrttools.previewer.http.WebAppInterface, javax.servlet.http.HttpServletResponse" %>
<%
	String widget = WebAppInterface.decode(request.getParameter("widget"));
	String id = request.getParameter("session");
	
	if (WebAppInterface.isConnected(widget, id)) {
		response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
	}
%>