From 4876eb037f3f8b2618c0a06f25f56003fc47fe2e Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Thu, 1 Mar 2012 11:31:50 +0100 Subject: [PATCH] Removing legacy section of documentation --- akka-docs/intro/deployment-scenarios.rst | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/akka-docs/intro/deployment-scenarios.rst b/akka-docs/intro/deployment-scenarios.rst index f8d6f6b197..b2d0334c7d 100644 --- a/akka-docs/intro/deployment-scenarios.rst +++ b/akka-docs/intro/deployment-scenarios.rst @@ -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 that’s 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 ----------------------------------------