Author: richard.opalka(a)jboss.com
Date: 2007-12-18 11:23:37 -0500 (Tue, 18 Dec 2007)
New Revision: 5351
Added:
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/META-INF/
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/META-INF/jboss-wsse-client.xml
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/WEB-INF/
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/WEB-INF/jboss-wsse-server.xml
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/wsse.keystore
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/wsse.truststore
Removed:
stack/native/trunk/src/test/resources/jaxws/wsrm/properties/
Modified:
stack/native/trunk/.classpath
stack/native/trunk/ant-import-tests/build-jars-jaxws.xml
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAbstractOneWayTest.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAbstractSecuredOneWayTest.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAnonymousOneWayTestCase.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAbstractReqResTest.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAbstractSecuredReqResTest.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAddressableReqResTestCase.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredOneWayServiceIface.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredOneWayServiceImpl.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredReqResServiceIface.java
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredReqResServiceImpl.java
Log:
enabling WS-RM + WS-Security test suite
Modified: stack/native/trunk/.classpath
===================================================================
--- stack/native/trunk/.classpath 2007-12-18 15:51:28 UTC (rev 5350)
+++ stack/native/trunk/.classpath 2007-12-18 16:23:37 UTC (rev 5351)
@@ -26,7 +26,7 @@
<classpathentry kind="lib" path="thirdparty/wstx.jar"/>
<classpathentry kind="lib" path="thirdparty/xalan.jar"/>
<classpathentry kind="lib" path="thirdparty/xercesImpl.jar"/>
- <classpathentry kind="lib" path="thirdparty/xmlsec.jar"/>
+ <classpathentry kind="lib" path="thirdparty/xmlsec.jar"
sourcepath="thirdparty/xmlsec-src.zip"/>
<classpathentry kind="lib" path="thirdparty/ant.jar"/>
<classpathentry kind="lib" path="thirdparty/qdox.jar"/>
<classpathentry kind="lib" path="thirdparty/policy.jar"/>
Modified: stack/native/trunk/ant-import-tests/build-jars-jaxws.xml
===================================================================
--- stack/native/trunk/ant-import-tests/build-jars-jaxws.xml 2007-12-18 15:51:28 UTC (rev
5350)
+++ stack/native/trunk/ant-import-tests/build-jars-jaxws.xml 2007-12-18 16:23:37 UTC (rev
5351)
@@ -681,6 +681,13 @@
<include name="wsrm-exactly-once-in-order-policy.xml"/>
<include name="wsrm-jaxws-endpoint-config.xml"/>
</webinf>
+ <webinf
dir="${tests.output.dir}/resources/jaxws/wsrm/wssecurity/WEB-INF">
+ <include name="jboss-wsse-server.xml"/>
+ </webinf>
+ <webinf dir="${tests.output.dir}/resources/jaxws/wsrm/wssecurity">
+ <include name="wsse.keystore"/>
+ <include name="wsse.truststore"/>
+ </webinf>
</war>
<war warfile="${tests.output.dir}/libs/jaxws-wsrm-one-way-emulator.war"
@@ -713,6 +720,9 @@
<metainf dir="${tests.output.dir}/resources/jaxws/wsrm/META-INF">
<include name="wsrm-jaxws-client-config.xml"/>
</metainf>
+ <metainf
dir="${tests.output.dir}/resources/jaxws/wsrm/wssecurity/META-INF">
+ <include name="jboss-wsse-client.xml"/>
+ </metainf>
</jar>
<!-- Please add alphabetically -->
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAbstractOneWayTest.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAbstractOneWayTest.java 2007-12-18
15:51:28 UTC (rev 5350)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAbstractOneWayTest.java 2007-12-18
16:23:37 UTC (rev 5351)
@@ -23,11 +23,7 @@
import static org.jboss.test.ws.jaxws.wsrm.Helper.*;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.IOException;
import java.net.URL;
-import java.util.Properties;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
@@ -46,31 +42,15 @@
*/
public abstract class RMAbstractOneWayTest extends JBossWSTest
{
- private static final Properties props = new Properties();
- private final String serviceURL = "http://" + getServerHost() +
":" + props.getProperty("port") +
props.getProperty("path");
- private String targetNS = "http://org.jboss.ws/jaxws/wsrm";
+ private final String serviceURL = "http://" + getServerHost() +
":8080//jaxws-wsrm/OneWayService";
private OneWayServiceIface proxy;
- static
- {
- try
- {
- props.load(
- new FileInputStream(
- new
File("resources/jaxws/wsrm/properties/RMAbstractOneWayTest.properties")));
- }
- catch (IOException ioe)
- {
- ioe.printStackTrace();
- }
- }
-
@Override
protected void setUp() throws Exception
{
super.setUp();
- QName serviceName = new QName(targetNS, "OneWayService");
+ QName serviceName = new QName("http://org.jboss.ws/jaxws/wsrm",
"OneWayService");
URL wsdlURL = new URL(serviceURL + "?wsdl");
Service service = Service.create(wsdlURL, serviceName);
proxy = (OneWayServiceIface)service.getPort(OneWayServiceIface.class);
@@ -90,7 +70,7 @@
public static String getClasspath()
{
- return props.getProperty("archives");
+ return "jaxws-wsrm.war, jaxws-wsrm-client.jar";
}
protected abstract boolean isClientAddressable();
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAbstractSecuredOneWayTest.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAbstractSecuredOneWayTest.java 2007-12-18
15:51:28 UTC (rev 5350)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAbstractSecuredOneWayTest.java 2007-12-18
16:23:37 UTC (rev 5351)
@@ -23,11 +23,7 @@
import static org.jboss.test.ws.jaxws.wsrm.Helper.setAddrProps;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.IOException;
import java.net.URL;
-import java.util.Properties;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
@@ -46,35 +42,18 @@
*/
public abstract class RMAbstractSecuredOneWayTest extends JBossWSTest
{
- private static final Properties props = new Properties();
- private final String serviceURL = "http://" + getServerHost() +
":" + props.getProperty("port") +
props.getProperty("path");
- private String targetNS = "http://org.jboss.ws/jaxws/wsrm";
+ private final String serviceURL = "http://" + getServerHost() +
":8080/jaxws-secured-wsrm/SecuredOneWayService";
private SecuredOneWayServiceIface proxy;
- static
- {
- try
- {
- props.load(
- new FileInputStream(
- new
File("resources/jaxws/wsrm/properties/RMAbstractSecuredOneWayTest.properties")));
- }
- catch (IOException ioe)
- {
- ioe.printStackTrace();
- }
- }
-
@Override
protected void setUp() throws Exception
{
super.setUp();
- QName serviceName = new QName(targetNS, "SecuredOneWayService");
+ QName serviceName = new QName("http://org.jboss.ws/jaxws/wsrm",
"SecuredOneWayService");
URL wsdlURL = new URL(serviceURL + "?wsdl");
Service service = Service.create(wsdlURL, serviceName);
proxy =
(SecuredOneWayServiceIface)service.getPort(SecuredOneWayServiceIface.class);
- // TODO: activate WS-Security
}
public void testOneWayMethods() throws Exception
@@ -91,7 +70,7 @@
public static String getClasspath()
{
- return props.getProperty("archives");
+ return "jaxws-secured-wsrm.war, jaxws-secured-wsrm-client.jar";
}
protected abstract boolean isClientAddressable();
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAnonymousOneWayTestCase.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAnonymousOneWayTestCase.java 2007-12-18
15:51:28 UTC (rev 5350)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/oneway/RMAnonymousOneWayTestCase.java 2007-12-18
16:23:37 UTC (rev 5351)
@@ -34,7 +34,6 @@
*/
public final class RMAnonymousOneWayTestCase extends RMAbstractOneWayTest
{
-
public static Test suite()
{
return new JBossWSTestSetup(RMAnonymousOneWayTestCase.class, getClasspath());
@@ -44,5 +43,4 @@
{
return false;
}
-
}
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAbstractReqResTest.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAbstractReqResTest.java 2007-12-18
15:51:28 UTC (rev 5350)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAbstractReqResTest.java 2007-12-18
16:23:37 UTC (rev 5351)
@@ -23,11 +23,7 @@
import static org.jboss.test.ws.jaxws.wsrm.Helper.*;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.IOException;
import java.net.URL;
-import java.util.Properties;
import java.util.concurrent.Executor;
import java.util.concurrent.Future;
import java.util.concurrent.SynchronousQueue;
@@ -54,10 +50,8 @@
*/
public abstract class RMAbstractReqResTest extends JBossWSTest
{
- private static final String HELLO_WORLD_MSG = "Hello World";
- private static final String TARGET_NS = "http://org.jboss.ws/jaxws/wsrm";
- private static final Properties props = new Properties();
- private final String serviceURL = "http://" + getServerHost() +
":" + props.getProperty("port") +
props.getProperty("path");
+ private static final String helloWorldMessage = "Hello World";
+ private final String serviceURL = "http://" + getServerHost() +
":8080/jaxws-wsrm/ReqResService";
private Exception handlerException;
private boolean asyncHandlerCalled;
private ReqResServiceIface proxy;
@@ -67,20 +61,6 @@
0, 5, testWaitPeriod, testTimeUnit, new SynchronousQueue<Runnable>()
);
- static
- {
- try
- {
- props.load(
- new FileInputStream(
- new
File("resources/jaxws/wsrm/properties/RMAbstractReqResTest.properties")));
- }
- catch (IOException ioe)
- {
- ioe.printStackTrace();
- }
- }
-
private enum InvocationType
{
SYNC, ASYNC, ASYNC_FUTURE
@@ -93,7 +73,7 @@
if (proxy == null)
{
- QName serviceName = new QName(TARGET_NS, "ReqResService");
+ QName serviceName = new QName("http://org.jboss.ws/jaxws/wsrm",
"ReqResService");
URL wsdlURL = new URL(serviceURL + "?wsdl");
Service service = Service.create(wsdlURL, serviceName);
service.setExecutor(testExecutor);
@@ -118,13 +98,13 @@
private void doSynchronousInvocation() throws Exception
{
- assertEquals(proxy.echo(HELLO_WORLD_MSG), HELLO_WORLD_MSG);
+ assertEquals(proxy.echo(helloWorldMessage), helloWorldMessage);
}
private void doAsynchronousInvocation() throws Exception
{
- Response<String> response = proxy.echoAsync(HELLO_WORLD_MSG);
- assertEquals(response.get(), HELLO_WORLD_MSG); // hidden future pattern
+ Response<String> response = proxy.echoAsync(helloWorldMessage);
+ assertEquals(response.get(), helloWorldMessage); // hidden future pattern
}
private void doAsynchronousInvocationUsingFuture() throws Exception
@@ -136,7 +116,7 @@
try
{
String retStr = (String) response.get(testWaitPeriod, testTimeUnit);
- assertEquals(HELLO_WORLD_MSG, retStr);
+ assertEquals(helloWorldMessage, retStr);
asyncHandlerCalled = true;
}
catch (Exception ex)
@@ -145,7 +125,7 @@
}
}
};
- Future<?> future = proxy.echoAsync(HELLO_WORLD_MSG, handler);
+ Future<?> future = proxy.echoAsync(helloWorldMessage, handler);
future.get(testWaitPeriod, testTimeUnit);
ensureAsyncStatus();
}
@@ -182,9 +162,8 @@
public static String getClasspath()
{
- return props.getProperty("archives");
+ return "jaxws-wsrm.war, jaxws-wsrm-client.jar";
}
protected abstract boolean isClientAddressable();
-
}
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAbstractSecuredReqResTest.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAbstractSecuredReqResTest.java 2007-12-18
15:51:28 UTC (rev 5350)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAbstractSecuredReqResTest.java 2007-12-18
16:23:37 UTC (rev 5351)
@@ -23,11 +23,7 @@
import static org.jboss.test.ws.jaxws.wsrm.Helper.setAddrProps;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.IOException;
import java.net.URL;
-import java.util.Properties;
import java.util.concurrent.Executor;
import java.util.concurrent.Future;
import java.util.concurrent.SynchronousQueue;
@@ -53,10 +49,8 @@
*/
public abstract class RMAbstractSecuredReqResTest extends JBossWSTest
{
- private static final String HELLO_WORLD_MSG = "Hello World";
- private static final String TARGET_NS = "http://org.jboss.ws/jaxws/wsrm";
- private static final Properties props = new Properties();
- private final String serviceURL = "http://" + getServerHost() +
":" + props.getProperty("port") +
props.getProperty("path");
+ private static final String helloWorldMessage = "Hello World";
+ private final String serviceURL = "http://" + getServerHost() +
":8080/jaxws-secured-wsrm/SecuredReqResService";
private Exception handlerException;
private boolean asyncHandlerCalled;
private SecuredReqResServiceIface proxy;
@@ -66,20 +60,6 @@
0, 5, testWaitPeriod, testTimeUnit, new SynchronousQueue<Runnable>()
);
- static
- {
- try
- {
- props.load(
- new FileInputStream(
- new
File("resources/jaxws/wsrm/properties/RMAbstractSecuredReqResTest.properties")));
- }
- catch (IOException ioe)
- {
- ioe.printStackTrace();
- }
- }
-
private enum InvocationType
{
SYNC, ASYNC, ASYNC_FUTURE
@@ -92,12 +72,11 @@
if (proxy == null)
{
- QName serviceName = new QName(TARGET_NS, "SecuredReqResService");
+ QName serviceName = new QName("http://org.jboss.ws/jaxws/wsrm",
"SecuredReqResService");
URL wsdlURL = new URL(serviceURL + "?wsdl");
Service service = Service.create(wsdlURL, serviceName);
service.setExecutor(testExecutor);
proxy =
(SecuredReqResServiceIface)service.getPort(SecuredReqResServiceIface.class);
- // TODO: activate WS-Security
}
}
@@ -118,13 +97,13 @@
private void doSynchronousInvocation() throws Exception
{
- assertEquals(proxy.echo(HELLO_WORLD_MSG), HELLO_WORLD_MSG);
+ assertEquals(proxy.echo(helloWorldMessage), helloWorldMessage);
}
private void doAsynchronousInvocation() throws Exception
{
- Response<String> response = proxy.echoAsync(HELLO_WORLD_MSG);
- assertEquals(response.get(), HELLO_WORLD_MSG); // hidden future pattern
+ Response<String> response = proxy.echoAsync(helloWorldMessage);
+ assertEquals(response.get(), helloWorldMessage); // hidden future pattern
}
private void doAsynchronousInvocationUsingFuture() throws Exception
@@ -136,7 +115,7 @@
try
{
String retStr = (String) response.get(testWaitPeriod, testTimeUnit);
- assertEquals(HELLO_WORLD_MSG, retStr);
+ assertEquals(helloWorldMessage, retStr);
asyncHandlerCalled = true;
}
catch (Exception ex)
@@ -145,7 +124,7 @@
}
}
};
- Future<?> future = proxy.echoAsync(HELLO_WORLD_MSG, handler);
+ Future<?> future = proxy.echoAsync(helloWorldMessage, handler);
future.get(testWaitPeriod, testTimeUnit);
ensureAsyncStatus();
}
@@ -182,7 +161,7 @@
public static String getClasspath()
{
- return props.getProperty("archives");
+ return "jaxws-secured-wsrm.war, jaxws-secured-wsrm-client.jar";
}
protected abstract boolean isClientAddressable();
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAddressableReqResTestCase.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAddressableReqResTestCase.java 2007-12-18
15:51:28 UTC (rev 5350)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/reqres/RMAddressableReqResTestCase.java 2007-12-18
16:23:37 UTC (rev 5351)
@@ -34,7 +34,6 @@
*/
public final class RMAddressableReqResTestCase extends RMAbstractReqResTest
{
-
public static Test suite()
{
return new JBossWSTestSetup(RMAddressableReqResTestCase.class, getClasspath());
@@ -44,5 +43,4 @@
{
return true;
}
-
}
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredOneWayServiceIface.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredOneWayServiceIface.java 2007-12-18
15:51:28 UTC (rev 5350)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredOneWayServiceIface.java 2007-12-18
16:23:37 UTC (rev 5351)
@@ -29,8 +29,7 @@
@WebService
@EndpointConfig
(
-// configName = "Secured WSRM Client", TODO: uncommented
- configName = "Standard WSRM Client",
+ configName = "Secured WSRM Client",
configFile = "META-INF/wsrm-jaxws-client-config.xml"
)
public interface SecuredOneWayServiceIface
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredOneWayServiceImpl.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredOneWayServiceImpl.java 2007-12-18
15:51:28 UTC (rev 5350)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredOneWayServiceImpl.java 2007-12-18
16:23:37 UTC (rev 5351)
@@ -49,8 +49,7 @@
)
@EndpointConfig
(
-// configName = "Secured WSRM Endpoint", TODO: uncomment
- configName = "Standard WSRM Endpoint",
+ configName = "Secured WSRM Endpoint",
configFile = "WEB-INF/wsrm-jaxws-endpoint-config.xml"
)
public class SecuredOneWayServiceImpl implements SecuredOneWayServiceIface
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredReqResServiceIface.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredReqResServiceIface.java 2007-12-18
15:51:28 UTC (rev 5350)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredReqResServiceIface.java 2007-12-18
16:23:37 UTC (rev 5351)
@@ -33,8 +33,7 @@
@WebService
@EndpointConfig
(
-// configName = "Secured WSRM Client", TODO: uncomment
- configName = "Standard WSRM Client",
+ configName = "Secured WSRM Client",
configFile = "META-INF/wsrm-jaxws-client-config.xml"
)
public interface SecuredReqResServiceIface
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredReqResServiceImpl.java
===================================================================
---
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredReqResServiceImpl.java 2007-12-18
15:51:28 UTC (rev 5350)
+++
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/wsrm/services/SecuredReqResServiceImpl.java 2007-12-18
16:23:37 UTC (rev 5351)
@@ -47,8 +47,7 @@
)
@EndpointConfig
(
-// configName = "Standard WSRM Endpoint", TODO: uncomment
- configName = "Standard WSRM Endpoint",
+ configName = "Secured WSRM Endpoint",
configFile = "WEB-INF/wsrm-jaxws-endpoint-config.xml"
)
public class SecuredReqResServiceImpl
Added:
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/META-INF/jboss-wsse-client.xml
===================================================================
---
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/META-INF/jboss-wsse-client.xml
(rev 0)
+++
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/META-INF/jboss-wsse-client.xml 2007-12-18
16:23:37 UTC (rev 5351)
@@ -0,0 +1,11 @@
+<?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>
+ <sign type="x509v3" alias="wsse"/>
+ <requires>
+ <signature/>
+ </requires>
+ </config>
+</jboss-ws-security>
\ No newline at end of file
Property changes on:
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/META-INF/jboss-wsse-client.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added:
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/WEB-INF/jboss-wsse-server.xml
===================================================================
---
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/WEB-INF/jboss-wsse-server.xml
(rev 0)
+++
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/WEB-INF/jboss-wsse-server.xml 2007-12-18
16:23:37 UTC (rev 5351)
@@ -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>WEB-INF/wsse.keystore</key-store-file>
+ <key-store-password>jbossws</key-store-password>
+ <trust-store-file>WEB-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/src/test/resources/jaxws/wsrm/wssecurity/WEB-INF/jboss-wsse-server.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/wsse.keystore
===================================================================
(Binary files differ)
Property changes on:
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/wsse.keystore
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/wsse.truststore
===================================================================
(Binary files differ)
Property changes on:
stack/native/trunk/src/test/resources/jaxws/wsrm/wssecurity/wsse.truststore
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream