<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <p><br>
    </p>
    <br>
    <div class="moz-cite-prefix">On 2/7/17 11:24 AM, Liam Hoekenga
      wrote:<br>
    </div>
    <blockquote
cite="mid:CAH4ZtKRd9-5oRmoz=uh0pwTvWU_VzOwLtZ5-f6E2EaSHMKh0XA@mail.gmail.com"
      type="cite">
      <div dir="ltr">
        <div class="gmail_extra">
          <div class="gmail_quote"><br>
            <div>So it /should/ be something like this?</div>
            <div><br>
            </div>
            <div>
              <div>    <servlet></div>
              <div>       
                <servlet-name>RemoteUserAuthHandler</servlet-name></div>
              <div>       
<servlet-class>net.shibboleth.idp.authn.impl.RemoteUserAuthServlet</servlet-class></div>
              <div>       
                <load-on-startup>2</load-on-startup></div>
              <div>        <context-param></div>
              <div>           
                <param-name>authnMethodHeader</param-name></div>
              <div>            <param-value><span
                  style="font-size:12.8px">UMAuthnContext</span></param-value></div>
              <div>        </context-param></div>
              <div>    </servlet></div>
            </div>
            <br>
          </div>
        </div>
      </div>
    </blockquote>
    <br>
    <br>
    Almost, but not quite.  Params to a <servlet> (and also
    <filter>) are indicated by child elements called
    <init-param>, since they are used to initialize the servlet or
    filter.  They're not context parameters, which are params that are
    global to the whole servlet context.  Servlet and filter init params
    are local to that particular servlet or filter.<br>
  </body>
</html>