Tagging the 1.0.0 release of the 'rampartc' project.
diff --git a/rampart-bindist.sh b/rampart-bindist.sh
index 4f83d98..732c181 100755
--- a/rampart-bindist.sh
+++ b/rampart-bindist.sh
@@ -58,6 +58,7 @@
 echo "Copy libraries"
 cp $AXIS2C_HOME/lib/liboxstokens.* $BIN_DIR/lib
 cp $AXIS2C_HOME/lib/libomxmlsec.* $BIN_DIR/lib
+cp $AXIS2C_HOME/lib/libomopenssl.* $BIN_DIR/lib
 
 echo "Copy samples"
 #copy samples
diff --git a/samples/authn_provider/authn_provider.c b/samples/authn_provider/authn_provider.c
index 9c313f8..b14b474 100644
--- a/samples/authn_provider/authn_provider.c
+++ b/samples/authn_provider/authn_provider.c
@@ -27,7 +27,7 @@
 #include <axutil_string.h>
 
 axis2_char_t* AXIS2_CALL
-ramaprt_authn_get_sample_password(const axutil_env_t *env,
+rampart_authn_get_sample_password(const axutil_env_t *env,
         const axis2_char_t *username)
 {
     /*First set pf password are for sample usernames*/
@@ -88,7 +88,7 @@
                 const axis2_char_t *password)
 {
     axis2_char_t *local_pw = NULL;
-    local_pw = ramaprt_authn_get_sample_password(env, username);
+    local_pw = rampart_authn_get_sample_password(env, username);
     AXIS2_LOG_INFO(env->log, "[rampart][authn_provider_sample] Load the password - default impl");
     if(local_pw){
         /*Compare passwords*/
@@ -117,7 +117,7 @@
 
     axis2_char_t *local_pw = NULL;
 
-    local_pw = ramaprt_authn_get_sample_password_from_file(env, username);
+    local_pw = rampart_authn_get_sample_password(env, username);
     if(local_pw){
         axis2_char_t *local_digest = NULL;
         /*Generate the digest*/
diff --git a/samples/secpolicy/scenario6/client-policy.xml b/samples/secpolicy/scenario6/client-policy.xml
deleted file mode 100644
index 5ca6369..0000000
--- a/samples/secpolicy/scenario6/client-policy.xml
+++ /dev/null
@@ -1,69 +0,0 @@
-<wsp:Policy xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy">
-    <wsp:ExactlyOne>
-        <wsp:All>
-            <sp:AsymmetricBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
-                <wsp:Policy>
-                    <sp:InitiatorToken>
-                        <wsp:Policy>
-                            <sp:X509Token sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
-                                <wsp:Policy>
-                                    <sp:WssX509V3Token10/>
-                                </wsp:Policy>
-                            </sp:X509Token>
-                        </wsp:Policy>
-                    </sp:InitiatorToken>
-                    <sp:RecipientToken>
-                        <wsp:Policy>
-                            <sp:X509Token sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never">
-                                <wsp:Policy>
-                                    <sp:WssX509V3Token10/>
-                                </wsp:Policy>
-                            </sp:X509Token>
-                        </wsp:Policy>
-                    </sp:RecipientToken>
-                    <sp:AlgorithmSuite>
-                        <wsp:Policy>
-                            <sp:Basic256Rsa15/>
-                        </wsp:Policy>
-                    </sp:AlgorithmSuite>
-                    <sp:Layout>
-                        <wsp:Policy>
-                            <sp:Strict/>
-                        </wsp:Policy>
-                    </sp:Layout>
-                    <sp:IncludeTimestamp/>
-                    <!--sp:EncryptBeforeSigning/-->
-                </wsp:Policy>
-            </sp:AsymmetricBinding>
-            <sp:SignedSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
-            <wsp:Policy>
-                <sp:UsernameToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Always"/>
-            </wsp:Policy>
-            </sp:SignedSupportingTokens>
-            <sp:Wss10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
-                <wsp:Policy>
-                    <sp:MustSupportRefKeyIdentifier/>
-                    <sp:MustSupportRefEmbeddedToken/>
-                    <sp:MustSupportRefIssuerSerial/>
-                </wsp:Policy>
-            </sp:Wss10>
-            <sp:EncryptedParts xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
-                <sp:Body/>
-            </sp:EncryptedParts>
-            <sp:SignedParts xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
-                <sp:Body/>
-                <sp:Header Namespace="http://www.w3.org/2005/08/addressing"/>
-            </sp:SignedParts>
-            <rampc:RampartConfig xmlns:rampc="http://ws.apache.org/rampart/c/policy">
-                <rampc:User>Alice</rampc:User>
-                <rampc:TimeToLive>360</rampc:TimeToLive>
-                <rampc:EncryptionUser>a</rampc:EncryptionUser>
-                <rampc:PasswordType>Digest</rampc:PasswordType>
-                <rampc:PasswordCallbackClass>AXIS2C_HOME/bin/samples/rampart/callback/libpwcb.so</rampc:PasswordCallbackClass>
-                <rampc:ReceiverCertificate>AXIS2C_HOME/bin/samples/rampart/keys/ahome/bob_cert.cert</rampc:ReceiverCertificate>
-                <rampc:Certificate>AXIS2C_HOME/bin/samples/rampart/keys/ahome/alice_cert.cert</rampc:Certificate>
-                <rampc:PrivateKey>AXIS2C_HOME/bin/samples/rampart/keys/ahome/alice_key.pem</rampc:PrivateKey>
-            </rampc:RampartConfig>
-        </wsp:All>
-    </wsp:ExactlyOne>
-</wsp:Policy>
diff --git a/samples/secpolicy/scenario6/services.xml b/samples/secpolicy/scenario6/services.xml
deleted file mode 100644
index 54ac61a..0000000
--- a/samples/secpolicy/scenario6/services.xml
+++ /dev/null
@@ -1,83 +0,0 @@
-<service name="sec_echo">
-    <parameter name="ServiceClass" locked="xsd:false">sec_echo</parameter>
-
-   <description>
-        This is a testing service , to test the system is working or not
-   </description>
-    <module ref="addressing"/>
-    <module ref="rampart"/>
-
-    <operation name="echoString">
-            <parameter name="wsamapping">http://example.com/ws/2004/09/policy/Test/EchoRequest</parameter>
-    </operation>
-
-    <wsp:Policy xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy">
-        <wsp:ExactlyOne>
-            <wsp:All>
-                <sp:AsymmetricBinding xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
-                    <wsp:Policy>
-                        <sp:InitiatorToken>
-                            <wsp:Policy>
-                                <sp:X509Token sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
-                                    <wsp:Policy>
-                                        <sp:WssX509V3Token10/>
-                                    </wsp:Policy>
-                                </sp:X509Token>
-                            </wsp:Policy>
-                        </sp:InitiatorToken>
-                        <sp:RecipientToken>
-                            <wsp:Policy>
-                                <sp:X509Token sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never">
-                                    <wsp:Policy>
-                                        <sp:WssX509V3Token10/>
-                                    </wsp:Policy>
-                                </sp:X509Token>
-                            </wsp:Policy>
-                        </sp:RecipientToken>
-                        <sp:AlgorithmSuite>
-                            <wsp:Policy>
-                                <sp:Basic256Rsa15/>
-                            </wsp:Policy>
-                        </sp:AlgorithmSuite>
-                        <sp:Layout>
-                            <wsp:Policy>
-                                <sp:Strict/>
-                            </wsp:Policy>
-                        </sp:Layout>
-                        <sp:IncludeTimestamp/>
-                        <!--sp:EncryptBeforeSigning/-->
-                    </wsp:Policy>
-                </sp:AsymmetricBinding>
-                <sp:SignedSupportingTokens xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
-                <wsp:Policy>
-                    <sp:UsernameToken sp:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Always"/>
-                </wsp:Policy>
-                </sp:SignedSupportingTokens>
-                <sp:Wss10 xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
-                    <wsp:Policy>
-                        <sp:MustSupportRefKeyIdentifier/>
-                        <sp:MustSupportRefEmbeddedToken/>
-                        <sp:MustSupportRefIssuerSerial/>
-                    </wsp:Policy>
-                </sp:Wss10>
-                <sp:EncryptedParts xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
-                    <sp:Body/>
-                </sp:EncryptedParts>
-                <sp:SignedParts xmlns:sp="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
-                    <sp:Body/>
-                </sp:SignedParts>
-                <rampc:RampartConfig xmlns:rampc="http://ws.apache.org/rampart/c/policy">
-                    <rampc:User>Bob</rampc:User>
-                    <rampc:TimeToLive>360</rampc:TimeToLive>
-                    <rampc:EncryptionUser>b</rampc:EncryptionUser>
-                    <rampc:PasswordType>Digest</rampc:PasswordType>
-                    <rampc:PasswordCallbackClass>AXIS2C_HOME/bin/samples/rampart/callback/libpwcb.so</rampc:PasswordCallbackClass>
-                    <rampc:ReceiverCertificate>AXIS2C_HOME/bin/samples/rampart/keys/bhome/alice_cert.cert</rampc:ReceiverCertificate>
-                    <rampc:Certificate>AXIS2C_HOME/bin/samples/rampart/keys/bhome/bob_cert.cert</rampc:Certificate>
-                    <rampc:PrivateKey>AXIS2C_HOME/bin/samples/rampart/keys/bhome/bob_key.pem</rampc:PrivateKey>
-                    <rampc:ReplayDetection>3</rampc:ReplayDetection>
-                </rampc:RampartConfig>
-            </wsp:All>
-        </wsp:ExactlyOne>
-    </wsp:Policy>
-</service>
diff --git a/src/omxmlsec/openssl/Makefile.am b/src/omxmlsec/openssl/Makefile.am
index ce0708d..1c70fef 100644
--- a/src/omxmlsec/openssl/Makefile.am
+++ b/src/omxmlsec/openssl/Makefile.am
@@ -1,4 +1,4 @@
-noinst_LTLIBRARIES = libomopenssl.la
+lib_LTLIBRARIES =libomopenssl.la
 libomopenssl_la_SOURCES = cipher_ctx.c crypt.c rsa.c pkey.c util.c cipher_property.c digest.c x509.c pkcs12.c pem.c sign.c
 
 libomopenssl_la_LIBADD  = -lssl\
diff --git a/xdocs/index.html b/xdocs/index.html
index 60e9904..9630dfc 100644
--- a/xdocs/index.html
+++ b/xdocs/index.html
@@ -10,7 +10,7 @@
 <body xml:lang="en">
 <h1>Welcome to Apache Rampart/C</h1>
 
-<p>Apache Rampart/C is the security module for Apache Axis2/C. It features in many ways to protect SOAP messages exchanged. This includes SOAP message encryption and signature as specified in <a href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0.pdf">WS-Security Specification</a>. In addition Apache Rampart/C configurations are based on security policy assertions as per <a href="http://specs.xmlsoap.org/ws/2005/07/securitypolicy/ws-securitypolicy.pdf">WS-Security Policy specificatoin</a></p>
+<p>Apache Rampart/C is the security module for <a href="http://ws.apache.org/axis2/c/">Apache Axis2/C</a>. It features in many ways to protect SOAP messages exchanged. This includes SOAP message encryption and signature as specified in <a href="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0.pdf">WS-Security Specification</a>. In addition Apache Rampart/C configurations are based on security policy assertions as per <a href="http://specs.xmlsoap.org/ws/2005/07/securitypolicy/ws-securitypolicy.pdf">WS-Security Policy specificatoin</a></p>
 
 <h2>Why Apache Rampart/C ?</h2>
 <p>In distributed computing, web services play a crucial role. But as many distributed systems web services are also vulnerable for security threats. Developers are always struggling to ensure the integrity, confidentiality of messages. Implementing the right security solution can be an expensive and time consuming task. Rampart/C makes the life easier for those who uses Axis2/C, by providing a configurable security module, which protect SOAP messages from such threats.
@@ -18,8 +18,8 @@
 
 <h2>Latest Release</h2>
 
-<h3>11th May 2007 - Apache Rampart/C Version 0.90 Released</h3>
-<a href="http://ws.apache.org/rampart/c/download.cgi">Download 0.90</a>
+<h3>5th Oct 2007 - Apache Rampart/C Version 1.0 Released</h3>
+<a href="http://ws.apache.org/rampart/c/download.cgi">Download 1.0</a>
 
 <h4>Key Features</h4>
 <ol>
@@ -35,7 +35,19 @@
     <li><strong>Policy based configurations</strong> as per WS-Security Policy : Allows users to express their security related requirements and constraints</li>
 </ol>
 <h4>Major Changes Since Last Release</h4>
-  <p>Apache Rampart/C still in the first release. </p>
+<p>
+ <ol>
+	<li>WS-Security Policy (<a href="http://specs.xmlsoap.org/ws/2005/07/securitypolicy/ws-securitypolicy.pdf">spec 1.1</a>) based configurations</li>
+	<li>Replay detection support</li>
+	<li>Improvements to the context model</li>
+	<li>Authentication module implementation</li>
+	<li>Credentials module implementation</li>
+	<li>Impirovements to Key/Certificate loading mechanisms</li>
+	<li>Easy to use deployment scripts</li>
+	<li>Memory leak fixes</li>
+	<li>Many bug fixes</li>
+ </ol>
+</p>
 
 </body>
 </html>