[jbossws-commits] JBossWS SVN: r8327 - in stack/native/trunk/modules: core/src/main/java/org/jboss/ws/core/soap and 7 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Oct 3 14:17:27 EDT 2008


Author: alessio.soldano at jboss.com
Date: 2008-10-03 14:17:27 -0400 (Fri, 03 Oct 2008)
New Revision: 8327

Added:
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/CRLFTestCase.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/Dto.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/Hello.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/HelloJavaBean.java
   stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/
   stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/
   stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/jboss-wsse-client.xml
   stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/jboss-wsse-server.xml
   stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/wsse.keystore
   stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/wsse.truststore
Modified:
   stack/native/trunk/modules/core/src/main/java/org/jboss/ws/Constants.java
   stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java
   stack/native/trunk/modules/testsuite/native-tests/scripts/build-jars-jaxws.xml
   stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleSignTestCase.java
Log:
[JBWS-2011] Adding new testcase and fixing issue


Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/Constants.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/Constants.java	2008-10-03 17:20:43 UTC (rev 8326)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/Constants.java	2008-10-03 18:17:27 UTC (rev 8327)
@@ -325,4 +325,6 @@
    static final String ASYNC_METHOD_SUFFIX = "Async";
    
    static final String EAGER_INITIALIZE_JAXB_CONTEXT_CACHE = "org.jboss.ws.eagerInitializeJAXBContextCache";
+   
+   static final String DOM_CONTENT_CANONICAL_NORMALIZATION = "org.jboss.ws.DOMContentCanonicalNormalization";
 }

Modified: stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java
===================================================================
--- stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java	2008-10-03 17:20:43 UTC (rev 8326)
+++ stack/native/trunk/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPContentElement.java	2008-10-03 18:17:27 UTC (rev 8327)
@@ -33,6 +33,7 @@
 import javax.xml.ws.handler.MessageContext.Scope;
 
 import org.jboss.logging.Logger;
+import org.jboss.ws.Constants;
 import org.jboss.ws.core.CommonMessageContext;
 import org.jboss.ws.core.jaxws.handler.MessageContextJAXWS;
 import org.jboss.ws.core.soap.SOAPContent.State;
