You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-commits@axis.apache.org by da...@apache.org on 2010/08/03 11:53:20 UTC

svn commit: r981798 - /axis/axis2/c/core/trunk/samples/server/session/README

Author: damitha
Date: Tue Aug  3 09:53:20 2010
New Revision: 981798

URL: http://svn.apache.org/viewvc?rev=981798&view=rev
Log: (empty)

Added:
    axis/axis2/c/core/trunk/samples/server/session/README

Added: axis/axis2/c/core/trunk/samples/server/session/README
URL: http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/samples/server/session/README?rev=981798&view=auto
==============================================================================
--- axis/axis2/c/core/trunk/samples/server/session/README (added)
+++ axis/axis2/c/core/trunk/samples/server/session/README Tue Aug  3 09:53:20 2010
@@ -0,0 +1,28 @@
+Before you run session client you need to deploy the session service running on Axis2/C Apache module.
+
+You need to build apache with mod-dbd enabled. I have the following configuration for Apache build.
+./configure --prefix=/usr/local/apache2 --enable-ssl --enable-setenvif --with-included-apr --with-mpm=prefork --enable-ssl --enable-setenvif --enable-dbd --enable-mods-shared="mod_log_config mod_status mod-mime mod-dir" 
+
+Then you need to add the following into to httpd.conf
+---------------------------------------------------------------------------
+DBDriver mysql
+DBDParams "dbname=axis2c user=<username> pass=<password>"
+
+DBDMin  4
+DBDKeep 8
+DBDMax  20
+DBDExptime 300
+DBDPrepareSQL "SELECT value FROM session WHERE id = %s" retrieve_session
+DBDPrepareSQL "INSERT INTO session(id, value) VALUES(%s,%s)" insert_session
+
+---------------------------------------------------------------------------
+
+You need to create a mysql table called session with following schema.
+
+mysql> desc session;
++-------+--------------+------+-----+---------+-------+
+| Field | Type         | Null | Key | Default | Extra |
++-------+--------------+------+-----+---------+-------+
+| id    | varchar(128) | YES  |     | NULL    |       | 
+| value | varchar(512) | YES  |     | NULL    |       | 
++-------+--------------+------+-----+---------+-------+