Removing legacy section of documentation

This commit is contained in:
Viktor Klang 2012-03-01 11:31:50 +01:00
parent 2bc78e1026
commit 4876eb037f

View file

@ -23,18 +23,6 @@ This is most likely what you want if you are building Web applications. There
are several ways you can use Akka in Library mode by adding more and more
modules to the stack.
Actors as services
^^^^^^^^^^^^^^^^^^
The simplest way you can use Akka is to use the actors as services in your Web
application. All thats needed to do that is to put the Akka jars as well as
its dependency jars into ``WEB-INF/lib``. You also need to put the :ref:`configuration`
file in the ``$AKKA_HOME/config`` directory. Now you can create your
Actors as regular services referenced from your Web application. You should also
be able to use the Remoting service, e.g. be able to make certain Actors remote
on other hosts. Please note that remoting service does not speak HTTP over port
80, but a custom protocol over the port is specified in :ref:`configuration`.
Using Akka as a stand alone microkernel
----------------------------------------