@@ -538,7 +539,15 @@
    {      
       if (soapContent instanceof DOMContent)
       {
-         new DOMWriter(writer).print(this);
+         DOMWriter dw = new DOMWriter(writer);
+         CommonMessageContext ctx = MessageContextAssociation.peekMessageContext();
+         if (ctx != null && Boolean.TRUE == ctx.get(Constants.DOM_CONTENT_CANONICAL_NORMALIZATION))
+         {
+            if (log.isTraceEnabled())
+               log.trace("Forcing canonical normalization of DOMContent...");
+            dw.setCanonical(true);
+         }
+         dw.print(this);
       }
       else
       {

Modified: stack/native/trunk/modules/testsuite/native-tests/scripts/build-jars-jaxws.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/scripts/build-jars-jaxws.xml	2008-10-03 17:20:43 UTC (rev 8326)
+++ stack/native/trunk/modules/testsuite/native-tests/scripts/build-jars-jaxws.xml	2008-10-03 18:17:27 UTC (rev 8327)
@@ -256,6 +256,27 @@
       </metainf>
     </jar>
   	
+    <!-- jaxws-jbws2011-->
+    <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws2011.jar">
+      <fileset dir="${tests.output.dir}/test-classes">
+        <include name="org/jboss/test/ws/jaxws/jbws2011/*.class"/>
+        <exclude name="org/jboss/test/ws/jaxws/jbws2011/*TestCase.class"/>
+      </fileset>
+      <metainf dir="${tests.output.dir}/test-resources/jaxws/jbws2011/META-INF">
+        <include name="jboss-wsse-server.xml"/>
+      </metainf>
+      <metainf dir="${tests.output.dir}/test-resources/jaxws/jbws2011/">
+        <include name="wsse.truststore"/>
+      	<include name="wsse.keystore"/>
+      </metainf>
+    </jar>
+    <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws2011-client.jar">
+      <metainf dir="${tests.output.dir}/test-resources/jaxws/jbws2011">
+        <include name="wsse.truststore"/>
+        <include name="wsse.keystore"/>
+      </metainf>
+    </jar>
+  	
   	<!-- jaxws-jbws2014-->
     <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws2014-sign.jar">
       <fileset dir="${tests.output.dir}/test-classes">

Added: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/CRLFTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/CRLFTestCase.java	                        (rev 0)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/CRLFTestCase.java	2008-10-03 18:17:27 UTC (rev 8327)
@@ -0,0 +1,153 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.jbws2011;
+
+import java.net.URL;
+
+import javax.xml.namespace.QName;
+import javax.xml.ws.BindingProvider;
+import javax.xml.ws.Service;
+
+import junit.framework.Test;
+
+import org.jboss.ws.Constants;
+import org.jboss.ws.core.StubExt;
+import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.wsf.test.JBossWSTestSetup;
+
+/**
+ * http://jira.jboss.org/jira/browse/JBWS-2011
+ *
+ * @author alessio.soldano at jboss.com
+ * @since 03-10-2008
+ */
+public class CRLFTestCase extends JBossWSTest
+{
+   private String TARGET_ENDPOINT_ADDRESS = "http://" + getServerHost() + ":8080/jaxws-jbws2011";
+
+   public static Test suite() throws Exception
+   {
+      return new JBossWSTestSetup(CRLFTestCase.class, "jaxws-jbws2011-client.jar,jaxws-jbws2011.jar");
+   }
+
+   public void testCRLFOne() throws Exception
+   {
+      Hello port = getPort();
+      Dto dto = new Dto();
+      dto.setPar1("first\rparameter");
+      dto.setPar2("second\nparameter");
+      ((BindingProvider)port).getRequestContext().put(Constants.DOM_CONTENT_CANONICAL_NORMALIZATION, true);
+      Dto result = port.echo(dto);
+      assertEquals(dto.getPar1(), result.getPar1());
+      assertEquals(dto.getPar2(), result.getPar2());
+      try
+      {
+         ((BindingProvider)port).getRequestContext().put(Constants.DOM_CONTENT_CANONICAL_NORMALIZATION, false);
+         result = port.echo(dto);
+         fail();
+      }
+      catch (Exception e)
+      {
+         //OK
+      }
+   }
+
+   public void testCRLFTwo() throws Exception
+   {
+      Hello port = getPort();
+      Dto dto = new Dto();
+      dto.setPar1("first\r\nparameter");
+      dto.setPar2("second\n\rparameter");
+      Dto result;
+      try
+      {
+         result = port.echo(dto);
+         fail();
+      }
+      catch (Exception e)
+      {
+         //OK
+      }
+      try
+      {
+         ((BindingProvider)port).getRequestContext().put(Constants.DOM_CONTENT_CANONICAL_NORMALIZATION, true);
+         result = port.echo(dto);
+         assertEquals(dto.getPar1(), result.getPar1());
+         assertEquals(dto.getPar2(), result.getPar2());
+      }
+      catch (Exception e)
+      {
+         fail();
+      }
+   }
+   
+   public void testCRs() throws Exception
+   {
+      Hello port = getPort();
+      Dto dto = new Dto();
+      dto.setPar1("first\rparameter");
+      dto.setPar2("second\r\rparameter");
+      Dto result;
+      try
+      {
+         result = port.echo(dto);
+         fail();
+      }
+      catch (Exception e)
+      {
+         //OK
+      }
+      try
+      {
+         ((BindingProvider)port).getRequestContext().put(Constants.DOM_CONTENT_CANONICAL_NORMALIZATION, true);
+         result = port.echo(dto);
+         assertEquals(dto.getPar1(), result.getPar1());
+         assertEquals(dto.getPar2(), result.getPar2());
+      }
+      catch (Exception e)
+      {
+         fail();
+      }
+   }
+   
+   public void testLFs() throws Exception
+   {
+      Hello port = getPort();
+      Dto dto = new Dto();
+      dto.setPar1("first\nparameter");
+      dto.setPar2("second\n\nparameter");
+      Dto result = port.echo(dto);
+      assertEquals(dto.getPar1(), result.getPar1());
+      assertEquals(dto.getPar2(), result.getPar2());
+   }
+
+   private Hello getPort() throws Exception
+   {
+      URL wsdlURL = new URL(TARGET_ENDPOINT_ADDRESS + "?wsdl");
+      QName serviceName = new QName("http://org.jboss.ws/jbws2011", "HelloService");
+      Hello port = Service.create(wsdlURL, serviceName).getPort(Hello.class);
+      URL securityURL = getResourceURL("jaxws/jbws2011/META-INF/jboss-wsse-client.xml");
+      ((StubExt)port).setSecurityConfig(securityURL.toExternalForm());
+      ((StubExt)port).setConfigName("Standard WSSecurity Client");
+      return port;
+   }
+}


Property changes on: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/CRLFTestCase.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/Dto.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/Dto.java	                        (rev 0)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/Dto.java	2008-10-03 18:17:27 UTC (rev 8327)
@@ -0,0 +1,52 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.jbws2011;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+
+ at XmlAccessorType(XmlAccessType.FIELD)
+public class Dto
+{
+   @XmlElement(namespace="http://org.jboss.ws/jbws2011")
+   private String par1;
+   @XmlElement(namespace="http://org.jboss.ws/jbws2011")
+   private String par2;
+   
+   public String getPar1()
+   {
+      return par1;
+   }
+   public void setPar1(String par1)
+   {
+      this.par1 = par1;
+   }
+   public String getPar2()
+   {
+      return par2;
+   }
+   public void setPar2(String par2)
+   {
+      this.par2 = par2;
+   }
+}


Property changes on: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/Dto.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/Hello.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/Hello.java	                        (rev 0)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/Hello.java	2008-10-03 18:17:27 UTC (rev 8327)
@@ -0,0 +1,34 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.jbws2011;
+
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+
+ at WebService(name = "Hello")
+ at SOAPBinding(style = SOAPBinding.Style.DOCUMENT)
+public interface Hello
+{
+   @WebMethod
+   public Dto echo(Dto dto);
+}


Property changes on: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/Hello.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/HelloJavaBean.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/HelloJavaBean.java	                        (rev 0)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/HelloJavaBean.java	2008-10-03 18:17:27 UTC (rev 8327)
@@ -0,0 +1,52 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.jbws2011;
+
+import javax.annotation.Resource;
+import javax.ejb.Stateless;
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+import javax.xml.ws.WebServiceContext;
+
+import org.jboss.ws.Constants;
+import org.jboss.ws.annotation.EndpointConfig;
+import org.jboss.wsf.spi.annotation.WebContext;
+
+
+ at Stateless
+ at WebService(name = "Hello", serviceName = "HelloService", targetNamespace = "http://org.jboss.ws/jbws2011")
+ at SOAPBinding(style = SOAPBinding.Style.DOCUMENT)
+ at WebContext(contextRoot = "/jaxws-jbws2011", urlPattern = "/*")
+ at EndpointConfig(configName = "Standard WSSecurity Endpoint")
+public class HelloJavaBean
+{
+   @Resource
+   private WebServiceContext ctx;
+   
+   @WebMethod
+   public Dto echo(Dto dto)
+   {
+      ctx.getMessageContext().put(Constants.DOM_CONTENT_CANONICAL_NORMALIZATION, true);
+      return dto;
+   }
+}


Property changes on: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2011/HelloJavaBean.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleSignTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleSignTestCase.java	2008-10-03 17:20:43 UTC (rev 8326)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleSignTestCase.java	2008-10-03 18:17:27 UTC (rev 8327)
@@ -57,15 +57,6 @@
       performTest(hello, "Kermit");
    }
    
-   public void testEndpointWithCRLFs() throws Exception
-   {
-      Hello hello = getPort();
-      System.out.println("FIXME: [JBWS-2011] Signature is invalid error when the message contains \r");
-//      performTest(hello, "Kermit\nmy friend");
-//      performTest(hello, "Kermit\rmy friend");
-//      performTest(hello, "Kermit\r\nmy friend");
-   }
-   
    private void performTest(Hello hello, String msg) throws Exception
    {
       UserType in0 = new UserType();

Added: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/jboss-wsse-client.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/jboss-wsse-client.xml	                        (rev 0)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/jboss-wsse-client.xml	2008-10-03 18:17:27 UTC (rev 8327)
@@ -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">
+  <key-store-file>META-INF/wsse.keystore</key-store-file>
+  <key-store-password>jbossws</key-store-password>
+  <trust-store-file>META-INF/wsse.truststore</trust-store-file>
+  <trust-store-password>jbossws</trust-store-password>
+  <config>
+    <sign type="x509v3" alias="wsse"/>
+    <requires>
+      <signature/>
+    </requires>
+  </config>
+</jboss-ws-security>
\ No newline at end of file


Property changes on: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/jboss-wsse-client.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/jboss-wsse-server.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/jboss-wsse-server.xml	                        (rev 0)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/jboss-wsse-server.xml	2008-10-03 18:17:27 UTC (rev 8327)
@@ -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">
+  <key-store-file>META-INF/wsse.keystore</key-store-file>
+  <key-store-password>jbossws</key-store-password>
+  <trust-store-file>META-INF/wsse.truststore</trust-store-file>
+  <trust-store-password>jbossws</trust-store-password>
+  <config>
+    <sign type="x509v3" alias="wsse"/>
+    <requires>
+      <signature/>
+    </requires>
+  </config>
+</jboss-ws-security>
\ No newline at end of file


Property changes on: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/META-INF/jboss-wsse-server.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/wsse.keystore
===================================================================
(Binary files differ)


Property changes on: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/wsse.keystore
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/wsse.truststore
===================================================================
(Binary files differ)


Property changes on: stack/native/trunk/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2011/wsse.truststore
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream




More information about the jbossws-commits mailing list