Adding documentation for specifying Mist root endpoint id in web.xml

This commit is contained in:
Viktor Klang 2011-06-05 22:13:16 -07:00
parent c52a352838
commit 94c977e455

View file

@ -193,6 +193,10 @@ In order to use Mist you have to register the MistServlet in *web.xml* or do the
<servlet>
<servlet-name>akkaMistServlet</servlet-name>
<servlet-class>akka.http.AkkaMistServlet</servlet-class>
<init-param> <!-- Optional, if empty or omitted, it will use the default in the akka.conf -->
<param-name>root-endpoint</param-name>
<param-value>address_of_root_endpoint_actor</param-value>
</init-param>
<!-- <async-supported>true</async-supported> Enable this for Servlet 3.0 support -->
</servlet>