Author: alessio.soldano(a)jboss.com
Date: 2008-02-19 11:46:08 -0500 (Tue, 19 Feb 2008)
New Revision: 5734
Added:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/Hello.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/HelloJavaBean.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/SimpleEncryptTestCase.java
stack/native/trunk/src/test/resources/jaxws/jbws1814/
stack/native/trunk/src/test/resources/jaxws/jbws1814/Alice.cer
stack/native/trunk/src/test/resources/jaxws/jbws1814/Bob.cer
stack/native/trunk/src/test/resources/jaxws/jbws1814/John.cer
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/alice-sign_enc.jks
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/jboss-wsse-client.xml
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/john-sign_enc.jks
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/wsse10.truststore
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/bob-sign_enc.jks
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/jboss-web.xml
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/jboss-wsse-server.xml
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/web.xml
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/wsse10.truststore
stack/native/trunk/src/test/resources/jaxws/jbws1814/alice.pfx
stack/native/trunk/src/test/resources/jaxws/jbws1814/bob.pfx
stack/native/trunk/src/test/resources/jaxws/jbws1814/readme.txt
Modified:
stack/native/trunk/ant-import-tests/build-jars-jaxws.xml
Log:
[JBWS-1814] Adding test
Modified: stack/native/trunk/ant-import-tests/build-jars-jaxws.xml
===================================================================
--- stack/native/trunk/ant-import-tests/build-jars-jaxws.xml 2008-02-19 15:09:11 UTC (rev
5733)
+++ stack/native/trunk/ant-import-tests/build-jars-jaxws.xml 2008-02-19 16:46:08 UTC (rev
5734)
@@ -490,6 +490,16 @@
<include name="application.xml"/>
</metainf>
</jar>
+
+ <!-- jaxws-jbws1814 -->
+ <war warfile="${tests.output.dir}/libs/jaxws-jbws1814.war"
webxml="${tests.output.dir}/resources/jaxws/jbws1814/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1814/HelloJavaBean.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/resources/jaxws/jbws1814/WEB-INF">
+ <include name="*"/>
+ </webinf>
+ </war>
<!-- jaxws-jbws1815 -->
<jar destfile="${tests.output.dir}/libs/jaxws-jbws1815.jar">
Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/Hello.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/Hello.java
(rev 0)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/Hello.java 2008-02-19
16:46:08 UTC (rev 5734)
@@ -0,0 +1,34 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.test.ws.jaxws.jbws1814;
+
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+
+@WebService(name = "Hello", targetNamespace =
"http://org.jboss.ws/jbws1814")
+@SOAPBinding(style = SOAPBinding.Style.RPC)
+public interface Hello
+{
+ @WebMethod
+ public String echo(String par);
+}
Property changes on:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/Hello.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/HelloJavaBean.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/HelloJavaBean.java
(rev 0)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/HelloJavaBean.java 2008-02-19
16:46:08 UTC (rev 5734)
@@ -0,0 +1,44 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.test.ws.jaxws.jbws1814;
+
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+
+import org.jboss.logging.Logger;
+import org.jboss.ws.annotation.EndpointConfig;
+
+@WebService(name = "Hello", serviceName = "HelloService",
targetNamespace = "http://org.jboss.ws/jbws1814")
+@EndpointConfig(configName = "Standard WSSecurity Endpoint")
+@SOAPBinding(style = SOAPBinding.Style.RPC)
+public class HelloJavaBean
+{
+ private Logger log = Logger.getLogger(HelloJavaBean.class);
+
+ @WebMethod
+ public String echo(String par)
+ {
+ log.info(par);
+ return par;
+ }
+}
Property changes on:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/HelloJavaBean.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/SimpleEncryptTestCase.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/SimpleEncryptTestCase.java
(rev 0)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/SimpleEncryptTestCase.java 2008-02-19
16:46:08 UTC (rev 5734)
@@ -0,0 +1,127 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
+ */
+package org.jboss.test.ws.jaxws.jbws1814;
+
+import java.io.File;
+import java.net.URL;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+
+import junit.framework.Test;
+
+import org.jboss.ws.core.StubExt;
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+
+/**
+ * Dynamic Encryption based on clients input
+ *
+ * @author alessio.soldano(a)jboss.com
+ * @since 19-02-2008
+ */
+public class SimpleEncryptTestCase extends JBossWSTest
+{
+ private String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() +
":8080/jaxws-jbws1814";
+
+ private String keyStore;
+ private String trustStore;
+ private String keyStorePassword;
+ private String trustStorePassword;
+ private String keyStoreType;
+ private String trustStoreType;
+
+
+ public static Test suite() throws Exception
+ {
+ return new JBossWSTestSetup(SimpleEncryptTestCase.class,
"jaxws-jbws1814.war");
+ }
+
+ public void testAlice() throws Exception
+ {
+ try
+ {
+ setEnvironment("alice");
+ Hello hello = getPort();
+ String result = hello.echo("alice");
+ assertEquals("alice", result);
+ }
+ finally
+ {
+ restoreEnvironment();
+ }
+ }
+
+ public void testJohn() throws Exception
+ {
+ try
+ {
+ setEnvironment("john");
+ Hello hello = getPort();
+ String result = hello.echo("john");
+ assertEquals("john", result);
+ }
+ finally
+ {
+ restoreEnvironment();
+ }
+ }
+
+ private Hello getPort() throws Exception
+ {
+ URL wsdlURL = new URL(TARGET_ENDPOINT_ADDRESS + "?wsdl");
+ QName serviceName = new QName("http://org.jboss.ws/jbws1814",
"HelloService");
+ Hello port = Service.create(wsdlURL, serviceName).getPort(Hello.class);
+ URL securityURL = new
File("resources/jaxws/jbws1814/META-INF/jboss-wsse-client.xml").toURL();
+ ((StubExt)port).setSecurityConfig(securityURL.toExternalForm());
+ ((StubExt)port).setConfigName("Standard WSSecurity Client");
+ return port;
+ }
+
+ private void setEnvironment(String client)
+ {
+ //Backup values
+ keyStore = System.getProperty("org.jboss.ws.wsse.keyStore");
+ keyStorePassword =
System.getProperty("org.jboss.ws.wsse.keyStorePassword");
+ keyStoreType = System.getProperty("org.jboss.ws.wsse.keyStoreType");
+ trustStore = System.getProperty("org.jboss.ws.wsse.trustStore");
+ trustStorePassword =
System.getProperty("org.jboss.ws.wsse.trustStorePassword");
+ trustStoreType = System.getProperty("org.jboss.ws.wsse.trustStoreType");
+ //Set values
+ System.setProperty("org.jboss.ws.wsse.keyStore",
"resources/jaxws/jbws1814/META-INF/" + client + "-sign_enc.jks");
+ System.setProperty("org.jboss.ws.wsse.trustStore",
"resources/jaxws/jbws1814/META-INF/wsse10.truststore");
+ System.setProperty("org.jboss.ws.wsse.keyStorePassword",
"password");
+ System.setProperty("org.jboss.ws.wsse.trustStorePassword",
"password");
+ System.setProperty("org.jboss.ws.wsse.keyStoreType", "jks");
+ System.setProperty("org.jboss.ws.wsse.trustStoreType", "jks");
+ }
+
+ private void restoreEnvironment()
+ {
+ System.setProperty("org.jboss.ws.wsse.keyStore", keyStore);
+ System.setProperty("org.jboss.ws.wsse.trustStore", trustStore);
+ System.setProperty("org.jboss.ws.wsse.keyStorePassword",
keyStorePassword);
+ System.setProperty("org.jboss.ws.wsse.trustStorePassword",
trustStorePassword);
+ System.setProperty("org.jboss.ws.wsse.keyStoreType", keyStoreType);
+ System.setProperty("org.jboss.ws.wsse.trustStoreType", trustStoreType);
+ }
+}
\ No newline at end of file
Property changes on:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1814/SimpleEncryptTestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/Alice.cer
===================================================================
(Binary files differ)
Property changes on: stack/native/trunk/src/test/resources/jaxws/jbws1814/Alice.cer
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/Bob.cer
===================================================================
(Binary files differ)
Property changes on: stack/native/trunk/src/test/resources/jaxws/jbws1814/Bob.cer
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/John.cer
===================================================================
(Binary files differ)
Property changes on: stack/native/trunk/src/test/resources/jaxws/jbws1814/John.cer
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/alice-sign_enc.jks
===================================================================
(Binary files differ)
Property changes on:
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/alice-sign_enc.jks
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added:
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/jboss-wsse-client.xml
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/jboss-wsse-client.xml
(rev 0)
+++
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/jboss-wsse-client.xml 2008-02-19
16:46:08 UTC (rev 5734)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<jboss-ws-security
xmlns="http://www.jboss.com/ws-security/config"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://www.jboss.com/ws-security/config
http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
+
+ <config>
+ <timestamp ttl="300"/>
+ <sign type="x509v3" alias="1"
includeTimestamp="true"/>
+ <encrypt type="x509v3" alias="bob"/>
+ <requires>
+ <signature/>
+ <encryption/>
+ </requires>
+ </config>
+</jboss-ws-security>
\ No newline at end of file
Property changes on:
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/jboss-wsse-client.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/john-sign_enc.jks
===================================================================
(Binary files differ)
Property changes on:
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/john-sign_enc.jks
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/wsse10.truststore
===================================================================
(Binary files differ)
Property changes on:
stack/native/trunk/src/test/resources/jaxws/jbws1814/META-INF/wsse10.truststore
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/bob-sign_enc.jks
===================================================================
(Binary files differ)
Property changes on:
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/bob-sign_enc.jks
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/jboss-web.xml
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/jboss-web.xml
(rev 0)
+++ stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/jboss-web.xml 2008-02-19
16:46:08 UTC (rev 5734)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!DOCTYPE jboss-web PUBLIC "-//JBoss//DTD Web Application 2.4//EN"
"http://www.jboss.org/j2ee/dtd/jboss-web_4_0.dtd">
+
+<jboss-web>
+ <context-root>/jaxws-jbws1814</context-root>
+</jboss-web>
\ No newline at end of file
Property changes on:
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/jboss-web.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/jboss-wsse-server.xml
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/jboss-wsse-server.xml
(rev 0)
+++
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/jboss-wsse-server.xml 2008-02-19
16:46:08 UTC (rev 5734)
@@ -0,0 +1,21 @@
+<jboss-ws-security
xmlns="http://www.jboss.com/ws-security/config"
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://www.jboss.com/ws-security/config
+
http://www.jboss.com/ws-security/schema/jboss-ws-security_1_0.xsd">
+ <key-store-file>WEB-INF/bob-sign_enc.jks</key-store-file>
+ <key-store-password>password</key-store-password>
+ <key-store-type>jks</key-store-type>
+ <trust-store-file>WEB-INF/wsse10.truststore</trust-store-file>
+ <trust-store-password>password</trust-store-password>
+
+ <config>
+ <timestamp ttl="300"/>
+ <sign type="x509v3" alias="1"
includeTimestamp="true"/>
+ <encrypt type="x509v3"/>
+ <requires>
+ <signature/>
+ <encryption/>
+ </requires>
+ </config>
+
+</jboss-ws-security>
Property changes on:
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/jboss-wsse-server.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/web.xml
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/web.xml
(rev 0)
+++ stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/web.xml 2008-02-19
16:46:08 UTC (rev 5734)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
+
+ <servlet>
+ <servlet-name>JBWS1814Endpoint</servlet-name>
+
<servlet-class>org.jboss.test.ws.jaxws.jbws1814.HelloJavaBean</servlet-class>
+ <load-on-startup>0</load-on-startup>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>JBWS1814Endpoint</servlet-name>
+ <url-pattern>/*</url-pattern>
+ </servlet-mapping>
+
+</web-app>
\ No newline at end of file
Property changes on: stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/web.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/wsse10.truststore
===================================================================
(Binary files differ)
Property changes on:
stack/native/trunk/src/test/resources/jaxws/jbws1814/WEB-INF/wsse10.truststore
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/alice.pfx
===================================================================
(Binary files differ)
Property changes on: stack/native/trunk/src/test/resources/jaxws/jbws1814/alice.pfx
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/bob.pfx
===================================================================
(Binary files differ)
Property changes on: stack/native/trunk/src/test/resources/jaxws/jbws1814/bob.pfx
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: stack/native/trunk/src/test/resources/jaxws/jbws1814/readme.txt
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/jbws1814/readme.txt
(rev 0)
+++ stack/native/trunk/src/test/resources/jaxws/jbws1814/readme.txt 2008-02-19 16:46:08
UTC (rev 5734)
@@ -0,0 +1,109 @@
+ -------------------------------------
+ Certificates & keystores
+ -------------------------------------
+
+
+ Alice - Client 1 John - Client 2 Bob - Server
+
+Signature+Encrypt
+-> Keystore alice-sign_enc.jks john-sign_enc.jks bob-sign_enc.jks
+-> Truststore wsse10.truststore wsse10.truststore wsse10.truststore
+
+
+
+> keytool -printcert -file Alice.cer
+
+Proprietario: CN=Alice, OU=OASIS Interop Test Cert, O=OASIS
+Organismo di emissione: CN=OASIS Interop Test CA, O=OASIS
+Numero di serie: 33a6047fb155631fed6721178150a899
+Valido da Sat Mar 19 01:00:00 CET 2005 a Tue Mar 20 00:59:59 CET 2018
+Impronte digitali certificato:
+ MD5: 57:CE:81:F1:03:C4:2C:F7:5B:1A:DE:AC:43:64:0A:84
+ SHA1: 6E:0E:88:F3:6E:BB:87:44:D4:70:F6:2F:60:4D:03:EA:4E:BE:50:94
+
+
+--------------------------------------------------------------------------------------
+> keytool -printcert -file Bob.cer
+Proprietario: CN=Bob, OU=OASIS Interop Test Cert, O=OASIS
+Organismo di emissione: CN=OASIS Interop Test CA, O=OASIS
+Numero di serie: 6038eedbfeac9bbec89d87d3abae71f8
+Valido da Sat Mar 19 01:00:00 CET 2005 a Tue Mar 20 00:59:59 CET 2018
+Impronte digitali certificato:
+ MD5: 89:3E:86:D2:4F:9C:E7:39:B6:71:8A:EF:00:C5:89:DC
+ SHA1: 35:03:34:20:1B:EE:A6:50:2D:11:34:2F:93:EE:A0:9F:C0:B5:DF:01
+
+
+--------------------------------------------------------------------------------------
+> keytool -printcert -file John.cer
+Proprietario: CN=John, OU=Test, O=Test, L=Test, ST=Test, C=IT
+Organismo di emissione: CN=John, OU=Test, O=Test, L=Test, ST=Test, C=IT
+Numero di serie: 47bac08f
+Valido da Tue Feb 19 12:42:07 CET 2008 a Mon May 19 13:42:07 CEST 2008
+Impronte digitali certificato:
+ MD5: 33:59:21:4E:1C:2F:21:7E:46:9A:48:0D:56:E4:50:99
+ SHA1: 68:46:92:0D:EF:65:BB:68:90:7C:5C:2D:0C:BD:60:F2:8E:62:1F:8B
+
+
+--------------------------------------------------------------------------------------
+keytool -list -keystore wsse10.truststore
+Immettere la password del keystore: password
+
+Tipo keystore: jks
+Provider keystore: SUN
+
+Il keystore contiene 3 entry
+
+alice, 9-mar-2006, trustedCertEntry,
+Impronta digitale certificato (MD5): 57:CE:81:F1:03:C4:2C:F7:5B:1A:DE:AC:43:64:0A:84
+bob, 9-mar-2006, trustedCertEntry,
+Impronta digitale certificato (MD5): 89:3E:86:D2:4F:9C:E7:39:B6:71:8A:EF:00:C5:89:DC
+john, 19-feb-2008, trustedCertEntry,
+Impronta digitale certificato (MD5): 33:59:21:4E:1C:2F:21:7E:46:9A:48:0D:56:E4:50:99
+
+
+--------------------------------------------------------------------------------------
+> keytool -list -keystore alice-sign_enc.jks
+Immettere la password del keystore: password
+
+Tipo keystore: jks
+Provider keystore: SUN
+
+Il keystore contiene 2 entry
+
+1, 27-ott-2007, keyEntry,
+Impronta digitale certificato (MD5): 57:CE:81:F1:03:C4:2C:F7:5B:1A:DE:AC:43:64:0A:84
+bob, 27-ott-2007, trustedCertEntry,
+Impronta digitale certificato (MD5): 89:3E:86:D2:4F:9C:E7:39:B6:71:8A:EF:00:C5:89:DC
+
+
+--------------------------------------------------------------------------------------
+> keytool -list -keystore bob-sign_enc.jks
+Immettere la password del keystore: password
+
+Tipo keystore: jks
+Provider keystore: SUN
+
+Il keystore contiene 3 entry
+
+alice, 27-ott-2007, trustedCertEntry,
+Impronta digitale certificato (MD5): 57:CE:81:F1:03:C4:2C:F7:5B:1A:DE:AC:43:64:0A:84
+1, 27-ott-2007, keyEntry,
+Impronta digitale certificato (MD5): 89:3E:86:D2:4F:9C:E7:39:B6:71:8A:EF:00:C5:89:DC
+john, 19-feb-2008, trustedCertEntry,
+Impronta digitale certificato (MD5): 33:59:21:4E:1C:2F:21:7E:46:9A:48:0D:56:E4:50:99
+
+
+--------------------------------------------------------------------------------------
+> keytool -list -keystore john-sign_enc.jks
+Immettere la password del keystore: password
+
+Tipo keystore: jks
+Provider keystore: SUN
+
+Il keystore contiene 2 entry
+
+1, 19-feb-2008, keyEntry,
+Impronta digitale certificato (MD5): 33:59:21:4E:1C:2F:21:7E:46:9A:48:0D:56:E4:50:99
+bob, 19-feb-2008, trustedCertEntry,
+Impronta digitale certificato (MD5): 89:3E:86:D2:4F:9C:E7:39:B6:71:8A:EF:00:C5:89:DC
+
Property changes on: stack/native/trunk/src/test/resources/jaxws/jbws1814/readme.txt
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF