Author: alexoree
Date: Sat May 11 23:22:49 2013
New Revision: 1481453

URL: http://svn.apache.org/r1481453
Log:
Adding a test SSL certificate and configured Tomcat to startup using SSL.

Added:
    juddi/branches/juddi-3.2.x/juddi-tomcat/keystore.jks   (with props)
Modified:
    juddi/branches/juddi-3.2.x/juddi-gui/web/importFromWsdl.jsp
    juddi/branches/juddi-3.2.x/juddi-tomcat/build.xml
    juddi/branches/juddi-3.2.x/juddi-tomcat/server.xml

Modified: juddi/branches/juddi-3.2.x/juddi-gui/web/importFromWsdl.jsp
URL: 
http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-gui/web/importFromWsdl.jsp?rev=1481453&r1=1481452&r2=1481453&view=diff
==============================================================================
--- juddi/branches/juddi-3.2.x/juddi-gui/web/importFromWsdl.jsp (original)
+++ juddi/branches/juddi-3.2.x/juddi-gui/web/importFromWsdl.jsp Sat May 11 
23:22:49 2013
@@ -47,7 +47,7 @@
                             %>
                             <div class="alert alert-error">
                                 <button type="button" class="close" 
data-dismiss="alert">&times;</button>
-                                <h4>Warning!</h4>
+                                <h4><i class="icon-warning-sign"></i> 
Warning!</h4>
                                 Please consider switching to a secure 
connection such as SSL or TLS (the address bar starts with https://), 
                                 otherwise your password may be exposed.
                             </div>

Modified: juddi/branches/juddi-3.2.x/juddi-tomcat/build.xml
URL: 
http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-tomcat/build.xml?rev=1481453&r1=1481452&r2=1481453&view=diff
==============================================================================
--- juddi/branches/juddi-3.2.x/juddi-tomcat/build.xml (original)
+++ juddi/branches/juddi-3.2.x/juddi-tomcat/build.xml Sat May 11 23:22:49 2013
@@ -15,6 +15,7 @@
                <copy file="${basedir}/catalina.sh" 
todir="${basedir}/target/tomcat/apache-tomcat-${apache.tomcat.version}/bin" 
overwrite="true"/>
                <copy file="${basedir}/context.xml" 
todir="${webapps.dir}/juddiv3/META-INF" overwrite="true"/>
                <copy file="${basedir}/server.xml" todir="${conf.dir}" 
overwrite="true"/>
+               <copy file="${basedir}/keystore.jks" todir="${conf.dir}" 
overwrite="true"/>
                <copy file="${dependency.mysql.jar}" todir="${lib.dir}"/>
                <copy file="${dependency.postgres.jar}" todir="${lib.dir}"/>
                <copy file="${dependency.log4j.jar}" todir="${lib.dir}"/>

Added: juddi/branches/juddi-3.2.x/juddi-tomcat/keystore.jks
URL: 
http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-tomcat/keystore.jks?rev=1481453&view=auto
==============================================================================
Binary file - no diff available.

Propchange: juddi/branches/juddi-3.2.x/juddi-tomcat/keystore.jks
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: juddi/branches/juddi-3.2.x/juddi-tomcat/server.xml
URL: 
http://svn.apache.org/viewvc/juddi/branches/juddi-3.2.x/juddi-tomcat/server.xml?rev=1481453&r1=1481452&r2=1481453&view=diff
==============================================================================
--- juddi/branches/juddi-3.2.x/juddi-tomcat/server.xml (original)
+++ juddi/branches/juddi-3.2.x/juddi-tomcat/server.xml Sat May 11 23:22:49 2013
@@ -78,12 +78,13 @@
          This connector uses the JSSE configuration, when using APR, the 
          connector should be using the OpenSSL style configuration
          described in the APR documentation -->
-    <!--
+    
     <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
                maxThreads="150" scheme="https" secure="true"
-               clientAuth="false" sslProtocol="TLS" />
-    -->
-
+               clientAuth="false" sslProtocol="TLS" 
+                          keystoreFile="conf/keystore.jks" 
keystorePass="password"
+                          />
+    
     <!-- Define an AJP 1.3 Connector on port 8009 -->
     <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to