JBossWS SVN: r15920 - in stack/cxf/trunk/modules/testsuite: src/test/resources/jboss711 and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2012-03-12 10:45:11 -0400 (Mon, 12 Mar 2012)
New Revision: 15920
Added:
stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient-ws.xml
Removed:
stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml
Modified:
stack/cxf/trunk/modules/testsuite/shared-tests/pom.xml
Log:
[JBWS-3451] use custom appclient-ws.xml config, do not override provided default one
Modified: stack/cxf/trunk/modules/testsuite/shared-tests/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/shared-tests/pom.xml 2012-03-12 14:43:38 UTC (rev 15919)
+++ stack/cxf/trunk/modules/testsuite/shared-tests/pom.xml 2012-03-12 14:45:11 UTC (rev 15920)
@@ -141,8 +141,8 @@
<configuration>
<tasks>
<copy
- file="${project.parent.build.directory}/../src/test/resources/${jbossws.integration.target}/appclient.xml"
- tofile="${jboss.home}/appclient/configuration/appclient.xml"
+ file="${project.parent.build.directory}/../src/test/resources/${jbossws.integration.target}/appclient-ws.xml"
+ tofile="${jboss.home}/appclient/configuration/appclient-ws.xml"
failonerror="false"
verbose="true"
overwrite="true"
Added: stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient-ws.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient-ws.xml (rev 0)
+++ stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient-ws.xml 2012-03-12 14:45:11 UTC (rev 15920)
@@ -0,0 +1,115 @@
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., 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.
+ -->
+
+<server xmlns="urn:jboss:domain:1.2">
+
+ <extensions>
+ <extension module="org.jboss.as.connector"/>
+ <extension module="org.jboss.as.ee"/>
+ <extension module="org.jboss.as.ejb3"/>
+ <extension module="org.jboss.as.logging"/>
+ <extension module="org.jboss.as.naming"/>
+ <extension module="org.jboss.as.remoting"/>
+ <extension module="org.jboss.as.security"/>
+ <extension module="org.jboss.as.webservices"/>
+ </extensions>
+
+ <profile>
+ <subsystem xmlns="urn:jboss:domain:logging:1.1">
+ <console-handler name="CONSOLE">
+ <level name="INFO"/>
+ <formatter>
+ <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
+ </formatter>
+ </console-handler>
+
+ <periodic-rotating-file-handler name="FILE">
+ <level name="INFO"/>
+ <formatter>
+ <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
+ </formatter>
+ <file relative-to="jboss.server.log.dir" path="appclient.log"/>
+ <suffix value=".yyyy-MM-dd"/>
+ <append value="true"/>
+ </periodic-rotating-file-handler>
+
+ <logger category="com.arjuna">
+ <level name="WARN"/>
+ </logger>
+ <logger category="sun.rmi">
+ <level name="WARN"/>
+ </logger>
+ <logger category="jacorb">
+ <level name="WARN"/>
+ </logger>
+ <!-- set jacorb.config to ERROR to avoid the "jacorb.properties not found" messages during startup -->
+ <logger category="jacorb.config">
+ <level name="ERROR"/>
+ </logger>
+
+ <root-logger>
+ <level name="INFO"/>
+ <handlers>
+ <handler name="CONSOLE"/>
+ <handler name="FILE"/>
+ </handlers>
+ </root-logger>
+ </subsystem>
+ <subsystem xmlns="urn:jboss:domain:ee:1.0"/>
+ <subsystem xmlns="urn:jboss:domain:ejb3:1.2" />
+ <subsystem xmlns="urn:jboss:domain:naming:1.0"/>
+ <subsystem xmlns="urn:jboss:domain:security:1.0">
+ <security-domains>
+ <security-domain name="other" cache-type="default">
+ <authentication>
+ <login-module code="UsersRoles" flag="required"/>
+ </authentication>
+ </security-domain>
+ <security-domain name="jboss-web-policy" cache-type="default">
+ <authorization>
+ <policy-module code="Delegating" flag="required"/>
+ </authorization>
+ </security-domain>
+ <security-domain name="jboss-ejb-policy" cache-type="default">
+ <authorization>
+ <policy-module code="Delegating" flag="required"/>
+ </authorization>
+ </security-domain>
+ </security-domains>
+ </subsystem>
+ <subsystem xmlns="urn:jboss:domain:remoting:1.1">
+ <connector name="remoting-connector" socket-binding="remoting"/>
+ </subsystem>
+ <subsystem xmlns="urn:jboss:domain:webservices:1.1"/>
+ </profile>
+
+ <interfaces>
+ <interface name="public">
+ <inet-address value="${jboss.bind.address:127.0.0.1}"/>
+ </interface>
+ </interfaces>
+
+ <socket-binding-group name="standard-sockets" default-interface="public">
+ <socket-binding name="remoting" port="4448"/>
+ </socket-binding-group>
+
+</server>
Deleted: stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml 2012-03-12 14:43:38 UTC (rev 15919)
+++ stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml 2012-03-12 14:45:11 UTC (rev 15920)
@@ -1,115 +0,0 @@
-<!--
- ~ JBoss, Home of Professional Open Source.
- ~ Copyright 2011, Red Hat, Inc., 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.
- -->
-
-<server xmlns="urn:jboss:domain:1.2">
-
- <extensions>
- <extension module="org.jboss.as.connector"/>
- <extension module="org.jboss.as.ee"/>
- <extension module="org.jboss.as.ejb3"/>
- <extension module="org.jboss.as.logging"/>
- <extension module="org.jboss.as.naming"/>
- <extension module="org.jboss.as.remoting"/>
- <extension module="org.jboss.as.security"/>
- <extension module="org.jboss.as.webservices"/>
- </extensions>
-
- <profile>
- <subsystem xmlns="urn:jboss:domain:logging:1.1">
- <console-handler name="CONSOLE">
- <level name="INFO"/>
- <formatter>
- <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
- </formatter>
- </console-handler>
-
- <periodic-rotating-file-handler name="FILE">
- <level name="INFO"/>
- <formatter>
- <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
- </formatter>
- <file relative-to="jboss.server.log.dir" path="appclient.log"/>
- <suffix value=".yyyy-MM-dd"/>
- <append value="true"/>
- </periodic-rotating-file-handler>
-
- <logger category="com.arjuna">
- <level name="WARN"/>
- </logger>
- <logger category="sun.rmi">
- <level name="WARN"/>
- </logger>
- <logger category="jacorb">
- <level name="WARN"/>
- </logger>
- <!-- set jacorb.config to ERROR to avoid the "jacorb.properties not found" messages during startup -->
- <logger category="jacorb.config">
- <level name="ERROR"/>
- </logger>
-
- <root-logger>
- <level name="INFO"/>
- <handlers>
- <handler name="CONSOLE"/>
- <handler name="FILE"/>
- </handlers>
- </root-logger>
- </subsystem>
- <subsystem xmlns="urn:jboss:domain:ee:1.0"/>
- <subsystem xmlns="urn:jboss:domain:ejb3:1.2" />
- <subsystem xmlns="urn:jboss:domain:naming:1.0"/>
- <subsystem xmlns="urn:jboss:domain:security:1.0">
- <security-domains>
- <security-domain name="other" cache-type="default">
- <authentication>
- <login-module code="UsersRoles" flag="required"/>
- </authentication>
- </security-domain>
- <security-domain name="jboss-web-policy" cache-type="default">
- <authorization>
- <policy-module code="Delegating" flag="required"/>
- </authorization>
- </security-domain>
- <security-domain name="jboss-ejb-policy" cache-type="default">
- <authorization>
- <policy-module code="Delegating" flag="required"/>
- </authorization>
- </security-domain>
- </security-domains>
- </subsystem>
- <subsystem xmlns="urn:jboss:domain:remoting:1.1">
- <connector name="remoting-connector" socket-binding="remoting"/>
- </subsystem>
- <subsystem xmlns="urn:jboss:domain:webservices:1.1"/>
- </profile>
-
- <interfaces>
- <interface name="public">
- <inet-address value="${jboss.bind.address:127.0.0.1}"/>
- </interface>
- </interfaces>
-
- <socket-binding-group name="standard-sockets" default-interface="public">
- <socket-binding name="remoting" port="4448"/>
- </socket-binding-group>
-
-</server>
14 years, 1 month
JBossWS SVN: r15919 - in stack/native/trunk/modules/testsuite: shared-tests and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2012-03-12 10:43:38 -0400 (Mon, 12 Mar 2012)
New Revision: 15919
Added:
stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient-ws.xml
Removed:
stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml
Modified:
stack/native/trunk/modules/testsuite/native-tests/pom.xml
stack/native/trunk/modules/testsuite/shared-tests/pom.xml
Log:
[JBWS-3451] use custom appclient-ws.xml config, do not override provided default one
Modified: stack/native/trunk/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/pom.xml 2012-03-12 14:41:15 UTC (rev 15918)
+++ stack/native/trunk/modules/testsuite/native-tests/pom.xml 2012-03-12 14:43:38 UTC (rev 15919)
@@ -128,8 +128,8 @@
<configuration>
<tasks>
<copy
- file="${project.parent.build.directory}/../src/test/resources/${jbossws.integration.target}/appclient.xml"
- tofile="${jboss.home}/appclient/configuration/appclient.xml"
+ file="${project.parent.build.directory}/../src/test/resources/${jbossws.integration.target}/appclient-ws.xml"
+ tofile="${jboss.home}/appclient/configuration/appclient-ws.xml"
failonerror="false"
verbose="true"
overwrite="true"
Modified: stack/native/trunk/modules/testsuite/shared-tests/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/shared-tests/pom.xml 2012-03-12 14:41:15 UTC (rev 15918)
+++ stack/native/trunk/modules/testsuite/shared-tests/pom.xml 2012-03-12 14:43:38 UTC (rev 15919)
@@ -142,8 +142,8 @@
<configuration>
<tasks>
<copy
- file="${project.parent.build.directory}/../src/test/resources/${jbossws.integration.target}/appclient.xml"
- tofile="${jboss.home}/appclient/configuration/appclient.xml"
+ file="${project.parent.build.directory}/../src/test/resources/${jbossws.integration.target}/appclient-ws.xml"
+ tofile="${jboss.home}/appclient/configuration/appclient-ws.xml"
failonerror="false"
verbose="true"
overwrite="true"
Added: stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient-ws.xml
===================================================================
--- stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient-ws.xml (rev 0)
+++ stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient-ws.xml 2012-03-12 14:43:38 UTC (rev 15919)
@@ -0,0 +1,115 @@
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., 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.
+ -->
+
+<server xmlns="urn:jboss:domain:1.2">
+
+ <extensions>
+ <extension module="org.jboss.as.connector"/>
+ <extension module="org.jboss.as.ee"/>
+ <extension module="org.jboss.as.ejb3"/>
+ <extension module="org.jboss.as.logging"/>
+ <extension module="org.jboss.as.naming"/>
+ <extension module="org.jboss.as.remoting"/>
+ <extension module="org.jboss.as.security"/>
+ <extension module="org.jboss.as.webservices"/>
+ </extensions>
+
+ <profile>
+ <subsystem xmlns="urn:jboss:domain:logging:1.1">
+ <console-handler name="CONSOLE">
+ <level name="INFO"/>
+ <formatter>
+ <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
+ </formatter>
+ </console-handler>
+
+ <periodic-rotating-file-handler name="FILE">
+ <level name="INFO"/>
+ <formatter>
+ <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
+ </formatter>
+ <file relative-to="jboss.server.log.dir" path="appclient.log"/>
+ <suffix value=".yyyy-MM-dd"/>
+ <append value="true"/>
+ </periodic-rotating-file-handler>
+
+ <logger category="com.arjuna">
+ <level name="WARN"/>
+ </logger>
+ <logger category="sun.rmi">
+ <level name="WARN"/>
+ </logger>
+ <logger category="jacorb">
+ <level name="WARN"/>
+ </logger>
+ <!-- set jacorb.config to ERROR to avoid the "jacorb.properties not found" messages during startup -->
+ <logger category="jacorb.config">
+ <level name="ERROR"/>
+ </logger>
+
+ <root-logger>
+ <level name="INFO"/>
+ <handlers>
+ <handler name="CONSOLE"/>
+ <handler name="FILE"/>
+ </handlers>
+ </root-logger>
+ </subsystem>
+ <subsystem xmlns="urn:jboss:domain:ee:1.0"/>
+ <subsystem xmlns="urn:jboss:domain:ejb3:1.2" />
+ <subsystem xmlns="urn:jboss:domain:naming:1.0"/>
+ <subsystem xmlns="urn:jboss:domain:security:1.0">
+ <security-domains>
+ <security-domain name="other" cache-type="default">
+ <authentication>
+ <login-module code="UsersRoles" flag="required"/>
+ </authentication>
+ </security-domain>
+ <security-domain name="jboss-web-policy" cache-type="default">
+ <authorization>
+ <policy-module code="Delegating" flag="required"/>
+ </authorization>
+ </security-domain>
+ <security-domain name="jboss-ejb-policy" cache-type="default">
+ <authorization>
+ <policy-module code="Delegating" flag="required"/>
+ </authorization>
+ </security-domain>
+ </security-domains>
+ </subsystem>
+ <subsystem xmlns="urn:jboss:domain:remoting:1.1">
+ <connector name="remoting-connector" socket-binding="remoting"/>
+ </subsystem>
+ <subsystem xmlns="urn:jboss:domain:webservices:1.1"/>
+ </profile>
+
+ <interfaces>
+ <interface name="public">
+ <inet-address value="${jboss.bind.address:127.0.0.1}"/>
+ </interface>
+ </interfaces>
+
+ <socket-binding-group name="standard-sockets" default-interface="public">
+ <socket-binding name="remoting" port="4448"/>
+ </socket-binding-group>
+
+</server>
Deleted: stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml
===================================================================
--- stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml 2012-03-12 14:41:15 UTC (rev 15918)
+++ stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml 2012-03-12 14:43:38 UTC (rev 15919)
@@ -1,115 +0,0 @@
-<!--
- ~ JBoss, Home of Professional Open Source.
- ~ Copyright 2011, Red Hat, Inc., 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.
- -->
-
-<server xmlns="urn:jboss:domain:1.2">
-
- <extensions>
- <extension module="org.jboss.as.connector"/>
- <extension module="org.jboss.as.ee"/>
- <extension module="org.jboss.as.ejb3"/>
- <extension module="org.jboss.as.logging"/>
- <extension module="org.jboss.as.naming"/>
- <extension module="org.jboss.as.remoting"/>
- <extension module="org.jboss.as.security"/>
- <extension module="org.jboss.as.webservices"/>
- </extensions>
-
- <profile>
- <subsystem xmlns="urn:jboss:domain:logging:1.1">
- <console-handler name="CONSOLE">
- <level name="INFO"/>
- <formatter>
- <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
- </formatter>
- </console-handler>
-
- <periodic-rotating-file-handler name="FILE">
- <level name="INFO"/>
- <formatter>
- <pattern-formatter pattern="%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
- </formatter>
- <file relative-to="jboss.server.log.dir" path="appclient.log"/>
- <suffix value=".yyyy-MM-dd"/>
- <append value="true"/>
- </periodic-rotating-file-handler>
-
- <logger category="com.arjuna">
- <level name="WARN"/>
- </logger>
- <logger category="sun.rmi">
- <level name="WARN"/>
- </logger>
- <logger category="jacorb">
- <level name="WARN"/>
- </logger>
- <!-- set jacorb.config to ERROR to avoid the "jacorb.properties not found" messages during startup -->
- <logger category="jacorb.config">
- <level name="ERROR"/>
- </logger>
-
- <root-logger>
- <level name="INFO"/>
- <handlers>
- <handler name="CONSOLE"/>
- <handler name="FILE"/>
- </handlers>
- </root-logger>
- </subsystem>
- <subsystem xmlns="urn:jboss:domain:ee:1.0"/>
- <subsystem xmlns="urn:jboss:domain:ejb3:1.2" />
- <subsystem xmlns="urn:jboss:domain:naming:1.0"/>
- <subsystem xmlns="urn:jboss:domain:security:1.0">
- <security-domains>
- <security-domain name="other" cache-type="default">
- <authentication>
- <login-module code="UsersRoles" flag="required"/>
- </authentication>
- </security-domain>
- <security-domain name="jboss-web-policy" cache-type="default">
- <authorization>
- <policy-module code="Delegating" flag="required"/>
- </authorization>
- </security-domain>
- <security-domain name="jboss-ejb-policy" cache-type="default">
- <authorization>
- <policy-module code="Delegating" flag="required"/>
- </authorization>
- </security-domain>
- </security-domains>
- </subsystem>
- <subsystem xmlns="urn:jboss:domain:remoting:1.1">
- <connector name="remoting-connector" socket-binding="remoting"/>
- </subsystem>
- <subsystem xmlns="urn:jboss:domain:webservices:1.1"/>
- </profile>
-
- <interfaces>
- <interface name="public">
- <inet-address value="${jboss.bind.address:127.0.0.1}"/>
- </interface>
- </interfaces>
-
- <socket-binding-group name="standard-sockets" default-interface="public">
- <socket-binding name="remoting" port="4448"/>
- </socket-binding-group>
-
-</server>
14 years, 1 month
JBossWS SVN: r15918 - in shared-testsuite/trunk: testsuite/src/test/ant-import and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2012-03-12 10:41:15 -0400 (Mon, 12 Mar 2012)
New Revision: 15918
Modified:
shared-testsuite/trunk/src/main/java/org/jboss/wsf/test/JBossWSTestHelper.java
shared-testsuite/trunk/testsuite/src/test/ant-import/build-testsuite.xml
Log:
[JBWS-3451] use custom appclient-ws.xml config, do not override provided default one
Modified: shared-testsuite/trunk/src/main/java/org/jboss/wsf/test/JBossWSTestHelper.java
===================================================================
--- shared-testsuite/trunk/src/main/java/org/jboss/wsf/test/JBossWSTestHelper.java 2012-03-12 14:02:57 UTC (rev 15917)
+++ shared-testsuite/trunk/src/main/java/org/jboss/wsf/test/JBossWSTestHelper.java 2012-03-12 14:41:15 UTC (rev 15918)
@@ -157,12 +157,13 @@
ap.output = new ByteArrayOutputStream();
if (appclientOS == null)
{
- ap.process = new ProcessBuilder().command(appclientScript, appclientFullName, touchFile).start();
+ ap.process = new ProcessBuilder().command(appclientScript, "--appclient-config=appclient-ws.xml", appclientFullName, touchFile).start();
}
else
{
final List<String> args = new LinkedList<String>();
args.add(appclientScript);
+ args.add("--appclient-config=appclient-ws.xml");
args.add(appclientFullName);
// propagate appclient args
for (final String appclientArg : appclientArgs)
Modified: shared-testsuite/trunk/testsuite/src/test/ant-import/build-testsuite.xml
===================================================================
--- shared-testsuite/trunk/testsuite/src/test/ant-import/build-testsuite.xml 2012-03-12 14:02:57 UTC (rev 15917)
+++ shared-testsuite/trunk/testsuite/src/test/ant-import/build-testsuite.xml 2012-03-12 14:41:15 UTC (rev 15918)
@@ -49,16 +49,9 @@
<!-- appclient patch -->
<copy
- file="${jboss.home}/appclient/configuration/appclient.xml"
- tofile="${jboss.home}/appclient/configuration/appclient.xml.orig"
+ file="${basedir}/tests/etc/appclient/${jbossws.integration.target}/appclient-ws.xml"
+ tofile="${jboss.home}/appclient/configuration/appclient-ws.xml"
failonerror="false"
- overwrite="false"
- verbose="true"
- />
- <copy
- file="${basedir}/tests/etc/appclient/${jbossws.integration.target}/appclient.xml"
- tofile="${jboss.home}/appclient/configuration/appclient.xml"
- failonerror="false"
overwrite="true"
verbose="true"
/>
14 years, 1 month
JBossWS SVN: r15917 - in shared-testsuite/trunk: testsuite/src/test/ant-import and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2012-03-12 10:02:57 -0400 (Mon, 12 Mar 2012)
New Revision: 15917
Modified:
shared-testsuite/trunk/src/main/java/org/jboss/wsf/test/JBossWSTestHelper.java
shared-testsuite/trunk/testsuite/src/test/ant-import/build-testsuite.xml
Log:
[JBWS-3452] do not log appclient boot messages to console
Modified: shared-testsuite/trunk/src/main/java/org/jboss/wsf/test/JBossWSTestHelper.java
===================================================================
--- shared-testsuite/trunk/src/main/java/org/jboss/wsf/test/JBossWSTestHelper.java 2012-03-12 14:02:21 UTC (rev 15916)
+++ shared-testsuite/trunk/src/main/java/org/jboss/wsf/test/JBossWSTestHelper.java 2012-03-12 14:02:57 UTC (rev 15917)
@@ -23,6 +23,7 @@
import java.io.ByteArrayOutputStream;
import java.io.File;
+import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.net.Inet6Address;
@@ -84,6 +85,7 @@
private static String implVersion;
private static String testArchiveDir;
private static String testResourcesDir;
+ private static String appclientOutputDir;
private static Map<String, AppclientProcess> appclients = new HashMap<String, JBossWSTestHelper.AppclientProcess>();
private static ExecutorService es = Executors.newCachedThreadPool();
@@ -92,6 +94,7 @@
public CopyJob outTask;
public CopyJob errTask;
public OutputStream output;
+ public OutputStream log;
}
private static synchronized Deployer getDeployer()
@@ -140,6 +143,16 @@
final String appclientName = archive.substring(sharpIndex + 1);
final String appclientFullName = getArchiveFile(earName).getParent() + FS + archive;
final String touchFile = JBOSS_HOME + FS + "bin" + FS + appclientName + ".kill";
+ final String appclientOutputDirName = System.getProperty("appclient.output.dir");
+ if (appclientOutputDirName == null)
+ {
+ throw new IllegalStateException("System property appclient.output.dir not configured");
+ }
+ final File appclientOutputDir = new File(appclientOutputDirName);
+ if (!appclientOutputDir.exists())
+ {
+ appclientOutputDir.mkdirs();
+ }
AppclientProcess ap = new AppclientProcess();
ap.output = new ByteArrayOutputStream();
if (appclientOS == null)
@@ -158,20 +171,18 @@
}
ap.process = new ProcessBuilder().command(args).start();
}
+ ap.log = new FileOutputStream(new File(getAppclientOutputDir(), appclientName + ".log-" + System.currentTimeMillis()));
// appclient out
ap.outTask = new CopyJob(ap.process.getInputStream(),
- appclientOS == null ? new TeeOutputStream(ap.output, System.out) : new TeeOutputStream(ap.output, System.out, appclientOS));
+ appclientOS == null ? new TeeOutputStream(ap.output, ap.log) : new TeeOutputStream(ap.output, ap.log, appclientOS));
// appclient err
- ap.errTask = new CopyJob(ap.process.getErrorStream(), System.err);
+ ap.errTask = new CopyJob(ap.process.getErrorStream(), ap.log);
// unfortunately the following threads are needed because of Windows behavior
es.submit(ap.outTask);
es.submit(ap.errTask);
final String patternToMatch = "Deployed \"" + earName + "\"";
final String errorMessage = "Cannot deploy " + appclientFullName + " to appclient";
awaitOutput(ap.output, patternToMatch, errorMessage);
- System.out.println("-----------------");
- System.out.println("appclient started");
- System.out.println("-----------------");
appclients.put(archive, ap);
return ap.process;
}
@@ -202,14 +213,33 @@
touchFile.delete();
ap.outTask.kill();
ap.errTask.kill();
+ ap.log.close();
ap.process.destroy();
appclients.remove(archive);
}
- System.out.println("-----------------");
- System.out.println("appclient stopped");
- System.out.println("-----------------");
}
}
+
+ private static String getAppclientOutputDir()
+ {
+ if (appclientOutputDir == null)
+ {
+ appclientOutputDir = System.getProperty("appclient.output.dir");
+ if (appclientOutputDir == null)
+ {
+ throw new IllegalStateException("System property appclient.output.dir not configured");
+ }
+ final File appclientOutputDirectory = new File(appclientOutputDir);
+ if (!appclientOutputDirectory.exists())
+ {
+ if (!appclientOutputDirectory.mkdirs())
+ {
+ throw new IllegalStateException("Unable to create directory " + appclientOutputDir);
+ }
+ }
+ }
+ return appclientOutputDir;
+ }
private static void awaitOutput(final OutputStream os, final String patternToMatch, final String errorMessage) throws InterruptedException {
int countOfAttempts = 0;
Modified: shared-testsuite/trunk/testsuite/src/test/ant-import/build-testsuite.xml
===================================================================
--- shared-testsuite/trunk/testsuite/src/test/ant-import/build-testsuite.xml 2012-03-12 14:02:21 UTC (rev 15916)
+++ shared-testsuite/trunk/testsuite/src/test/ant-import/build-testsuite.xml 2012-03-12 14:02:57 UTC (rev 15917)
@@ -571,6 +571,7 @@
<sysproperty key="jdk.home" value="${env.JAVA_HOME}"/>
<sysproperty key="log4j.output.dir" value="${tests.output.dir}"/>
+ <sysproperty key="appclient.output.dir" value="${tests.output.dir}/appclient-logs"/>
<sysproperty key="client.scenario" value="${client.scenario}"/>
<sysproperty key="interop" value="${interop}"/>
<sysproperty key="java.endorsed.dirs" value="${endorsed.dirs}"/>
@@ -626,6 +627,7 @@
<sysproperty key="jdk.home" value="${env.JAVA_HOME}"/>
<sysproperty key="log4j.output.dir" value="${tests.output.dir}"/>
+ <sysproperty key="appclient.output.dir" value="${tests.output.dir}/appclient-logs"/>
<sysproperty key="client.scenario" value="${client.scenario}"/>
<sysproperty key="interop" value="${interop}"/>
<sysproperty key="java.endorsed.dirs" value="${endorsed.dirs}"/>
14 years, 1 month
JBossWS SVN: r15916 - stack/cxf/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2012-03-12 10:02:21 -0400 (Mon, 12 Mar 2012)
New Revision: 15916
Modified:
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3452] do not log appclient boot messages to console
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2012-03-12 14:00:15 UTC (rev 15915)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2012-03-12 14:02:21 UTC (rev 15916)
@@ -27,6 +27,7 @@
<org.littleshoot.littleproxy.version>0.4</org.littleshoot.littleproxy.version>
<org.slf4j.version>1.6.1</org.slf4j.version>
<log4j.output.dir>${project.build.directory}</log4j.output.dir>
+ <appclient.output.dir>${project.build.directory}/appclient-logs</appclient.output.dir>
</properties>
<!-- Modules -->
@@ -283,9 +284,13 @@
</property>
<property>
<name>log4j.output.dir</name>
- <value>${project.build.directory}</value>
+ <value>${log4j.output.dir}</value>
</property>
<property>
+ <name>appclient.output.dir</name>
+ <value>${appclient.output.dir}</value>
+ </property>
+ <property>
<name>org.jboss.ws.testsuite.securityDomain.users.propfile</name>
<value>${project.build.directory}/test-classes/jbossws-users.properties</value>
</property>
14 years, 1 month
JBossWS SVN: r15915 - stack/native/trunk/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2012-03-12 10:00:15 -0400 (Mon, 12 Mar 2012)
New Revision: 15915
Modified:
stack/native/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3452] do not log appclient boot messages to console
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2012-03-12 12:17:14 UTC (rev 15914)
+++ stack/native/trunk/modules/testsuite/pom.xml 2012-03-12 14:00:15 UTC (rev 15915)
@@ -27,6 +27,7 @@
<jboss.javaee.version>5.0.0.GA</jboss.javaee.version>
<hornetq.version>2.1.0.BETA3</hornetq.version>
<log4j.output.dir>${project.build.directory}</log4j.output.dir>
+ <appclient.output.dir>${project.build.directory}/appclient-logs</appclient.output.dir>
</properties>
<!-- Modules -->
@@ -288,6 +289,10 @@
<value>${log4j.output.dir}</value>
</property>
<property>
+ <name>appclient.output.dir</name>
+ <value>${appclient.output.dir}</value>
+ </property>
+ <property>
<name>org.jboss.ws.testsuite.securityDomain.users.propfile</name>
<value>${project.build.directory}/test-classes/jbossws-users.properties</value>
</property>
14 years, 1 month
JBossWS SVN: r15914 - in stack/cxf/trunk/modules/testsuite: cxf-tests/src/test/etc and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2012-03-12 08:17:14 -0400 (Mon, 12 Mar 2012)
New Revision: 15914
Modified:
stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/etc/appclient.jndi.properties
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/etc/appclient.jndi.properties
stack/cxf/trunk/modules/testsuite/shared-tests/src/test/etc/appclient.jndi.properties
Log:
[JBWS-3435] configure thread pool bounds to be minimalistic
Modified: stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/etc/appclient.jndi.properties
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/etc/appclient.jndi.properties 2012-03-12 12:16:49 UTC (rev 15913)
+++ stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/etc/appclient.jndi.properties 2012-03-12 12:17:14 UTC (rev 15914)
@@ -3,3 +3,5 @@
java.naming.provider.url=remote://@jboss.bind.address@:4448
jboss.naming.client.connect.options.org.xnio.Options.SASL_POLICY_NOPLAINTEXT=false
jboss.naming.client.security.callback.handler.class=org.jboss.wsf.test.CallbackHandler
+jboss.naming.client.endpoint.create.options.org.xnio.Options.WORKER_TASK_CORE_THREADS=1
+jboss.naming.client.endpoint.create.options.org.xnio.Options.WORKER_TASK_MAX_THREADS=4
Modified: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/etc/appclient.jndi.properties
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/etc/appclient.jndi.properties 2012-03-12 12:16:49 UTC (rev 15913)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/etc/appclient.jndi.properties 2012-03-12 12:17:14 UTC (rev 15914)
@@ -3,3 +3,5 @@
java.naming.provider.url=remote://@jboss.bind.address@:4448
jboss.naming.client.connect.options.org.xnio.Options.SASL_POLICY_NOPLAINTEXT=false
jboss.naming.client.security.callback.handler.class=org.jboss.wsf.test.CallbackHandler
+jboss.naming.client.endpoint.create.options.org.xnio.Options.WORKER_TASK_CORE_THREADS=1
+jboss.naming.client.endpoint.create.options.org.xnio.Options.WORKER_TASK_MAX_THREADS=4
Modified: stack/cxf/trunk/modules/testsuite/shared-tests/src/test/etc/appclient.jndi.properties
===================================================================
--- stack/cxf/trunk/modules/testsuite/shared-tests/src/test/etc/appclient.jndi.properties 2012-03-12 12:16:49 UTC (rev 15913)
+++ stack/cxf/trunk/modules/testsuite/shared-tests/src/test/etc/appclient.jndi.properties 2012-03-12 12:17:14 UTC (rev 15914)
@@ -3,3 +3,5 @@
java.naming.provider.url=remote://@jboss.bind.address@:4448
jboss.naming.client.connect.options.org.xnio.Options.SASL_POLICY_NOPLAINTEXT=false
jboss.naming.client.security.callback.handler.class=org.jboss.wsf.test.CallbackHandler
+jboss.naming.client.endpoint.create.options.org.xnio.Options.WORKER_TASK_CORE_THREADS=1
+jboss.naming.client.endpoint.create.options.org.xnio.Options.WORKER_TASK_MAX_THREADS=4
14 years, 1 month
JBossWS SVN: r15913 - stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2012-03-12 08:16:49 -0400 (Mon, 12 Mar 2012)
New Revision: 15913
Modified:
stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml
Log:
[JBWS-3435] start only services that are really needed for WS tests
Modified: stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml 2012-03-12 12:14:49 UTC (rev 15912)
+++ stack/cxf/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml 2012-03-12 12:16:49 UTC (rev 15913)
@@ -26,14 +26,10 @@
<extension module="org.jboss.as.connector"/>
<extension module="org.jboss.as.ee"/>
<extension module="org.jboss.as.ejb3"/>
- <extension module="org.jboss.as.jacorb"/>
- <extension module="org.jboss.as.jaxr"/>
- <extension module="org.jboss.as.jpa"/>
<extension module="org.jboss.as.logging"/>
<extension module="org.jboss.as.naming"/>
<extension module="org.jboss.as.remoting"/>
<extension module="org.jboss.as.security"/>
- <extension module="org.jboss.as.transactions"/>
<extension module="org.jboss.as.webservices"/>
</extensions>
@@ -78,40 +74,8 @@
</handlers>
</root-logger>
</subsystem>
- <subsystem xmlns="urn:jboss:domain:datasources:1.0">
- <datasources>
- <datasource jndi-name="java:jboss/datasources/ExampleDS" enabled="false" use-java-context="true"
- pool-name="java:jboss/datasources/ExampleDS">
- <connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1</connection-url>
- <driver>h2</driver>
- <pool></pool>
- <security>
- <user-name>sa</user-name>
- <password>sa</password>
- </security>
- </datasource>
- <drivers>
- <driver name="h2" module="com.h2database.h2">
- <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
- </driver>
- </drivers>
- </datasources>
- </subsystem>
<subsystem xmlns="urn:jboss:domain:ee:1.0"/>
<subsystem xmlns="urn:jboss:domain:ejb3:1.2" />
- <subsystem xmlns="urn:jboss:domain:jacorb:1.0">
- <orb name="JBoss" print-version="off" giop-minor-version="2">
- <connection max-managed-buf-size="24" outbuf-cache-timeout="-1"/>
- <naming root-context="JBoss/Naming/root" export-corbaloc="on"/>
- </orb>
- <poa monitoring="off" queue-wait="off">
- <request-processors pool-size="2" max-threads="8"/>
- </poa>
- <interop sun="on" chunk-custom-rmi-valuetypes="on" strict-check-on-tc-creation="off"/>
- </subsystem>
- <subsystem xmlns="urn:jboss:domain:jpa:1.0">
- <jpa default-datasource=""/>
- </subsystem>
<subsystem xmlns="urn:jboss:domain:naming:1.0"/>
<subsystem xmlns="urn:jboss:domain:security:1.0">
<security-domains>
@@ -132,22 +96,9 @@
</security-domain>
</security-domains>
</subsystem>
- <subsystem xmlns="urn:jboss:domain:jaxr:1.0">
- <connection-factory jndi-name="java:jboss/jaxr/ConnectionFactory"/>
- <juddi-server publish-url="http://localhost:8080/juddi/publish" query-url="http://localhost:8080/juddi/query"/>
- </subsystem>
<subsystem xmlns="urn:jboss:domain:remoting:1.1">
<connector name="remoting-connector" socket-binding="remoting"/>
</subsystem>
- <subsystem xmlns="urn:jboss:domain:transactions:1.0">
- <recovery-environment socket-binding="txn-recovery-environment" status-socket-binding="txn-status-manager"/>
- <core-environment>
- <process-id>
- <uuid/>
- </process-id>
- </core-environment>
- <coordinator-environment default-timeout="300"/>
- </subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:1.1"/>
</profile>
@@ -158,11 +109,7 @@
</interfaces>
<socket-binding-group name="standard-sockets" default-interface="public">
- <socket-binding name="jacorb" port="13528"/>
- <socket-binding name="jacorb-ssl" port="13529"/>
<socket-binding name="remoting" port="4448"/>
- <socket-binding name="txn-recovery-environment" port="14712"/>
- <socket-binding name="txn-status-manager" port="14713"/>
</socket-binding-group>
</server>
14 years, 1 month
JBossWS SVN: r15912 - stack/native/trunk/modules/testsuite/src/test/resources/jboss711.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2012-03-12 08:14:49 -0400 (Mon, 12 Mar 2012)
New Revision: 15912
Modified:
stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml
Log:
[JBWS-3435] start only services that are really needed for WS tests
Modified: stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml
===================================================================
--- stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml 2012-03-12 12:14:18 UTC (rev 15911)
+++ stack/native/trunk/modules/testsuite/src/test/resources/jboss711/appclient.xml 2012-03-12 12:14:49 UTC (rev 15912)
@@ -26,14 +26,10 @@
<extension module="org.jboss.as.connector"/>
<extension module="org.jboss.as.ee"/>
<extension module="org.jboss.as.ejb3"/>
- <extension module="org.jboss.as.jacorb"/>
- <extension module="org.jboss.as.jaxr"/>
- <extension module="org.jboss.as.jpa"/>
<extension module="org.jboss.as.logging"/>
<extension module="org.jboss.as.naming"/>
<extension module="org.jboss.as.remoting"/>
<extension module="org.jboss.as.security"/>
- <extension module="org.jboss.as.transactions"/>
<extension module="org.jboss.as.webservices"/>
</extensions>
@@ -78,40 +74,8 @@
</handlers>
</root-logger>
</subsystem>
- <subsystem xmlns="urn:jboss:domain:datasources:1.0">
- <datasources>
- <datasource jndi-name="java:jboss/datasources/ExampleDS" enabled="false" use-java-context="true"
- pool-name="java:jboss/datasources/ExampleDS">
- <connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1</connection-url>
- <driver>h2</driver>
- <pool></pool>
- <security>
- <user-name>sa</user-name>
- <password>sa</password>
- </security>
- </datasource>
- <drivers>
- <driver name="h2" module="com.h2database.h2">
- <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
- </driver>
- </drivers>
- </datasources>
- </subsystem>
<subsystem xmlns="urn:jboss:domain:ee:1.0"/>
<subsystem xmlns="urn:jboss:domain:ejb3:1.2" />
- <subsystem xmlns="urn:jboss:domain:jacorb:1.0">
- <orb name="JBoss" print-version="off" giop-minor-version="2">
- <connection max-managed-buf-size="24" outbuf-cache-timeout="-1"/>
- <naming root-context="JBoss/Naming/root" export-corbaloc="on"/>
- </orb>
- <poa monitoring="off" queue-wait="off">
- <request-processors pool-size="2" max-threads="8"/>
- </poa>
- <interop sun="on" chunk-custom-rmi-valuetypes="on" strict-check-on-tc-creation="off"/>
- </subsystem>
- <subsystem xmlns="urn:jboss:domain:jpa:1.0">
- <jpa default-datasource=""/>
- </subsystem>
<subsystem xmlns="urn:jboss:domain:naming:1.0"/>
<subsystem xmlns="urn:jboss:domain:security:1.0">
<security-domains>
@@ -132,22 +96,9 @@
</security-domain>
</security-domains>
</subsystem>
- <subsystem xmlns="urn:jboss:domain:jaxr:1.0">
- <connection-factory jndi-name="java:jboss/jaxr/ConnectionFactory"/>
- <juddi-server publish-url="http://localhost:8080/juddi/publish" query-url="http://localhost:8080/juddi/query"/>
- </subsystem>
<subsystem xmlns="urn:jboss:domain:remoting:1.1">
<connector name="remoting-connector" socket-binding="remoting"/>
</subsystem>
- <subsystem xmlns="urn:jboss:domain:transactions:1.0">
- <recovery-environment socket-binding="txn-recovery-environment" status-socket-binding="txn-status-manager"/>
- <core-environment>
- <process-id>
- <uuid/>
- </process-id>
- </core-environment>
- <coordinator-environment default-timeout="300"/>
- </subsystem>
<subsystem xmlns="urn:jboss:domain:webservices:1.1"/>
</profile>
@@ -158,11 +109,7 @@
</interfaces>
<socket-binding-group name="standard-sockets" default-interface="public">
- <socket-binding name="jacorb" port="13528"/>
- <socket-binding name="jacorb-ssl" port="13529"/>
<socket-binding name="remoting" port="4448"/>
- <socket-binding name="txn-recovery-environment" port="14712"/>
- <socket-binding name="txn-status-manager" port="14713"/>
</socket-binding-group>
</server>
14 years, 1 month
JBossWS SVN: r15911 - in stack/native/trunk/modules/testsuite: shared-tests/src/test/etc and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: ropalka
Date: 2012-03-12 08:14:18 -0400 (Mon, 12 Mar 2012)
New Revision: 15911
Modified:
stack/native/trunk/modules/testsuite/native-tests/src/test/etc/appclient.jndi.properties
stack/native/trunk/modules/testsuite/shared-tests/src/test/etc/appclient.jndi.properties
Log:
[JBWS-3435] configure thread pool bounds to be minimalistic
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/etc/appclient.jndi.properties
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/etc/appclient.jndi.properties 2012-03-12 09:24:04 UTC (rev 15910)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/etc/appclient.jndi.properties 2012-03-12 12:14:18 UTC (rev 15911)
@@ -3,3 +3,5 @@
java.naming.provider.url=remote://@jboss.bind.address@:4448
jboss.naming.client.connect.options.org.xnio.Options.SASL_POLICY_NOPLAINTEXT=false
jboss.naming.client.security.callback.handler.class=org.jboss.wsf.test.CallbackHandler
+jboss.naming.client.endpoint.create.options.org.xnio.Options.WORKER_TASK_CORE_THREADS=1
+jboss.naming.client.endpoint.create.options.org.xnio.Options.WORKER_TASK_MAX_THREADS=4
Modified: stack/native/trunk/modules/testsuite/shared-tests/src/test/etc/appclient.jndi.properties
===================================================================
--- stack/native/trunk/modules/testsuite/shared-tests/src/test/etc/appclient.jndi.properties 2012-03-12 09:24:04 UTC (rev 15910)
+++ stack/native/trunk/modules/testsuite/shared-tests/src/test/etc/appclient.jndi.properties 2012-03-12 12:14:18 UTC (rev 15911)
@@ -3,3 +3,5 @@
java.naming.provider.url=remote://@jboss.bind.address@:4448
jboss.naming.client.connect.options.org.xnio.Options.SASL_POLICY_NOPLAINTEXT=false
jboss.naming.client.security.callback.handler.class=org.jboss.wsf.test.CallbackHandler
+jboss.naming.client.endpoint.create.options.org.xnio.Options.WORKER_TASK_CORE_THREADS=1
+jboss.naming.client.endpoint.create.options.org.xnio.Options.WORKER_TASK_MAX_THREADS=4
14 years, 1 month