You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by ka...@apache.org on 2007/04/26 13:17:47 UTC

svn commit: r532704 - /webservices/rampart/trunk/c/INSTALL

Author: kaushalye
Date: Thu Apr 26 04:17:46 2007
New Revision: 532704

URL: http://svn.apache.org/viewvc?view=rev&rev=532704
Log:
Make installation instructions more user friendly

Modified:
    webservices/rampart/trunk/c/INSTALL

Modified: webservices/rampart/trunk/c/INSTALL
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/INSTALL?view=diff&rev=532704&r1=532703&r2=532704
==============================================================================
--- webservices/rampart/trunk/c/INSTALL (original)
+++ webservices/rampart/trunk/c/INSTALL Thu Apr 26 04:17:46 2007
@@ -1,53 +1,42 @@
+Table of contents
+------------------
+    |_ Getting Rampart/C source working on Linux
+    |_ Getting Rampart/C binary distribution working on Linux
+    |_ Engage Rampart/C with axis2/C
+
+
 Getting Rampart/C source working on Linux
 ============================================
-
------------------------------------
 Build the source
------------------------------------
 
 This can be done using the following command sequence:
         ./configure
         make
         make install
 
+Getting Rampart/C binary distribution working on Linux
+============================================
+1. Copy modules/rampart to $AXIS2C_HOME/modules
+2. Copy samples/sec_echo to $AXIS2C_HOME/services/
+3. Engage rampart as described above (section: Engage Rampart/C with axis2/C) 
+4. Go to samples/secpolicy/ and try a scenario
+    %s test_scen.sh scenarioX server-port
+
 
 Engage Rampart/C with axis2/C
 ============================================
-
------------------------------------
 Prerequisites:
 -----------------------------------
 You must have openssl installed in you system.
 
------------------------------------
 Configuring:
 -----------------------------------
-
 1. Run build.sh in rampart/trunk/c directory
-
 2. This will install the rampart module under AXIS2C_HOME/deploy/modules
-
 3. To engage rampart add to axis2.xml
     <module ref="rampart"/>
 
-NOTE: See the README file in samples/client/enc_echo for more information on configuration setup.
-
------------------------------------
-Writing callback modules:
------------------------------------
-
-User can specify which .so (or DLL) library to use to callback the password.
-For this user must provide a function pointer for get_password() operation in rampart_callback_t
-See samples/callback/pwcb.c for clarity
-
-
-Getting Rampart/C binary distribution working on Linux
-============================================
-1. Copy modules/rampart to $AXIS2C_HOME/modules
-2. Copy samples/sec_echo to $AXIS2C_HOME/services/
-3. Go to samples/secpolicy/ and try a scenario
-    %s test_scen.sh scenarioX server-port
-
+NOTE: See the README file in samples/client/sec_echo for more information on configuration setup.
 
 
 Thank you for using Rampart/C