Mercurial > dive4elements > river
view flys-client/src/main/java/de/intevation/flys/client/server/BaseServlet.java @ 2943:7683d4e43afa
Implement class representation of a Web Authentication Service (WAS)
request and response. If the authentication is successful the WAS
responses with a base64 encoded Security Assertion Markup Language.
The current implementation of the saml response simplifies the protocol
and misses validation.
flys-client/trunk@4909 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Bjoern Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Tue, 10 Jul 2012 10:49:18 +0000 |
parents | fba76f4afca9 |
children |
line wrap: on
line source
package de.intevation.flys.client.server; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import org.apache.log4j.Logger; /** Documentation goes here. */ public class BaseServlet extends HttpServlet { private static Logger logger = Logger.getLogger(BaseServlet.class); public static final String LOG4J_PROPERTIES = "FLYS_CLIENT_LOG4J_PROPERIES"; @Override public void init() throws ServletException { System.out.println("BaseServlet.init"); initLogging(); initConfigParameters(); } /** Init servlet wide logging. */ protected void initLogging() { String log4jProperties = System.getenv(LOG4J_PROPERTIES); if (log4jProperties == null || log4jProperties.length() == 0) { String file = getInitParameter("log4j-properties"); if (file != null && file.length() > 0) { log4jProperties = getServletContext().getRealPath(file); } } LoggingConfigurator.init(log4jProperties); } /** Set Context Attribute (parameter) from config.xml file. */ protected void initConfigParameters() { String url = getInitParameter("server-url"); logger.debug("Found server url: " + url); getServletContext().setAttribute("server-url", url); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :