Author: alessio.soldano(a)jboss.com
Date: 2011-12-14 17:51:09 -0500 (Wed, 14 Dec 2011)
New Revision: 15379
Removed:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/scripts/ScriptTestCase.java
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws1988/META-INF/jboss-service.xml
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws1988/META-INF/login-config.xml
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2116/META-INF/jboss-service.xml
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2116/META-INF/login-config.xml
Modified:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/scripts/build-jars-jaxws.xml
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1988/UsernameAuthTestCase.java
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1991/UsernameAuthTestCase.java
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1999/JBWS1999TestCase.java
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2116/CertAuthTestCase.java
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/SecureNewsTestCase.java
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleDispatchTestCase.java
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleUsernameTestCase.java
Log:
Updates to the testsuite
Modified:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/scripts/build-jars-jaxws.xml
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/scripts/build-jars-jaxws.xml 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/scripts/build-jars-jaxws.xml 2011-12-14
22:51:09 UTC (rev 15379)
@@ -266,14 +266,6 @@
<include name="jboss.xml" />
</metainf>
</jar>
- <jar
jarfile="${tests.output.dir}/test-libs/jaxws-jbws1988-config.sar">
- <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1988/META-INF">
- <include name="jboss-service.xml" />
- <include name="login-config.xml" />
- <include name="jbossws-users.properties" />
- <include name="jbossws-roles.properties" />
- </metainf>
- </jar>
<!-- jaxws-jbws1991 -->
<jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1991.jar"
manifest="${tests.output.dir}/test-resources/jaxws/jbws1991/META-INF/MANIFEST.MF">
@@ -366,14 +358,6 @@
<include name="bob-sign.jks" />
</metainf>
</jar>
- <jar
jarfile="${tests.output.dir}/test-libs/jaxws-jbws2116-config.sar">
- <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws2116/META-INF">
- <include name="jboss-service.xml" />
- <include name="login-config.xml" />
- <include name="keystore.jks" />
- <include name="jbossws-roles.properties" />
- </metainf>
- </jar>
<!-- jaxws-jbws2166-->
<jar destfile="${tests.output.dir}/test-libs/jaxws-jbws2166-A.jar"
manifest="${tests.output.dir}/test-resources/jaxws/jbws2166/META-INF/MANIFEST.MF">
Modified:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1988/UsernameAuthTestCase.java
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1988/UsernameAuthTestCase.java 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1988/UsernameAuthTestCase.java 2011-12-14
22:51:09 UTC (rev 15379)
@@ -49,28 +49,20 @@
public static Test suite() throws Exception
{
JBossWSTestSetup testSetup;
- if (!isTargetJBoss6())
- {
- testSetup = new JBossWSTestSetup(UsernameAuthTestCase.class,
"jaxws-jbws1988.jar");
- Map<String, String> authenticationOptions = new HashMap<String,
String>();
- authenticationOptions.put("usersProperties",
-
getResourceFile("jaxws/jbws1988/META-INF/jbossws-users.properties").getAbsolutePath());
- authenticationOptions.put("rolesProperties",
-
getResourceFile("jaxws/jbws1988/META-INF/jbossws-roles.properties").getAbsolutePath());
- authenticationOptions.put("hashAlgorithm", "SHA");
- authenticationOptions.put("hashEncoding", "BASE64");
- authenticationOptions.put("hashCharset", "UTF-8");
- authenticationOptions.put("hashUserPassword", "false");
- authenticationOptions.put("hashStorePassword", "true");
- authenticationOptions.put("storeDigestCallback",
"org.jboss.ws.extensions.security.auth.callback.UsernameTokenCallback");
- authenticationOptions.put("unauthenticatedIdentity",
"anonymous");
- testSetup.addSecurityDomainRequirement("JBossWSDigest",
authenticationOptions);
- }
- else
- {
- testSetup = new JBossWSTestSetup(UsernameAuthTestCase.class,
- "jaxws-jbws1988-config.sar jaxws-jbws1988.jar");
- }
+ testSetup = new JBossWSTestSetup(UsernameAuthTestCase.class,
"jaxws-jbws1988.jar");
+ Map<String, String> authenticationOptions = new HashMap<String,
String>();
+ authenticationOptions.put("usersProperties",
+
getResourceFile("jaxws/jbws1988/META-INF/jbossws-users.properties").getAbsolutePath());
+ authenticationOptions.put("rolesProperties",
+
getResourceFile("jaxws/jbws1988/META-INF/jbossws-roles.properties").getAbsolutePath());
+ authenticationOptions.put("hashAlgorithm", "SHA");
+ authenticationOptions.put("hashEncoding", "BASE64");
+ authenticationOptions.put("hashCharset", "UTF-8");
+ authenticationOptions.put("hashUserPassword", "false");
+ authenticationOptions.put("hashStorePassword", "true");
+ authenticationOptions.put("storeDigestCallback",
"org.jboss.ws.extensions.security.auth.callback.UsernameTokenCallback");
+ authenticationOptions.put("unauthenticatedIdentity",
"anonymous");
+ testSetup.addSecurityDomainRequirement("JBossWSDigest",
authenticationOptions);
return testSetup;
}
Modified:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1991/UsernameAuthTestCase.java
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1991/UsernameAuthTestCase.java 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1991/UsernameAuthTestCase.java 2011-12-14
22:51:09 UTC (rev 15379)
@@ -21,7 +21,6 @@
*/
package org.jboss.test.ws.jaxws.jbws1991;
-import java.io.File;
import java.net.URL;
import javax.xml.namespace.QName;
@@ -46,7 +45,7 @@
public static Test suite() throws Exception
{
- return new JBossWSTestSetup(UsernameAuthTestCase.class,
"jaxws-jbws1991.jar", !isTargetJBoss6());
+ return new JBossWSTestSetup(UsernameAuthTestCase.class,
"jaxws-jbws1991.jar", true);
}
public void testAuth() throws Exception
Modified:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1999/JBWS1999TestCase.java
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1999/JBWS1999TestCase.java 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws1999/JBWS1999TestCase.java 2011-12-14
22:51:09 UTC (rev 15379)
@@ -56,7 +56,7 @@
public static Test suite() throws Exception
{
- return new JBossWSTestSetup(JBWS1999TestCase.class, "jaxws-jbws1999.war",
!isTargetJBoss6());
+ return new JBossWSTestSetup(JBWS1999TestCase.class, "jaxws-jbws1999.war",
true);
}
public void testNoSecurity() throws Exception
Modified:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2116/CertAuthTestCase.java
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2116/CertAuthTestCase.java 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/jbws2116/CertAuthTestCase.java 2011-12-14
22:51:09 UTC (rev 15379)
@@ -55,22 +55,14 @@
public static Test suite() throws Exception
{
JBossWSTestSetup testSetup;
- if (!isTargetJBoss6())
- {
- testSetup = new JBossWSTestSetup(CertAuthTestCase.class,
"jaxws-jbws2116.jar");
- Map<String, String> authenticationOptions = new HashMap<String,
String>();
- authenticationOptions.put("rolesProperties",
-
getResourceFile("jaxws/jbws2116/META-INF/jbossws-roles.properties").getAbsolutePath());
- authenticationOptions.put("KeyStoreURL",
"jaxws/jbws2116/META-INF/keystore.jks");
- authenticationOptions.put("KeyStorePass", "password");
- authenticationOptions.put("unauthenticatedIdentity",
"anonymous");
- testSetup.addSecurityDomainRequirement("JBossWSCert",
authenticationOptions);
- }
- else
- {
- testSetup = new JBossWSTestSetup(CertAuthTestCase.class,
- "jaxws-jbws2116-config.sar jaxws-jbws2116.jar");
- }
+ testSetup = new JBossWSTestSetup(CertAuthTestCase.class,
"jaxws-jbws2116.jar");
+ Map<String, String> authenticationOptions = new HashMap<String,
String>();
+ authenticationOptions.put("rolesProperties",
+
getResourceFile("jaxws/jbws2116/META-INF/jbossws-roles.properties").getAbsolutePath());
+ authenticationOptions.put("KeyStoreURL",
"jaxws/jbws2116/META-INF/keystore.jks");
+ authenticationOptions.put("KeyStorePass", "password");
+ authenticationOptions.put("unauthenticatedIdentity",
"anonymous");
+ testSetup.addSecurityDomainRequirement("JBossWSCert",
authenticationOptions);
return testSetup;
}
Modified:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/SecureNewsTestCase.java
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/SecureNewsTestCase.java 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/news/SecureNewsTestCase.java 2011-12-14
22:51:09 UTC (rev 15379)
@@ -41,7 +41,7 @@
return new JBossWSTestSetup
(
SecureNewsTestCase.class,
- "jaxws-samples-news-step2-newspaper.jar,
jaxws-samples-news-step2-agency-client.jar", !isTargetJBoss6()
+ "jaxws-samples-news-step2-newspaper.jar,
jaxws-samples-news-step2-agency-client.jar", true
);
}
Modified:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleDispatchTestCase.java
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleDispatchTestCase.java 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleDispatchTestCase.java 2011-12-14
22:51:09 UTC (rev 15379)
@@ -21,7 +21,6 @@
*/
package org.jboss.test.ws.jaxws.samples.wssecurity;
-import java.io.File;
import java.io.StringReader;
import java.net.URL;
import java.util.Map;
@@ -59,7 +58,7 @@
public static Test suite() throws Exception
{
- return new JBossWSTestSetup(SimpleDispatchTestCase.class,
"jaxws-samples-wssecurity-username.war jaxws-samples-wssecurity-encrypt.war",
!isTargetJBoss6());
+ return new JBossWSTestSetup(SimpleDispatchTestCase.class,
"jaxws-samples-wssecurity-username.war jaxws-samples-wssecurity-encrypt.war",
true);
}
@Override
Modified:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleUsernameTestCase.java
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleUsernameTestCase.java 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleUsernameTestCase.java 2011-12-14
22:51:09 UTC (rev 15379)
@@ -47,7 +47,7 @@
public static Test suite() throws Exception
{
- return new JBossWSTestSetup(SimpleUsernameTestCase.class,
"jaxws-samples-wssecurity-username.war", !isTargetJBoss6());
+ return new JBossWSTestSetup(SimpleUsernameTestCase.class,
"jaxws-samples-wssecurity-username.war", true);
}
@Override
Deleted:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/scripts/ScriptTestCase.java
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/scripts/ScriptTestCase.java 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/scripts/ScriptTestCase.java 2011-12-14
22:51:09 UTC (rev 15379)
@@ -1,64 +0,0 @@
-/*
- * 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.tools.scripts;
-
-import java.io.File;
-import org.jboss.wsf.test.JBossWSTest;
-
-/**
- * JBWS-1793: Provide a test case for the tools scripts that reside under JBOSS_HOME/bin
- *
- * @author Heiko.Braun(a)jboss.com
- */
-public class ScriptTestCase extends JBossWSTest
-{
- private static final String FS = System.getProperty("file.separator"); //
'/' on unix, '\' on windows
- private static final String PS = System.getProperty("path.separator"); //
':' on unix, ';' on windows
- private String TOOLS_CONFIG = getResourceFile("tools" + FS +
"scripts" + FS + "wstools-config.xml").getAbsolutePath();
- private static final String EXT = ":".equals( PS ) ? ".sh" :
".bat";
-
- private String JBOSS_HOME;
-
- protected void setUp() throws Exception
- {
- super.setUp();
-
- JBOSS_HOME = System.getProperty("jboss.home");
- }
-
- public void testWSToolsFromCommandLine() throws Exception
- {
- if (!isTargetJBoss6()) return; // wstools.sh(.bat) not available since AS7
-
- // use absolute path for the output to be re-usable
- File dest = createResourceFile("wstools" + FS + "java");
- dest.mkdirs();
-
- String command = JBOSS_HOME + FS + "bin" + FS + "wstools" + EXT
+ " -config " + TOOLS_CONFIG + " -dest "+ dest.getAbsolutePath();
- executeCommand(command);
-
- File javaSource = getResourceFile("wstools" + FS + "java" + FS
+ "org" + FS + "jboss" + FS + "test" + FS + "ws" +
FS + "jbws810" + FS + "PhoneBookService.java");
-
- assertTrue("Service endpoint interface not generated",
javaSource.exists());
- }
-
-}
Deleted:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws1988/META-INF/jboss-service.xml
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws1988/META-INF/jboss-service.xml 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws1988/META-INF/jboss-service.xml 2011-12-14
22:51:09 UTC (rev 15379)
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<server xmlns="urn:jboss:service:7.0"
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="urn:jboss:service:7.0 jboss-service_7_0.xsd">
- <!-- ==================================================================== -->
- <!-- Dynamic login config to install the login module using digest -->
- <!-- ==================================================================== -->
- <mbean code="org.jboss.security.auth.login.DynamicLoginConfig"
- name="jboss:service=DynamicLoginConfig">
- <attribute
name="AuthConfig">META-INF/login-config.xml</attribute>
- <!-- The service which supports dynamic processing of login-config.xml
- configurations.
- -->
- <depends optional-attribute-name="LoginConfigService">
- jboss.security:service=XMLLoginConfig
- </depends>
- <!-- Optionally specify the security mgr service to use when
- this service is stopped to flush the auth caches of the domains
- registered by this service.
- -->
- <depends optional-attribute-name="SecurityManagerService">
- jboss.security:service=JaasSecurityManager
- </depends>
- </mbean>
-</server>
Deleted:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws1988/META-INF/login-config.xml
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws1988/META-INF/login-config.xml 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws1988/META-INF/login-config.xml 2011-12-14
22:51:09 UTC (rev 15379)
@@ -1,25 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE policy PUBLIC
- "-//JBoss//DTD JBOSS Security Config 3.0//EN"
- "http://www.jboss.org/j2ee/dtd/security_config.dtd">
-
-<policy>
-
- <application-policy name="JBossWSDigest">
- <authentication>
- <login-module
code="org.jboss.security.auth.spi.UsersRolesLoginModule"
- flag="required">
- <module-option
name="usersProperties">META-INF/jbossws-users.properties</module-option>
- <module-option
name="rolesProperties">META-INF/jbossws-roles.properties</module-option>
- <module-option name="hashAlgorithm">SHA</module-option>
- <module-option
name="hashEncoding">BASE64</module-option>
- <module-option
name="hashUserPassword">false</module-option>
- <module-option
name="hashStorePassword">true</module-option>
- <module-option
name="storeDigestCallback">org.jboss.ws.extensions.security.auth.callback.UsernameTokenCallback</module-option>
- <module-option
name="unauthenticatedIdentity">anonymous</module-option>
- </login-module>
- </authentication>
- </application-policy>
-
-</policy>
-
Deleted:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2116/META-INF/jboss-service.xml
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2116/META-INF/jboss-service.xml 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2116/META-INF/jboss-service.xml 2011-12-14
22:51:09 UTC (rev 15379)
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<server xmlns="urn:jboss:service:7.0"
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="urn:jboss:service:7.0 jboss-service_7_0.xsd">
- <!-- ==================================================================== -->
- <!-- JassSecurityDomain required to use CertRolesLoginModule -->
- <!-- ==================================================================== -->
- <mbean code="org.jboss.security.plugins.JaasSecurityDomain"
- name="jboss.security:service=SecurityDomain">
- <constructor>
- <arg type="java.lang.String" value="JBossWSCert"/>
- </constructor>
- <attribute
name="KeyStoreURL">resource:META-INF/keystore.jks</attribute>
- <attribute name="KeyStorePass">password</attribute>
- <depends>jboss.security:service=JaasSecurityManager</depends>
- </mbean>
- <!-- ==================================================================== -->
- <!-- Dynamic login config to install the CertRolesLoginModule -->
- <!-- ==================================================================== -->
- <mbean code="org.jboss.security.auth.login.DynamicLoginConfig"
- name="jboss:service=DynamicLoginConfig">
- <attribute
name="AuthConfig">META-INF/login-config.xml</attribute>
- <!-- The service which supports dynamic processing of login-config.xml
- configurations.
- -->
- <depends optional-attribute-name="LoginConfigService">
- jboss.security:service=XMLLoginConfig
- </depends>
- <!-- Optionally specify the security mgr service to use when
- this service is stopped to flush the auth caches of the domains
- registered by this service.
- -->
- <depends optional-attribute-name="SecurityManagerService">
- jboss.security:service=JaasSecurityManager
- </depends>
- </mbean>
-</server>
Deleted:
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2116/META-INF/login-config.xml
===================================================================
---
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2116/META-INF/login-config.xml 2011-12-14
22:49:55 UTC (rev 15378)
+++
stack/native/branches/JBWS-3393/modules/testsuite/native-tests/src/test/resources/jaxws/jbws2116/META-INF/login-config.xml 2011-12-14
22:51:09 UTC (rev 15379)
@@ -1,20 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE policy PUBLIC
- "-//JBoss//DTD JBOSS Security Config 3.0//EN"
- "http://www.jboss.org/j2ee/dtd/security_config.dtd">
-
-<policy>
-
- <application-policy name="JBossWSCert">
- <authentication>
- <login-module
code="org.jboss.security.auth.spi.CertRolesLoginModule"
- flag="required">
- <module-option
name="rolesProperties">META-INF/jbossws-roles.properties</module-option>
- <module-option
name="unauthenticatedIdentity">anonymous</module-option>
- <module-option
name="securityDomain">java:/jaas/JBossWSCert</module-option>
- </login-module>
- </authentication>
- </application-policy>
-
-</policy>
-