[jbossws-commits] JBossWS SVN: r16017 - in stack/native/trunk: modules/dist and 6 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Mar 23 11:15:10 EDT 2012


Author: ropalka
Date: 2012-03-23 11:15:08 -0400 (Fri, 23 Mar 2012)
New Revision: 16017

Removed:
   stack/native/trunk/modules/dist/src/main/distro/Install.txt
   stack/native/trunk/modules/dist/src/main/distro/JBossORG-EULA.txt
   stack/native/trunk/modules/dist/src/main/distro/ReleaseNotes.txt
   stack/native/trunk/modules/dist/src/main/distro/ant.properties.example
   stack/native/trunk/modules/dist/src/main/distro/test-exclude.xsl
   stack/native/trunk/modules/dist/src/main/doc/
   stack/native/trunk/modules/dist/src/main/scripts/assembly-bin-dist.xml
   stack/native/trunk/modules/dist/src/main/scripts/assembly-src-dist.xml
   stack/native/trunk/modules/resources/src/main/resources/modules/jboss700/
Modified:
   stack/native/trunk/build.xml
   stack/native/trunk/modules/dist/pom.xml
   stack/native/trunk/modules/dist/src/main/distro/build-deploy.xml
   stack/native/trunk/modules/dist/src/main/distro/build-setup.xml
   stack/native/trunk/modules/dist/src/main/distro/build.xml
   stack/native/trunk/modules/dist/src/main/scripts/assembly-deploy-artifacts.xml
   stack/native/trunk/modules/resources/pom.xml
   stack/native/trunk/modules/testsuite/pom.xml
   stack/native/trunk/pom.xml
Log:
[JBWS-3462] removing AS70x support, binary distro, source distro & docs

Modified: stack/native/trunk/build.xml
===================================================================
--- stack/native/trunk/build.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/build.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -65,12 +65,6 @@
       <arg value="help:effective-settings"/>
     </exec>
     <xmlproperty file="${dist.output.dir}/effective-settings.xml" keeproot="false"/>
-    <condition property="jboss702.home" value="${profiles.profile.properties.jboss702.home}">
-      <isset property="profiles.profile.properties.jboss702.home"/>
-    </condition>
-    <condition property="jboss710.home" value="${profiles.profile.properties.jboss710.home}">
-      <isset property="profiles.profile.properties.jboss710.home"/>
-    </condition>
     <condition property="jboss711.home" value="${profiles.profile.properties.jboss711.home}">
       <isset property="profiles.profile.properties.jboss711.home"/>
     </condition>
@@ -78,16 +72,10 @@
       <isset property="profiles.profile.properties.jboss712.home"/>
     </condition>
 
-  	<fail message="jboss home not set, use jboss702.home=value, jboss710.home=value, jboss711.home=value or jboss712.home=value to set">
+  	<fail message="jboss home not set, use jboss711.home=value or jboss712.home=value to set">
      <condition>
       <and>
        <not>
-         <isset property="jboss702.home"/>
-       </not>
-       <not>
-         <isset property="jboss710.home"/>
-       </not>
-       <not>
          <isset property="jboss711.home"/>
        </not>
        <not>
@@ -98,8 +86,6 @@
     </fail>
 
     <echo/>
-    <echo message="jboss702.home=${jboss702.home}"/>
-    <echo message="jboss710.home=${jboss710.home}"/>
     <echo message="jboss711.home=${jboss711.home}"/>
     <echo message="jboss712.home=${jboss712.home}"/>
   </target>
@@ -123,7 +109,7 @@
 
   <target name="prepare-deploy" depends="prepare,os-init">
 
-    <!-- Use a system property to overwrite the empty default value -->
+    <!-- Use a system property to overwrite the empty default value  -->
     <property name="maven.opts" value=""/>
 
     <echo/>
@@ -135,56 +121,4 @@
       <arg line="${maven.opts} -Pdist -Dno-testsuite install"/>
     </exec>
   </target>
-
-  <target name="build-bin-dist" depends="prepare,os-init,makedir" description="Build the binary distribution">
-    <!-- Use a system property to overwrite the empty default value -->
-    <property name="maven.opts" value=""/>
-
-    <echo/>
-    <echo message="${mvn} ${maven.opts} -Pdist -Dbindist -Dno-testsuite install"/>
-    <echo/>
-
-    <delete dir="${dist.output.dir}/jbossws-native-bin-dist"/>
-    <exec dir="${basedir}" executable="${mvn}" failonerror="true">
-      <arg line="${maven.opts} -Pdist -Dbindist -Dno-testsuite install"/>
-    </exec>
-
-    <zip destfile="${stack.output.dir}/jbossws-native-bin-dist.zip">
-      <zipfileset
-        dir="${dist.output.dir}/assembly/jbossws-native-bin-dist"
-        includes="build/ deploy/ docs/ tests/ build.xml ant.properties.example"
-        prefix="jbossws-native-bin-dist"/>
-    </zip>
-  </target>
-
-  <target name="build-src-dist" depends="prepare,os-init,makedir" description="Build the source distribution">
-    <!-- Use a system property to overwrite the empty default value -->
-    <property name="maven.opts" value=""/>
-
-    <echo/>
-    <echo message="${mvn} ${maven.opts} -Pdist -Dsrcdist -Dno-testsuite install"/>
-    <echo/>
-
-    <delete dir="${stack.output.dir}/jbossws-native-src-dist"/>
-    <exec dir="${basedir}" executable="${mvn}" failonerror="true">
-      <arg line="${maven.opts} -Pdist -Dsrcdist -Dno-testsuite install"/>
-    </exec>
-
-    <zip destfile="${stack.output.dir}/jbossws-native-src-dist.zip">
-      <zipfileset
-        dir="${dist.output.dir}/assembly/jbossws-native-src-dist"
-        includes="modules/ src/ eclipse/ build.xml pom.xml profiles.xml.example .classpath .project "
-        prefix="jbossws-native-src-dist"/>
-    </zip>
-  </target>
-
-   <target name="check.exist">
-       <available file="${stack.output.dir}" property="file.exists" value="true" />
-   </target>
-
-   <target name="makedir" depends="check.exist" unless="file.exists">
-       <mkdir dir="${stack.output.dir}" />
-   </target>
-
-
 </project>

Modified: stack/native/trunk/modules/dist/pom.xml
===================================================================
--- stack/native/trunk/modules/dist/pom.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/pom.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -45,20 +45,6 @@
       <groupId>org.jboss.ws.native</groupId>
       <artifactId>jbossws-native-resources</artifactId>
       <version>${project.version}</version>
-      <classifier>jboss702</classifier>
-    </dependency>
-
-    <dependency>
-      <groupId>org.jboss.ws.native</groupId>
-      <artifactId>jbossws-native-resources</artifactId>
-      <version>${project.version}</version>
-      <classifier>jboss710</classifier>
-    </dependency>
-
-    <dependency>
-      <groupId>org.jboss.ws.native</groupId>
-      <artifactId>jbossws-native-resources</artifactId>
-      <version>${project.version}</version>
       <classifier>jboss711</classifier>
     </dependency>
 
@@ -81,69 +67,18 @@
       <scope>provided</scope>
     </dependency>
 
-    <!--test-suite-->
     <dependency>
       <groupId>org.jboss.ws</groupId>
       <artifactId>jbossws-shared-testsuite</artifactId>
       <scope>test</scope>
     </dependency>
-    <dependency>
-      <groupId>org.jboss.ws</groupId>
-      <artifactId>jbossws-shared-testsuite</artifactId>
-      <type>zip</type>
-      <scope>test</scope>
-    </dependency>
 
-    <!--juddi-->
     <dependency>
-      <groupId>org.jboss.jaxr</groupId>
-      <artifactId>juddi-service</artifactId>
-      <type>sar</type>
-      <scope>provided</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>apache-scout</groupId>
-      <artifactId>scout</artifactId>
-      <scope>provided</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>juddi</groupId>
-      <artifactId>juddi</artifactId>
-      <scope>provided</scope>
-    </dependency>
-
-    <!-- Container integrations -->
-    <dependency>
       <groupId>org.jboss.ws</groupId>
-      <artifactId>jbossws-jboss702</artifactId>
-      <scope>provided</scope>
-      <exclusions>
-        <exclusion>
-          <groupId>javax.xml.bind</groupId>
-          <artifactId>jaxb-api</artifactId>
-        </exclusion>
-        <exclusion>
-          <groupId>sun-jaxb</groupId>
-          <artifactId>jaxb-api</artifactId>
-        </exclusion>
-      </exclusions>
-    </dependency>
-
-    <dependency>
-      <groupId>org.jboss.ws</groupId>
-      <artifactId>jbossws-jboss710</artifactId>
-      <scope>provided</scope>
-    </dependency>
-
-    <dependency>
-      <groupId>org.jboss.ws</groupId>
       <artifactId>jbossws-jboss711</artifactId>
       <scope>provided</scope>
     </dependency>
 
-    <!--junit-->
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
@@ -175,210 +110,7 @@
           </execution>
         </executions>
       </plugin>
-
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-antrun-plugin</artifactId>
-        <version>1.4</version>
-        <dependencies>
-          <dependency>
-            <groupId>org.apache.ant</groupId>
-            <artifactId>ant-trax</artifactId>
-            <version>1.8.0</version>
-          </dependency>
-        </dependencies>
-        <executions>
-          <execution>
-            <id>generate-exclude-file</id>
-            <phase>validate</phase>
-            <configuration>
-              <tasks>
-                <mkdir dir="${basedir}/target/exclude-file" />
-                <xslt style="${basedir}/src/main/distro/test-exclude.xsl"
-                  in="../testsuite/pom.xml"
-                  out="${basedir}/target/exclude-file/test-excludes-jboss702.txt">
-                  <param name="targetName" expression="jboss702" />
-                </xslt>
-                <xslt style="${basedir}/src/main/distro/test-exclude.xsl" 
-                  in="../testsuite/pom.xml" 
-                  out="${basedir}/target/exclude-file/test-excludes-jboss710.txt">
-                  <param name="targetName" expression="jboss710" />
-                </xslt> 
-                <xslt style="${basedir}/src/main/distro/test-exclude.xsl" 
-                  in="../testsuite/pom.xml" 
-                  out="${basedir}/target/exclude-file/test-excludes-jboss711.txt">
-                  <param name="targetName" expression="jboss711" />
-                </xslt> 
-                <xslt style="${basedir}/src/main/distro/test-exclude.xsl" 
-                  in="../testsuite/pom.xml" 
-                  out="${basedir}/target/exclude-file/test-excludes-jboss712.txt">
-                  <param name="targetName" expression="jboss712" />
-                </xslt> 
-              </tasks>
-            </configuration>
-            <goals>
-              <goal>run</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
     </plugins>
   </build>
 
-  <profiles>
-    <!--
-     Name: bindist 
-     Descr: Build the binary distribution
-    -->
-    <profile>
-      <id>bindist</id>
-      <activation>
-        <property>
-          <name>bindist</name>
-        </property>
-      </activation>
-      <dependencies>
-        <!-- Libraries required for running binary distro testsuite and not available on server-->
-        <dependency>
-          <groupId>org.jboss.ws</groupId>
-          <artifactId>jbossws-jboss702</artifactId>
-          <classifier>tests-integration</classifier>
-          <scope>provided</scope>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss.ws</groupId>
-          <artifactId>jbossws-jboss710</artifactId>
-          <classifier>tests-integration</classifier>
-          <scope>provided</scope>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss.ws</groupId>
-          <artifactId>jbossws-jboss711</artifactId>
-          <classifier>tests-integration</classifier>
-          <scope>provided</scope>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss.as</groupId>
-          <artifactId>jboss-as-webservices-tests-integration</artifactId>
-          <scope>provided</scope>
-          <exclusions>
-            <exclusion>
-              <groupId>org.jboss.as</groupId>
-              <artifactId>jboss-as-build-config</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>org.jboss.as</groupId>
-              <artifactId>jboss-as-server</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>org.jboss.marshalling</groupId>
-              <artifactId>jboss-marshalling-river</artifactId>
-            </exclusion>
-          </exclusions>
-        </dependency>
-      </dependencies>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.jboss.maven.plugins</groupId>
-            <artifactId>maven-jdocbook-plugin</artifactId>
-            <executions>
-              <execution>
-                <goals>
-                  <goal>resources</goal>
-                  <goal>generate</goal>
-                </goals>
-                <phase>package</phase>
-              </execution>
-            </executions>
-            <configuration>
-              <sourceDocumentName>JBossWS-Native.xml</sourceDocumentName>
-              <sourceDirectory>${basedir}/src/main/doc</sourceDirectory>
-              <imageResource>
-                <directory>${basedir}/src/main/doc</directory>
-                <includes>
-                  <include>images/*</include>
-                </includes>
-              </imageResource>
-              <formats>
-                <!--
-                  format> <formatName>pdf</formatName>
-                  <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
-                  <finalName>JBossWS-Native_Guide.pdf</finalName>
-                  </format
-                -->
-                <format>
-                  <formatName>html</formatName>
-                  <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
-                  <finalName>index.html</finalName>
-                </format>
-                <!-- 
-                <format>
-                  <formatName>html_single</formatName>
-                  <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
-                  <finalName>index.html</finalName>
-                </format>
-                -->
-              </formats>
-              <options>
-                <xincludeSupported>true</xincludeSupported>
-              </options>
-            </configuration>
-          </plugin>
-          <plugin>
-            <artifactId>maven-assembly-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>distribution-package</id>
-                <configuration>
-                  <finalName>assembly</finalName>
-                  <ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
-                  <appendAssemblyId>false</appendAssemblyId>
-                  <descriptors>
-                    <descriptor>src/main/scripts/assembly-deploy-artifacts.xml</descriptor>
-                    <descriptor>src/main/scripts/assembly-bin-dist.xml</descriptor>
-                  </descriptors>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-
-    <!--
-     Name: srcdist 
-     Descr: Build the source distribution 
-    -->
-    <profile>
-      <id>srcdist</id>
-      <activation>
-        <property>
-          <name>srcdist</name>
-        </property>
-      </activation>
-
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-assembly-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>distribution-package</id>
-                <configuration>
-                  <finalName>assembly</finalName>
-                  <ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
-                  <appendAssemblyId>false</appendAssemblyId>
-                  <descriptors>
-                    <descriptor>src/main/scripts/assembly-deploy-artifacts.xml</descriptor>
-                    <descriptor>src/main/scripts/assembly-src-dist.xml</descriptor>
-                  </descriptors>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
 </project>

Deleted: stack/native/trunk/modules/dist/src/main/distro/Install.txt
===================================================================
--- stack/native/trunk/modules/dist/src/main/distro/Install.txt	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/distro/Install.txt	2012-03-23 15:15:08 UTC (rev 16017)
@@ -1,31 +0,0 @@
-
-${project.name}
-http://www.jboss.org/jbossws/
-
-Version: jbossws-native-${project.version}
-
-Installation instructions
-=========================
-
-In order to install JBossWS the following steps are necessary:
-
-1.) Copy ant.properties.examples to ant.properties
-2.) Modify the target container location in ant.properties
-3.) Execute one of the following
-
-	ant deploy-jboss702
-	ant deploy-jboss710
-	ant deploy-jboss711
-	ant deploy-jboss712
-
-4.) Execute the samples to verify your installation
-
-   'ant tests'
-
-   You should see no errors.
-
-If you have any questions, please post to the userforum:
-http://www.jboss.org/index.html?module=bb&op=viewforum&f=200
-
-Enjoy,
-The JBossWS Team

Deleted: stack/native/trunk/modules/dist/src/main/distro/JBossORG-EULA.txt
===================================================================
--- stack/native/trunk/modules/dist/src/main/distro/JBossORG-EULA.txt	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/distro/JBossORG-EULA.txt	2012-03-23 15:15:08 UTC (rev 16017)
@@ -1,107 +0,0 @@
-LICENSE AGREEMENT
-JBOSS(r)
-
-This License Agreement governs the use of the Software Packages and any updates to the Software 
-Packages, regardless of the delivery mechanism.  Each Software Package is a collective work 
-under U.S. Copyright Law.  Subject to the following terms, Red Hat, Inc. ("Red Hat") grants to 
-the user ("Client") a license to the applicable collective work(s) pursuant to the 
-GNU Lesser General Public License v. 2.1 except for the following Software Packages: 
-(a) JBoss Portal Forums and JBoss Transactions JTS, each of which is licensed pursuant to the 
-GNU General Public License v.2; 
-
-(b) JBoss Rules, which is licensed pursuant to the Apache  License v.2.0;
-
-(c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is licensed under the 
-(open source) Sleepycat License (if Client does not wish to use the open source version of this database, 
-it may purchase a license from Sleepycat Software); 
-
-and (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public License v.1, 
-and, pursuant to the OASIS BPEL4WS standard, requires parties wishing to redistribute to enter various 
-royalty-free patent licenses.  
-
-Each of the foregoing licenses is available at http://www.opensource.org/licenses/index.php.
-
-1.  The Software.  "Software Packages" refer to the various software modules that are created and made available 
-for distribution by the JBoss.org open source community at http://www.jboss.org.   Each of the Software Packages 
-may be comprised of hundreds of software components.  The end user license agreement for each component is located in 
-the component's source code.  With the exception of certain image files identified in Section 2 below, 
-the license terms for the components permit Client to copy, modify, and redistribute the component, 
-in both source code and binary code forms.  This agreement does not limit Client's rights under, 
-or grant Client rights that supersede, the license terms of any particular component.
-
-2.  Intellectual Property Rights.  The Software Packages are owned by Red Hat and others and are protected under copyright 
-and other laws.  Title to the Software Packages and any component, or to any copy, modification, or merged portion shall 
-remain with the aforementioned, subject to the applicable license.  The "JBoss" trademark, "Red Hat" trademark, the 
-individual Software Package trademarks, and the "Shadowman" logo are registered trademarks of Red Hat and its affiliates 
-in the U.S. and other countries.  This agreement permits Client to distribute unmodified copies of the Software Packages 
-using the Red Hat trademarks that Red Hat has inserted in the Software Packages on the condition that Client follows Red Hat's 
-trademark guidelines for those trademarks located at http://www.redhat.com/about/corporate/trademark/.  Client must abide by 
-these trademark guidelines when distributing the Software Packages, regardless of whether the Software Packages have been modified. 
-If Client modifies the Software Packages, then Client must replace all Red Hat trademarks and logos identified at 
-http://www.jboss.com/company/logos, unless a separate agreement with Red Hat is executed or other permission granted.  
-Merely deleting the files containing the Red Hat trademarks may corrupt the Software Packages.  
-
-3.  Limited Warranty.  Except as specifically stated in this Paragraph 3 or a license for a particular 
-component, to the maximum extent permitted under applicable law, the Software Packages and the 
-components are provided and licensed "as is" without warranty of any kind, expressed or implied, 
-including the implied warranties of merchantability, non-infringement or fitness for a particular purpose.  
-Red Hat warrants that the media on which Software Packages may be furnished will be free from defects in 
-materials and manufacture under normal use for a period of 30 days from the date of delivery to Client.  
-Red Hat does not warrant that the functions contained in the Software Packages will meet Client's requirements 
-or that the operation of the Software Packages will be entirely error free or appear precisely as described 
-in the accompanying documentation. This warranty extends only to the party that purchases the Services 
-pertaining to the Software Packages from Red Hat or a Red Hat authorized distributor. 
-
-4.  Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, the remedies 
-described below are accepted by Client as its only remedies.  Red Hat's entire liability, and Client's 
-exclusive remedies, shall be: If the Software media is defective, Client may return it within 30 days of 
-delivery along with a copy of Client's payment receipt and Red Hat, at its option, will replace it or 
-refund the money paid by Client for the Software.  To the maximum extent permitted by applicable law, 
-Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential 
-damages, including lost profits or lost savings arising out of the use or inability to use the Software, 
-even if Red Hat or such dealer has been advised of the possibility of such damages.  In no event shall 
-Red Hat's liability under this agreement exceed the amount that Client paid to Red Hat under this 
-Agreement during the twelve months preceding the action.
-
-5.  Export Control.  As required by U.S. law, Client represents and warrants that it: 
-(a) understands that the Software Packages are subject to export controls under the 
-U.S. Commerce Department's Export Administration Regulations ("EAR"); 
-
-(b) is not located in a prohibited destination country under the EAR or U.S. sanctions regulations 
-(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria); 
-
-(c) will not export, re-export, or transfer the Software Packages to any prohibited destination, entity, 
-or individual without the necessary export license(s) or authorizations(s) from the U.S. Government; 
-
-(d) will not use or transfer the Software Packages for use in any sensitive nuclear, chemical or 
-biological weapons, or missile technology end-uses unless authorized by the U.S. Government by 
-regulation or specific license; 
-
-(e) understands and agrees that if it is in the United States and exports or transfers the Software 
-Packages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual 
-reports to the Commerce Department's Bureau of Industry & Security (BIS), which include the name and 
-address (including country) of each transferee; 
-
-and (f) understands that countries other than the United States may restrict the import, use, or 
-export of encryption products and that it shall be solely responsible for compliance with any such 
-import, use, or export restrictions.
-
-6.  Third Party Programs. Red Hat may distribute third party software programs with the Software Packages 
-that are not part of the Software Packages and which Client must install separately.  These third party 
-programs are subject to their own license terms.  The license terms either accompany the programs or 
-can be viewed at http://www.redhat.com/licenses/.  If Client does not agree to abide by the applicable 
-license terms for such programs, then Client may not install them.  If Client wishes to install the programs 
-on more than one system or transfer the programs to another party, then Client must contact the licensor 
-of the programs.
-
-7.  General.  If any provision of this agreement is held to be unenforceable, that shall not affect the 
-enforceability of the remaining provisions.  This License Agreement shall be governed by the laws of the 
-State of North Carolina and of the United States, without regard to any conflict of laws provisions, 
-except that the United Nations Convention on the International Sale of Goods shall not apply.
-
-Copyright 2006 Red Hat, Inc.  All rights reserved.  
-"JBoss" and the JBoss logo are registered trademarks of Red Hat, Inc.  
-All other trademarks are the property of their respective owners. 
-
-	Page 1 of 1	18 October 2006
-

Deleted: stack/native/trunk/modules/dist/src/main/distro/ReleaseNotes.txt
===================================================================
--- stack/native/trunk/modules/dist/src/main/distro/ReleaseNotes.txt	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/distro/ReleaseNotes.txt	2012-03-23 15:15:08 UTC (rev 16017)
@@ -1,1334 +0,0 @@
-
-${project.name}
-http://www.jboss.org/jbossws/
-
-Version: jbossws-native-${project.version}
-
-Release Notes
-=============
-
-The project home page (http://www.jboss.org/jbossws) and the official documentation
-(https://docs.jboss.org/author/display/JBWS) are usually good starting points.
-They contain the User Guide and Quick Start instructions.
-
-A list of examples that accompany the UserGuide can be found in the tests directory
-that ship with the distribution.
-
-If you have any questions, please post to the JBossWS User Forum
-http://www.jboss.org/index.html?module=bb&op=viewforum&f=200
-
-For details see the change log. 
-https://issues.jboss.org/browse/JBWS?report=com.atlassian.jira.plugin.system.project:changelog-panel#selectedTab=com.atlassian.jira.plugin.system.project%3Achangelog-panel
-
-For issues that are scheduled for future versions see the road map.
-https://issues.jboss.org/browse/JBWS?report=com.atlassian.jira.plugin.system.project:changelog-panel#selectedTab=com.atlassian.jira.plugin.system.project%3Aroadmap-panel
-
-What's new in jbossws-native-${project.version}
-----------------------------------
-
-Feature Request
-
-    TODO: enumerate
-
-Bug
-
-    TODO: enumerate
-
-Task
-
-    TODO: enumerate
-
-Errata
-
-    See: TODO: reference to associated JIRA issue
-    
-Enjoy,
-The JBossWS Team
-
-
-Previous Releases ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
------------------------
-jbossws-native-4.0.2.GA
------------------------
-
-Feature Request
-
-    * [JBWS-3439] - Upgrade to Apache WSS4J 1.6.5 and Santuario 1.5.1
-
-Bug
-
-    * [JBWS-3432] - WebservicesFactory can't parse webservices.xml with javaee:descriptionGroup references
-
-Task
-
-    * [JBWS-3442] - Verify dependencies are up to date
-    * [JBWS-3437] - WS Refs have to keep classloader reference
-    * [JBWS-3438] - JAX-RPC generated proxies have to be de/serializable
-    * [JBWS-3444] - Review and rewrite appclient tests
-
-Errata
-
-    See: https://issues.jboss.org/browse/JBWS-3450
-
-
------------------------
-jbossws-native-4.0.1.GA
------------------------
-
-Feature Request / Enhancement
-
-    * [JBWS-2251] - Enhance X509 certificate issuer comparison
-    * [JBWS-3408] - maven-jaxws-tools-plugin <target> option is undocumented
-    * [JBWS-3420] - Enhance deployment performance by simplifying connector conf retrieval
-    * [JBWS-3162] - Add javaee_web_services_metadata_handler_2_0.xsd to jbossws-entities.properties
-
-Bug
-
-    * [JBWS-3386] - Usernametoken support requires optional elements
-    * [JBWS-3414] - DeploymentAspectManagerImpl does not properly deal with deployment failures
-    * [JBWS-3415] - Provider endpoints are not processed for DD contribution
-    * [JBWS-3416] - MetadataBuilder does not re-use WebserviceMetadata parsed into AS integration layer
-    * [JBWS-3417] - JAXWSServerMetaDataBuilder::processWSDDContribution does not process WSDL location override
-    * [JBWS-3421] - EndpointRegistryDeploymentAspect can't properly deal with AS7 domain reloads
-    * [JBWS-3423] - JBWS3277TestCase.testMtomSawpFile fails on Windows
-
-Task
-
-    * [JBWS-3388] - Switch to remoting-jmx for tests using JMX to connect to the server
-    * [JBWS-3419] - Restore managed endpoint registry
-    * [JBWS-3422] - Review and enable passing serviceref/webserviceref tests
-    * [JBWS-3425] - Upgrade to JAXB 2.2.4
-
-Errata
-
-    See: https://jira.jboss.org/browse/JBWS-3428
-
------------------------
-jbossws-native-4.0.0.GA
------------------------
-
-Bug
-
-    * [JBWS-3387] - JAXRPC SchemaBindingBuilder can't rely on jaxws integration classloader (AS7)
-
-Task
-
-    * [JBWS-3281] - Create a migration guide to JBossWS 4.0 / AS 7 integration
-    * [JBWS-3373] - port component link servlet on AS7
-    * [JBWS-3393] - Remove support for AS6 as target container
-    * [JBWS-3401] - Support deployment of EJB3 endpoints bundled in war archives referencing WSDL that is importing XML schema(s)
-
-Errata
-
-    See: https://jira.jboss.org/browse/JBWS-3404
-
-------------------------
-jbossws-native-4.0.0.CR1
-------------------------
-
-Feature Request
-
-    * [JBWS-1119] - Add support for fault signing and encryption
-    * [JBWS-2235] - Support for multiple schemas validation
-    * [JBWS-3115] - Clean dependencies on jbossws-spi
-    * [JBWS-3182] - Allow for centralized ws-security configuration from jaas security domain
-    * [JBWS-3265] - Isolate deployment classloader from ws server integration
-    * [JBWS-3282] - Extend jbossws jaxws endpoint configuration (@EndpointConfig) to jbossws-cxf stack
-    * [JBWS-3286] - Add jaxws-endpoint-configuration to AS7 domain
-    * [JBWS-3296] - Provide abstraction for picketbox/jboss-security AuthenticationManager and AuthorizationManager
-    * [JBWS-3343] - Support for both EJB3 and POJO WS endpoints in war archive
-    * [JBWS-3276] - Implement support for POJO endpoints with no web.xml in archive
-
-Enhancement
-
-    * [JBWS-3318] - InvocationHandlerEJB3 cannot rely on EJB3 security impl. details
-
-Bug
-
-    * [JBWS-3170] - SAAJ Where an Element is added to the SOAPBody this should be converted to a SOAPElement
-    * [JBWS-3175] - After calling StubExt.setConfigName a call to StubExt.getConfigName still returns original name
-    * [JBWS-3190] - CommonSOAPFaultException: org.xml.sax.SAXParseException: Invalid encoding name "UTF8" - Messages rejected
-    * [JBWS-3192] - content-type header is not properly set for FastInfoset response messages
-    * [JBWS-3194] - jbossws-entities.properties contains incorrect URI for policy xsd
-    * [JBWS-3198] - EPR's address is NOT used  for invocations on the endpoint when the dispatchImpl is created with EPR
-    * [JBWS-3212] - Incomplete CONFIDENTIAL transport-guarantee detection for POJO endpoint.
-    * [JBWS-3250] - Swap file is deleted before response is completely handled 
-    * [JBWS-3251] - org.w3c.dom.DOMException when create dispatch with EPR 
-    * [JBWS-3270] - AS7 org.jboss.as.webservices:main module should not have any stack specific dependencies
-    * [JBWS-3277] - Unexpected bytes are serialized in MTOM attachment when the mime type is text/xml
-    * [JBWS-3199] - AbstractServerConfig.toIPv6URLFormat throws java.net.UnknownHostException
-    * [JBWS-3306] - No XPathFactory implementation found by a JAXWS client on AS7
-    * [JBWS-3321] - Enhance ModelDeploymentAspect to generate compatible PathElements
-    * [JBWS-3322] - Ensure proper creation of WebMD for EJBs present in web archive.
-    * [JBWS-3332] - wsdl-port modification in subsystem webservices throws error and prevent AS 7 from stat. wsdl-secure-port does not break the startup
-    * [JBWS-3336] - Errata files not properly created by hudson jobs
-    * [JBWS-3337] - Fix ThreadLocalAwareWebServiceContext singleton de/serialization
-    * [JBWS-3338] - Distinguish between @Addressing(enabled=false) and no @Addressing annotation also for port component refs
-    * [JBWS-3355] - Launch of *.sh scripts from path with space does not work
-    * [JBWS-3360] - Fix WS ref deserialization process - consider TCCL when instantiating classes.
-    * [JBWS-3205] - java.lang.StackOverflowError on binary distro due to org.jboss.wsf.common.logging.JDKLogManager
-    * [JBWS-3356] - Fix PostConstruct & PreDestroy implementation for JAXWS endpoints & handlers
-    * [JBWS-3357] - Implement support for lookup mechanism for JAXWS endpoints & handlers
-    * [JBWS-3367] - EJB3 endpoints in war archive should follow context root override rules
-    * [JBWS-3368] - jbossws-cxf-4.0.0.Beta6 : jaxws-benchmark-datatypes-pojo.war deployment on AS7 fails
-    * [JBWS-3371] - Implement better SEI -> EJB View translation algorithm
-    * [JBWS-3380] - NPE when dealing with default namespace on SOAP Envelope
-    * [JBWS-3384] - Missing dependency in module "org.jboss.ws.jaxws-client"
-
-Task
-
-    * [JBWS-3080] - Update build for supporting Maven 3
-    * [JBWS-3183] - Reduce Logging Level for MessageContextJAXWS when WSDL URL fails conversion to URI
-    * [JBWS-3206] - Modify deployment scripts for supporting AS 7
-    * [JBWS-3207] - Remote deployment support for testsuite against AS 7
-    * [JBWS-3208] - Add AS7 jobs to Hudson
-    * [JBWS-3210] - Configure testsuite against JBoss AS7
-    * [JBWS-3223] - Runtime ws client classloader setup on AS7
-    * [JBWS-3224] - Review the jbossws-spi ServiceLoader to allow for passing a classloader in
-    * [JBWS-3238] - Rewrite jaxws tools tests to run in fork mode
-    * [JBWS-3266] - Update stax-api dependency
-    * [JBWS-3273] - Move ANT & command line tools abstraction from jbossws-common.jar to jbossws-common-tools.jar
-    * [JBWS-3285] - Remove ws-reliable messaging implementation from native
-    * [JBWS-3169] - Remove spi dependency on JBossXB
-    * [JBWS-3217] - JBossWS SPI - NoClassDefFoundError: org/jboss/logging/Logger
-    * [JBWS-3220] - Test failures after update to maven3
-    * [JBWS-3221] - Enable JMX tests
-    * [JBWS-3222] - Resuscitate JBossWS command line tools on AS7
-    * [JBWS-3226] - AS7 jboss-service.xml parsing problem
-    * [JBWS-3239] - Fix SPI TCCL issue for servlet deployments trying to do Endpoint.publish()
-    * [JBWS-3241] - NPE in ServerHandler.handleInbound()
-    * [JBWS-3242] - Servlet base test throws IllegalArgumentException: Resource META-INF/jbossws-entities.properties not found
-    * [JBWS-3243] - Apache WSSecurity relies on TCCL when lookuping its providers
-    * [JBWS-3245] - AS7 RemoteDeployer have to always undeploy deployed archives
-    * [JBWS-3274] - Restore jaxbintros functionalities on AS7
-    * [JBWS-3283] - Provide a stax based parser of jaxws endpoint config descriptors
-    * [JBWS-3289] - Refactor packages to be in sync. with new abstractions
-    * [JBWS-2709] - Review JBossWS public api and provide javadoc
-    * [JBWS-3105] - Review and fix JBossWS maven dependencies
-    * [JBWS-3215] - Review the way testsuite is run using Maven
-    * [JBWS-3271] - Allow both Native & CXF stacks to use their own SAAJ implementation on AS7
-    * [JBWS-3294] - Remove ws-eventing implementation from native
-    * [JBWS-3310] - Avoid deployment of useless client archives when running JBossWS testsuite
-    * [JBWS-3312] - Cleanup previously deprecated spi methods
-    * [JBWS-3316] - i18n logging message
-    * [JBWS-3323] - Get rid of WebServiceDeclaration & WebServiceDeployment SPI abstractions
-    * [JBWS-3326] - Restore project generator against AS7
-    * [JBWS-3328] - Restore @WebServiceRef functionalities on AS7
-    * [JBWS-3330] - Restore RecordProcessor functionalities on AS7
-    * [JBWS-3334] - Rewrite DD driven injection tests.
-    * [JBWS-3348] - Get rid of org.jboss.ws.backward_compatible_context_creator property
-    * [JBWS-3366] - Initial restore of JAX-RPC functionalities on AS 7
-    * [JBWS-3219] - Unexpected element 'port-qname' encountered
-    * [JBWS-3240] - Rewrite tests relying on $JBOSS_HOME/server/default/tmp/jbossws folder existence
-    * [JBWS-3246] - Resuscitate JSON
-    * [JBWS-3255] - Unable to lookup AuthenticationManager
-    * [JBWS-3256] - Failed to load users/passwords/role files
-    * [JBWS-3257] - No class available with name 'org.jboss.security.plugins.JaasSecurityDomain'
-    * [JBWS-3346] - Add EndpointType
-    * [JBWS-3359] - Enable deploy ejb webservice in a war file in native stack 
-    * [JBWS-3363] - Provide SPI hooks to obtain instances of handlers & endpoints from underlying stacks
-    * [JBWS-2338] - Review JBossWS SPI abstractions and interfaces
-    * [JBWS-2436] - Look for eventual optimizations when scanning classes
-    * [JBWS-3120] - Resuscitate Virtual host feature on AS 7 series
-    * [JBWS-3216] - Investigate & fix test failures against AS7
-    * [JBWS-3358] - Restore @EJB & @Resource injection on JAXWS components on AS7
-    * [JBWS-3369] - Fix AS7 jaxrpc classloading issues
-    * [JBWS-3375] - Restore JAXRPC EJB integration on AS7
-    * [JBWS-3381] - Support latest AS 7.0.x target container
-    * [JBWS-3382] - Add AS7 RemoteDeployer to jbossws container integration
-    * [JBWS-3225] - Resuscitate JBossWS console
-    * [JBWS-3232] - javax.naming.NameNotFoundException: Name 'service' not found in context 'env'
-    * [JBWS-3364] - Refactor injections on JAXWS components from common to ASIL
-    * [JBWS-3376] - Introduce jboss-webservices.xml DD
-    * [JBWS-3385] - Enable Remote EJB JNDI support in our test suite
-
------------------------
-jbossws-native-3.4.1.GA
------------------------
-
-Feature Request
-
-    * [JBWS-3139] - Ensure IPv6 Compatibility
-    * [JBWS-3161] - Distinguish between @Addressing(enabled=false) and no @Addressing annotation
-    * [JBWS-3181] - Add support for symlinked bin/*.sh files
-
-Bug
-
-    * [JBWS-3184] - Fix Native concurrency issue with endpoint instantiation
-
-Task
-
-    * [JBWS-2896] - Fix unguarded calls to Logger.debug()
-    * [JBWS-3171] - Fix WebServiceContext injection into EJB3 beans
-    * [JBWS-3177] - Provide CDI Integration Points
-
-Errata
-
-    See: https://issues.jboss.org/browse/JBWS-3188
-
------------------------
-jbossws-native-3.4.0.GA
------------------------
-
-Feature Request
-
-    * [JBWS-2458] - Support UseAddressing in wsdl
-    * [JBWS-2957] - EJB webservices packaged in web archives (JSR 109 v.1.3 support)
-    * [JBWS-3063] - Support Log4J in command line wsconsume and wsprovide
-    * [JBWS-3114] - Stack agnostic configuration of connection timeout
-    * [JBWS-3122] - Implement @WebServiceRef to respect @Addressing, @MTOM & @RespectBinding annotations
-    * [JBWS-3123] - Implement @WebServiceRef support for annotation driven servlets
-    * [JBWS-3133] - Update UMDM for ServiceRef and PortComponentRef to support @Addressing, @MTOM & @RespectBinding settings
-    * [JBWS-3084] - Enable control of chunked encoding when using SOAPConnection
-    * [JBWS-3155] - Implement support for anonymous attachments
-
-Bug
-
-    * [JBWS-2637] - incorrect namespace for fault messages
-    * [JBWS-2640] - UsernameToken does not correctly handle "Created" element from wsse:Security soap header
-    * [JBWS-2951] - StringIndexOutOfBoundsException in JavaUtils#getPackageName()
-    * [JBWS-3014] - JBossWS does not decode Nonce
-    * [JBWS-3034] - Annotation HandlerChain generating an StringIndexOutOfBoundsException when the file starts with "../"
-    * [JBWS-3070] - Secondary import of XSD contains incorrect path
-    * [JBWS-3071] - JAX-WS Asynchronous Client Exception issues
-    * [JBWS-3082] - org.jboss.test.ws.jaxws.samples.xop.doclit.XOPBareTestCase in framework tests Native stack implementation details
-    * [JBWS-3090] - Deploy script does not remove jbossws-native-jaxws-ext.jar
-    * [JBWS-3091] - org.jboss.test.ws.jaxws.samples.oneway.OnewayTestCase wrongly assumes the result will be set before the feedback() is invoked. 
-    * [JBWS-3101] - NullPointerException if SOAPMessage Provider endpoint returns null to indicate a one way MEP
-    * [JBWS-3116] - NettyClient sends uri on absolute format which is not correct according to RFC2616
-    * [JBWS-3119] - EndpointName attribute value in EPR Metadata should be unqualified 
-    * [JBWS-2640] - UsernameToken does not correctly handle "Created" element from wsse:Security soap header
-    * [JBWS-3141] - Mtom and RespectBinding configuration in webservices.xml DD doesn't work 
-    * [JBWS-3152] - AS Meta Data should be complete before passing to JBossWS
-    * [JBWS-3154] - wsa:MessageID is missing in response message
-    * [JBWS-3158] - Native ServiceDelegateImpl. getPort(Class<T> seiClass) does not respect the WebServiceFeatures to create Service
-    * [JBWS-3159] - SAAJ implementation does not set the correct NS prefix in SOAP header and body elements
-
-Task
-
-    * [JBWS-2928] - Use JBoss provided EE APIs
-    * [JBWS-3006] - Review jbossws maven dependencies
-    * [JBWS-3049] - Hudson jobs need to test binary and src distros against vanilla JBoss AS
-    * [JBWS-3067] - Investigate remaining AS trunk failures
-    * [JBWS-3083] - Avoid double Maven lifecycle run for building src and bin distributions
-    * [JBWS-3093] - Configure maven compiler for JBossWS to be UTF-8 encoding based
-    * [JBWS-3106] - Get rid of broken Http SPI
-    * [JBWS-3107] - Review org.jboss.test.ws.jaxws.endoint tests
-    * [JBWS-3124] - Remove JBWS2942TestCase framework test and create Native and CXF specific tests validating empty EPR Metadata are dropped
-    * [JBWS-3126] - Move to new EjbReferenceResolver
-    * [JBWS-3121] - Prevent duplicated endpoints for EJB 3.1 beans in web archives
-    * [JBWS-2215] - Produce distributable docs from wiki
-    * [JBWS-2768] - Make sure SOAP stack test suite passes also when no internet connection is available
-    * [JBWS-3140] - Process the <addressing> element in webservices.xml (JSR-109 v.1.3)
-    * [JBWS-3156] - Refactor ThreadLocalAwareWebserviceContext
-    * [JBWS-3164] - Enhancement : NPE exception when the StreamSource with null inputstream  in XMLFragment is wrote to OutputStream 
-
-Errata
-
-    See: https://jira.jboss.org/browse/JBWS-3180
-
------------------------
-jbossws-native-3.3.1.GA
------------------------
-
-Bug
-
-    * [JBWS-3048] - bin-dist does not correctly undeploy previously installed stack
-
-Errata
-
-    See: https://jira.jboss.org/browse/JBWS-3044 (same as for 3.3.0.GA)
-
-
------------------------
-jbossws-native-3.3.0.GA
------------------------
-
-Feature Request
-
-    * [JBWS-3022] - Respect @Addressing.responses attribute
-    * [JBWS-3024] - Implement endorsing support for JBossWS ANT tools
-    * [JBWS-3031] - Use addressing meta data from WSDL if addressing related annotations are missing on SEI
-    * [JBWS-3040] - Default WSSecurity configurations should support both SOAP protocol versions
-    * [JBWS-3041] - Impement support for Endpoint References specified in WSDL
-    * [JBWS-3042] - Generated JAX-WS proxies and dispatches have to be feature aware
-    * [JBWS-2650] - Provide a Maven plugin for wsconsume/wsprovide
-    * [JBWS-2793] - Support of SOAP header code generation for implicit headers 
-    * [JBWS-2942] - Do not add empty Metadata tag to NativeEndpointReference
-    * [JBWS-2895] - Provide JAX-RPC features on top of stacks not having them
-
-
-Bug
-
-    * [JBWS-2633] - wscompile fails to create valid package name where namespace contains capitalised reserved keyword
-    * [JBWS-3004] - JAX-WS Port injected using @WebServiceRef retains last message
-    * [JBWS-3008] - Dispatch doesn't respect @Addressing features
-    * [JBWS-3015] - wsdlLocation attribute from @WebServiceClient not considered when building up webservicerefs
-    * [JBWS-3027] - Throw RuntimeExceptions not Protocol exceptions in Addressing Handler
-    * [JBWS-3029] - Quote mismatch in JBossWS console index.html
-    * [JBWS-3037] - Fix NPE thrown from logging framework
-    * [JBWS-2969] - There is no WebServiceException thrown when the null value is passed as arguments to a rpc/literal operation
-    * [JBWS-2970] - InjectionMetaDataDeploymentAspect misuse of EJBContainer.getEnc()
-    * [JBWS-2972] - WSProvide tool throws WSExcepton for WebServiceProvider annotated endpoints
-    * [JBWS-2973] - Client side respects the @HandlerChain in service endpoint interface class
-    * [JBWS-2975] - JAXBSerializer does not use defaultNamespace to create JAXBContext 
-    * [JBWS-2976] - The incompatiable handler can be added in HTTPBinding
-    * [JBWS-2977] - Native does not repsect the fault value in @Action
-    * [JBWS-2978] - WSA implementation does not check mismatch between soap action and wsa action
-    * [JBWS-2980] - The wsa action in response message is not correct when the @Action output value is not specified 
-    * [JBWS-2982] - Native ignores user specified MessageContext.HTTP_REQUEST_HEADERS
-    * [JBWS-2983] - Fix regressions due to HornetQ update
-    * [JBWS-2984] - Benchmark tests are setting incorrect date
-    * [JBWS-2985] - Fix addressing action header to follow JAX-WS 2.2 specification
-    * [JBWS-2991] - Addressing handlers have to respect @AddressingFeature attributes
-    * [JBWS-2021] - app-client impl assumes client and server share the same filesystem
-    * [JBWS-2903] - MTOM/XOP root MIME part does not contain charset parameter
-    * [JBWS-2917] - We're using buggy xalan version causing namespaces issues
-    * [JBWS-2927] - WSAaddressingClientHandler and WSAaddressingServerHandler don't honor the required value in @Addressing annotation
-    * [JBWS-2940] - Wrong SOAPContentElement namespace prefix after multiple model transitions
-    * [JBWS-2943] - Inconsistent / Incomplete handling of CONFIDENTIAL transport-guarantee defined in jboss.xml compared to @WebContext annotation
-    * [JBWS-2944] - The soap fault message for missing wsa action header is not expected
-    * [JBWS-2947] - WSException on client side when server sends a 100-continue HTTP response code
-    * [JBWS-2949] - JBossWS native does not ignore handler chains containing illegal namespace prefix in handler chains configuration file
-    * [JBWS-2953] - Fix WebService method detection algorithm
-    * [JBWS-2954] - Use JBossWSEntityResolver in Native WSConsume tool
-    * [JBWS-2955] - Client handler chain configured by annotation does not work
-    * [JBWS-2956] - Swallow the outbound SoapFault threw by client side handler   
-    * [JBWS-2960] - @Action not taken into account when generating WSDL from endpoint
-    * [JBWS-2962] - Sign/encrypt verification can fail when the soap model performs transition during it
-    * [JBWS-2963] - JavaDoc inconsistency in WSConsume.java
-    * [JBWS-2964] - SOAPMessageImpl.saveChanges() changed the referenced mimeHeaders
-    * [JBWS-2810] - UnifiedMetaData uses thread context loader to find classes, this can lead to javassist.NotFoundException
-    * [JBWS-2845] - NullPointerException deploying JAX-WS endpoint with types in target namespace ending with '#'
-    * [JBWS-2846] - Service.create(java.net.URL, javax.xml.namespace.QName) should throw javax.xml.ws.WebServiceException not org.jboss.ws.metadata.wsdl.WSDLException
-    * [JBWS-2856] - wsprovide.sh fails while processing webservice annotated with @WebServiceProvider
-    * [JBWS-2875] - Remove jbossws-jbossXYZ.jar files from JBOSS_HOME/client directory
-    * [JBWS-2883] - WSException: Malformed URL when deploying to AS bound to IPv6 address
-    * [JBWS-2888] - ClassCastException when using Dispatch with WebServiceFeature
-    * [JBWS-2889] - BindingProvider.getEndpointReference throws InvocationTargetException instead of WebServiceException
-    * [JBWS-2902] - Fix JAX-WS 2.2 webserviceref clarification
-    * [JBWS-2918] - Remove dependency on Sun specific JVM classes
-    * [JBWS-2919] - Remove WSEventing implementation dependency on xalan implementation classes
-    * [JBWS-2934] - WebServiceContext injection have to be ThreadLocal aware
-    * [JBWS-2937] - Cannot create dispatch object using EPR based javax.xml.ws.Service.createDispatch methods
-    * [JBWS-2938] - Wrong return value when using JAXB based Dispatch
-
-Task
-
-    * [JBWS-3030] - Refactor *-deploy.conf for supporting un-install of CXF stack
-    * [JBWS-3032] - Activate authentication for all HTTP verbs in management console
-    * [JBWS-2923] - Move out of deployers/jbossws.deployer jars that are not required to be in deployers
-    * [JBWS-2979] - Switch to Netty 3.2.0.BETA1
-    * [JBWS-2981] - Add <wsa:MessageID> element in request soap message 
-    * [JBWS-2986] - Factor out stack agnostic wsdl file publish procedure to jbossws-common
-    * [JBWS-2988] - Fix dependency on jboss-logging
-    * [JBWS-3003] - Fix maven [WARNING] Using platform encoding ...  build is platform dependent!
-    * [JBWS-3005] - Use new Maven repository at repository.jboss.org/nexus
-    * [JBWS-2948] - Fix regressions due to VFS3 update
-    * [JBWS-2950] - Implement support for JAX-WS 2.2 target in wsconsume tool
-    * [JBWS-2958] - Upgrade to wsdl4j 1.6.2
-    * [JBWS-2959] - Update obsolete jboss dependencies
-    * [JBWS-2965] - Allow nullable root element when building SchemaBinding
-    * [JBWS-2966] - Fix regressions due to HornetQ update
-    * [JBWS-2968] - Remove compilation warnings where possible
-    * [JBWS-2758] - Remove support for Java 5
-    * [JBWS-2830] - EnvelopeBuilderDOM: buildSOAPHeader, reduce log level to debug for text node types.
-    * [JBWS-2850] - Remove SAAJ API interfaces from jbossws-native-saaj
-    * [JBWS-2851] - Remove JAXRPC API interfaces from jbossws-native-jaxrpc
-    * [JBWS-2876] - Add xmldsig xsd to the schemas resolvable offline
-    * [JBWS-2881] - Increase DOMUtils performances optimizing DocumentBuilder creation
-    * [JBWS-2898] - Optimize DocumentBuilderFactory creation using DocumentBuilderFactory.newInstance(String s, ClassLoader c)
-    * [JBWS-2900] - Optimize EntityResolver setup in DOMUtils
-    * [JBWS-2913] - Upgrade jaxws tools from 2.1.7 to 2.2
-    * [JBWS-2916] - Properly setup deployment classloader
-    * [JBWS-2920] - Review install scripts / container integration to produce jbossws-jaxrpc.deployer
-    * [JBWS-2921] - Isolate factories/services configuration in descriptor only jars
-    * [JBWS-2922] - Add some basic JAX-RPC coverage to jbossws-framework testsuite
-
-Errata
-
-    See: https://jira.jboss.org/browse/JBWS-3044
-
-
------------------------
-jbossws-native-3.2.2.GA
------------------------
-
-Bug
-
-    * [JBWS-2651] - ClassCast Exception in case of malformed webservice response
-    * [JBWS-2746] - ClassCastException because SOAPEnvelopeImpl blindly casts to o.j.ws.core.soap.SOAPElementImpl
-    * [JBWS-2769] - Make sure our test suites for all stacks pass on Windows XP
-    * [JBWS-2771] - Importes XSD´s schemaLocation URL Port not changed when "webServicePort" property set in stack-agnostic-jboss-beans.xml
-    * [JBWS-2841] - ClassCastException TextImpl cannot be cast to SOAPElementImpl in CommonSOAPBinding.getParameterFromMessage
-    * [JBWS-2842] - Soap address rewrite does not use request url port when jbossws.undefined.host is setup
-    * [JBWS-2847] - JBossWSEntityResolver should cache properties
-    * [JBWS-2849] - Failed to parse response code in netty based http client
-    * [JBWS-2853] - Ineffective implementation of string normalize method
-    * [JBWS-2859] - Optimize DefaultEndpoint.getTargetBeanClass() method
-    * [JBWS-2860] - Remove useless DOMUtils.parse() method calls during deserialization process
-
-Feature Request
-
-    * [JBWS-2751] - JAXBIntroductions: support @XmlTransient, @XmlID, @XmlIDREF, @XmlElementWrapper and @XmlJavaTypeAdapter
-
-Task
-
-    * [JBWS-2647] - Reference to jboss-xml-binding.jar in ws scripts should be changed to match name in repository.
-    * [JBWS-2692] - Define client/server security policy for JBWS testsuite and run it under a security manager
-    * [JBWS-2770] - Rewrite org.jboss.test.ws.jaxws.binding testcase to get SOAPMessageContext from handlers
-    * [JBWS-2821] - Remove jbossws.sar from deploy directory
-    * [JBWS-2826] - Give more time to copy the process inputstream and error stream in JBossWSTest
-    * [JBWS-2835] - Remove deployers ordering workaround forAS 6.x series
-    * [JBWS-2840] - Implement support for SOAP12 protocol in wsprovide
-    * [JBWS-2848] - Fix build/testsuite for supporting AS 6.0.0.M1 integration target
-
-Errata
-
-    See: https://jira.jboss.org/jira/browse/JBWS-2865
-
------------------------
-jbossws-native-3.2.1.GA
------------------------
-
-Bug
-
-    * [JBWS-2262] - WSDL is not correctly modified to use the configured https port
-    * [JBWS-2674] - Restore implementation of javax.xml.ws.Endpoint
-    * [JBWS-2701] - @XmlSeeAlso and generated wsdl
-    * [JBWS-2743] - Make sure all maven dependencies are downloaded only from JBoss repositories
-    * [JBWS-2745] - Issue with stack switch and binary distro install
-    * [JBWS-2747] - Implement unimplemented DOM related methods in JBossWS SAAJ Implementation
-    * [JBWS-2753] - Leverage keep-alive connections to improve client side perfomances
-    * [JBWS-2759] - JBossWS installation doesn't work for non default configurations
-    * [JBWS-2760] - wsconsume.bat and wsprovider.bat require JAVA_HOME environment variable in Winodws OS
-    * [JBWS-2761] - Wrong HTTP code sent by WS-RM backport server
-    * [JBWS-2762] - Relax restriction on @WebContext(authMethod)
-    * [JBWS-2767] - WSDL_DESCRIPTION population in MessageContext badly affects performances
-    * [JBWS-2773] - Remove JBossAS webservices integration layer from tests classpath
-    * [JBWS-2777] - WSDL11Reader issue with schemas with no namespace and improve optimisation for circular references.
-    * [JBWS-2783] - Malformed URL exception when deploying wsdl with jms address
-    * [JBWS-2784] - MetadataBuilder chokes on multiple imports: "Cannot find port with name ..."
-    * [JBWS-2789] - Investigate why Endpoint.publish() doesn't work on server side on AS Branch_5_x
-
-Feature Request
-
-    * [JBWS-2717] - Send XML declarations with WSDL
-    * [JBWS-2752] - Add 'nocompile' option to wsconsume (command line)
-    * [JBWS-2781] - Allow use of custom ClientSocketChannelFactory
-    * [JBWS-2785] - Upgrade to Netty 3.1.5.GA
-
-Task
-
-    * [JBWS-2613] - Ensure correct line ends in windows shell scripts (CRNL)
-    * [JBWS-2726] - Rewrite dar/JMSClientTestCase
-    * [JBWS-2727] - Fix AS-Tests-AS-6.0.0 hudson job
-    * [JBWS-2741] - Remove JAXWS API interfaces from jbossws-native-jaxws
-    * [JBWS-2748] - Update to xmlsec 1.4.3
-    * [JBWS-2749] - Update Hudson jobs because of JDK1.5 finishing EOL transition period
-    * [JBWS-2750] - Reduce impact of logging on performances
-    * [JBWS-2757] - Update Class-Path attribute in manifest
-    * [JBWS-2763] - Miscellaneous performance optimizations
-    * [JBWS-2772] - Remove JBoss kernel dependencies from SPI, COMMON and all STACKS
-    * [JBWS-2792] - Update to latest available JAX-WS and JAXB RI
-
-Errata
-
-    See: https://jira.jboss.org/jira/browse/JBWS-2797
-
------------------------
-jbossws-native-3.2.0.GA
------------------------
-
-Bug
-
-    * [JBWS-2526] - org.jboss.ws.core.soap.TextImpl does not implement org.w3c.dom.Comment
-    * [JBWS-2594] - X509IssuerSerial reference token creates invalid xml request
-    * [JBWS-2597] - XsiNilLoader throws NPE when using FastInfoset and nullable elements
-    * [JBWS-2630] - Invalid "Endpoint Address" in http://localhost:8080/jbossws/services, when a .war is embedded in a jar.
-    * [JBWS-2632] - SOAPHeader == null not caught // no good cast
-    * [JBWS-2662] - WebServiceContext injection into WS Provider leads to memory leaks
-    * [JBWS-2668] - Add missing privileged blocks
-    * [JBWS-2681] - Concurrency issues where multiple threads create Port using Service Simultaneously
-    * [JBWS-2689] - webservice.xml files are not validated against corresponding schema files
-    * [JBWS-2690] - Wrong JAXRPC deployment type detection
-    * [JBWS-2698] - Calling setPrefix(newPrefix) on any SOAPElement the prefix is not used for marshalling.
-    * [JBWS-2699] - BackwardCompatibleURLPatternDeploymentAspect is mangling URLs
-    * [JBWS-2703] - Node.getElementsByTagName only works with name local part
-    * [JBWS-2704] - Element.getElementsByTagNameNS should support wildcards for namespace, local name or both
-    * [JBWS-2706] - Unable to unmarshall attachment parts where the type is 'application/octet-stream'
-    * [JBWS-2708] - XmlAttachmentRef annotation on List<DataHandler> is not identified as an Attachment part
-
-Feature Request
-
-    * [JBWS-2106] - Unify Native and CXF api for JAX-WSA (JSR-261)
-    * [JBWS-2652] - jboss-bootstrap upgrade
-    * [JBWS-2657] - Provide testcase for common JSR-261 API
-    * [JBWS-2693] - Implement Node.setTextContent()
-    * [JBWS-2694] - Enable simpler approach to disable chunked encoding
-    * [JBWS-2723] - JBossWS-Native WSRM Server does not use Offer Identifier
-    * [JBWS-2724] - JBossWS-Native WSRM Server does not set Accept.AckstTo.Address on CreateSequenceResponse
-    * [JBWS-2739] - Make OneWay operation non-blocking (client side)
-
-Task
-
-    * [JBWS-2402] - Upgrade JBoss-JAXR to 2.0.1 including its dependencies
-    * [JBWS-2435] - Move jbossws documentation to http://www.jboss.org/community/docs/
-    * [JBWS-2457] - Update WS-Addressing tutorials to use JAXWS 2.1 AddressingFeature
-    * [JBWS-2554] - Remove dependency on Remoting 2
-    * [JBWS-2587] - Investigate why SimpleDispatchTestCase is failing
-    * [JBWS-2685] - Remove dependency on Sun's JVM proprietary APIs
-    * [JBWS-2702] - Update Netty dependency
-    * [JBWS-2705] - Remove jbossws-native-jaxrpc.jar from endorsed dir
-    * [JBWS-2711] - Make SubscriptionManager.WatchDog a Daemon Thread and remove it at SubscriptionManager shutdown
-    * [JBWS-2719] - Allow jconsole to be attached to testsuite
-    * [JBWS-2333] - Refactor ArchiveDeployerHook.getWebservicesMetaData() to Separate Deployer
-    * [JBWS-2370] - Ensure correct JBossWS startup if there are Webservice archived in deploy directory during JBossAS bootstrap
-    * [JBWS-2382] - Fix JBossWS deployers processing
-    * [JBWS-2623] - Create new pages on jboss.org
-    * [JBWS-2625] - Redirect on jbossws.jboss.org
-    * [JBWS-2658] - Update jboss.org/jbossws home page
-
-Errata
-
-    See: https://jira.jboss.org/jira/browse/JBWS-2738
-
------------------------
-jbossws-native-3.1.2.GA
------------------------
-
-Feature Request
-
-    * [JBWS-2619] - Consider DeploymentUnit's metadataLocation in
-    * ArchiveDeployment.getMetadataFileURL(..)
-
-Bug
-
-    * [JBWS-2074] - Resource injection in jaxws endpoints and handlers
-    * [JBWS-2558] - Component's resources defined in the \<env-entry\> are not available to the EJB3 JAX-WS handlers
-    * [JBWS-2616] - handlerscope testcase is (native) stack specific
-    * [JBWS-2631] - Fix resource injection in JAX-WS handlers associated with EJB3 endpoints
-    * [JBWS-2634] - Implement support for @EJB annotations in WS components
-    * [JBWS-2638] - Insufficient optimisation in JBossXSModel traversing XML schema
-
-Task
-
-    * [JBWS-2612] - Remove AS 4.2.x support from all stacks
-    * [JBWS-2618] - Update to xmlsec 1.4.2
-
-Errata
-
-    See: https://jira.jboss.org/jira/browse/JBWS-2643
-
------------------------
-jbossws-native-3.1.1.GA
------------------------
-
-Feature Request
-
-    * [JBWS-2405] - MTOM/XOP Interoperability - cid href URLEncode/URLDecode
-    * [JBWS-2579] - Implement property file driven JBossWS entities resolving
-
-Bug
-
-    * [JBWS-1665] - incorrect wsdl generation
-    * [JBWS-2074] - Resource injection in jaxws endpoints and handlers
-    * [JBWS-2166] - WSA client handler throws exception when installing reference parameters
-    * [JBWS-2208] - Impossible to deploy WS containing binding objects that are defined by XmlAttribute from "http://www.w3.org/XML/1998/namespace"
-    * [JBWS-2248] - RemoteConnectionFactory rejects uppercased protocol identifiers
-    * [JBWS-2409] - Fix jbws771 testcase binding customization file
-    * [JBWS-2411] - OutOfMemoryExecption in WSDL11Reader when loading xml schemas with circular references
-    * [JBWS-2433] - Fix JMS tests on AS 5.x and above
-    * [JBWS-2486] - POJO service should be shared
-    * [JBWS-2555] - Miscellaneous issues reported by FindBugs
-    * [JBWS-2564] - Use Server MBean instead of ServerConfig to get JBoss version
-    * [JBWS-2565] - Wrong WebContext authMethod or transportGuarantee annotatoin field values are not detected at deploy time
-    * [JBWS-2573] - Fix JBossWS builds with Maven 2.0.10
-    * [JBWS-2580] - NPE in JBossWS when passing only -Dcom.sun.management.jmxremote on commandline
-    * [JBWS-2585] - JBossWS commandline tools reference not existing log4j config
-    * [JBWS-2589] - Some deployment failures prevent re-deployment
-    * [JBWS-2598] - JBossWSEntityResolver don't recognize all JBossWS specific XML schemas
-
-Task
-
-    * [JBWS-2259] - Enable MTOM for incomming requests where the type of the content type is 'application/xop+xml'
-    * [JBWS-2327] - Provide tests for wsrunclient shell script
-    * [JBWS-2524] - Sort out / remove GenericSOAPHandler duplicity
-    * [JBWS-2537] - Simplify Hudson Jobs
-    * [JBWS-2559] - Correct WeakReference handling in ConfigObservable to remove cleared WeakReferences
-    * [JBWS-2566] - Add Maven Release plugin
-    * [JBWS-2568] - Remove AS 4.2 branch support (424 target)
-
-Errata
-
-    See: https://jira.jboss.org/jira/browse/JBWS-2608
-
------------------------
-jbossws-native-3.1.0.GA
------------------------
-
-Feature Request
-
-    * [JBWS-2441] - Complete JAX-WS 2.1 implementation
-    * [JBWS-2446] - Complete support for WebServiceFeature
-    * [JBWS-2451] - Support JAXB annotations on SEI when producing wsdls
-    * [JBWS-2452] - Implement EndpointReference related methods
-    * [JBWS-2454] - Add javax.xml.ws.reference.parameters values in message context
-    * [JBWS-2477] - Support generics in wrapper classes
-    * [JBWS-2491] - Enable JAXWS 2.1 WebServiceContext methods
-
-Bug
-
-    * [JBWS-2195] - MTOM services seem to return two extra bytes at the end
-    * [JBWS-2288] - Exception handling issue in org.jboss.ws.core.CommonClient.
-    * [JBWS-2368] - JAX-WS Deployments Fail For AOP Instrumented Endpoints
-    * [JBWS-2377] - jbossws-deploy.conf in 'all' configuration links libraries in 'default' conf
-    * [JBWS-2412] - WSDL schema imports do not published successfully
-    * [JBWS-2416] - Search is not working on the mediawiki
-    * [JBWS-2419] - MTOM/XOP message use always "text/xml" for start-info regardless of content type associated with the content (SOAP message)
-    * [JBWS-2432] - NullPointerException processing headers without actor
-    * [JBWS-2437] - WSDL access url with resource suffix allows any arbitrary xml file to be viewed
-    * [JBWS-2443] - services page does not correctly update host address of endpoints
-    * [JBWS-2482] - Fix WSConsumerPlugin.testTarget() classloading issues
-    * [JBWS-2509] - dar.JMSClientTestCase contains AS4 specific code
-
-Patch
-
-    * [JBWS-2404] - Efficient string handling
-
-Task
-
-    * [JBWS-1312] - Fix JMS transport in trunk
-    * [JBWS-1999] - WS-Security Usename Token Profile JAAS Implementation for JSE based WebServices
-    * [JBWS-2150] - Migrate AddressRewritingTestCase to jaxws
-    * [JBWS-2196] - FastInfoset interoperability
-    * [JBWS-2431] - Update native deployment macros to don't publish jaxb-api.jar and stax-api.jar to JBOSS_HOME/lib directory
-    * [JBWS-2444] - Update hudson, deploy scripts, etc. for new AS repository layout
-    * [JBWS-2445] - Move jaxws 2.1 partial impl from jaxws-ext to jaxws module
-    * [JBWS-2450] - Enable target 2.1 option when using WSImport
-    * [JBWS-2455] - Conformance Requirements JAX-WS 2.1
-    * [JBWS-2483] - Add smoke tools tests to the binary distro
-    * [JBWS-2504] - Use ControllerContext instead of KernelRegistryEntry which will be deprecated
-    * [JBWS-2505] - Remove container integration layer for AS 5.1.0 and AS 6.0.0
-
-Errata
-
-    See: https://jira.jboss.org/jira/browse/JBWS-2545
-
------------------------
-jbossws-native-3.0.5.GA
------------------------
-
-Feature Request
-
-    * [JBWS-2323] - Allow the Xerces defer-node-expansion optimisation to be disabled
-    * [JBWS-2373] - Dynamic address re-writing if the request URL does not have a port do not add a port to the generated address
-    * [JBWS-2375] - Add getChildren fuctionality to UnifiedVirtualFile
-    * [JBWS-2401] - Drop port from URL for endpoint where default port for the protocol is being used
-
-Bug
-
-    * [JBWS-1862] - RPC DII Calls Assume response parameter is called 'result' in the response message
-    * [JBWS-2266] - Schema Validation Feature Fails for Special Characters
-    * [JBWS-2268] - Implement @PostConstruct and @Predestroy annotations support for POJO based endpoints (JSR 109 conformance)
-    * [JBWS-2304] - DOMUtils ThreadLocals not cleared for client calls
-    * [JBWS-2346] - Issue with SAAJ API: SOAPBody.getElementsByTagNameNS() appears non-recursive
-    * [JBWS-2372] - Protocol not considered when re-writing address in WSDL based on request address
-    * [JBWS-2378] - Fix remoting client usage for one-way invocations
-    * [JBWS-2389] - WSDL To Java - Anonymous types nested within anonymous types generated JAX-RPC mapping does not match generated source
-    * [JBWS-2399] - Specify groupId explicitly in assembly creating deploy-artifacts directory
-
-Task
-
-    * [JBWS-2339] - Improve endpoint lifecycle management
-    * [JBWS-2340] - Refactor JAXBIntroDA
-    * [JBWS-2355] - Remove Aspect Manager support from AbstractEndpointServlet
-    * [JBWS-2366] - Restore missing images on wiki
-    * [JBWS-2371] - Fix maven build to include right woodstox artifact
-    * [JBWS-2383] - Fix JBossWS deployment macros for new JBossAS trunk directory structure
-
-Errata
-
-    See: https://jira.jboss.org/jira/browse/JBWS-2422
-
------------------------
-jbossws-native-3.0.4.GA
------------------------
-
-Bug
-
-    * [JBWS-1188] - Relax requirement for wsu:id for UsernameToken
-    * [JBWS-2011] - Signature is invalid error when the message contains \r
-    * [JBWS-2245] - test cannot find temp directory
-    * [JBWS-2246] - NPE deploying web services in service archive in CR1 release
-    * [JBWS-2264] - NPE when web services are shut down
-    * [JBWS-2267] - Some Tests are Failing on Machines Without Internet Access
-    * [JBWS-2278] - JBossWS is picking the wrong binding when both Soap1.1 and Soap1.2 bindings are provided for a port
-    * [JBWS-2285] - ClassCastException: org.jboss.ws.core.soap.TextImpl in LogicalMessageImpl.getPayload
-    * [JBWS-2290] - Missing property jbossws.integration.target during ant eclipse
-    * [JBWS-2309] - PasswordType element uses wss-wssecurity-secext NS instead of wss-username-token-profile
-    * [JBWS-2322] - Commandline JBossWS Native Tests Are Not Cross Platform
-    * [JBWS-2326] - wsrunclient shell script is unfunctional due to incorrect classpath
-    * [JBWS-2319] - ClassCastException in SOAPBody.extractContentAsDocument();
-    * [JBWS-2325] - Each request results to an open file descriptor
-    * [JBWS-2336] - Fix JSE deployers ordering
-    * [JBWS-2363] - Binary distribution has ant.properties instead of ant.properties.example
-
-Task
-
-    * [JBWS-1397] - Fix <wsdl-publish-location> for jboss-5.0.x 
-    * [JBWS-2286] - Provide source distributions
-    * [JBWS-2289] - Update source code headers
-    * [JBWS-2310] - Restore hudson job cleaning maven repository
-    * [JBWS-2320] - JBossWS ant and maven targets don't work on Windows OS
-
-Errata
-
-    See: https://jira.jboss.org/jira/browse/JBWS-2352
-
------------------------
-jbossws-native-3.0.3.GA
------------------------
-
-Feature Request
-
-    * [JBWS-981]  - Virtual host configuration for EJB endpoints
-    * [JBWS-2191] - Provide junit tests for the record management tools
-    * [JBWS-2207] - Allow to fully initialize the WS stack
-    * [JBWS-2270] - Re-use JAXBContext whenever possible
-
-Bug
-
-    * [JBWS-1987] - NoClassDefFoundError with testsuite against SOA-P
-    * [JBWS-2152] - @WebFault does not behave like @XmlType
-    * [JBWS-2155] - Not supporting JMS endpoints for WS-Addressing
-    * [JBWS-2186] - Transforming from SAAJ SOAPBody to StreamResult throws IndexOutOfBoundsException 
-    * [JBWS-2187] - Handler Chain Management Prevents Service Re-Use
-    * [JBWS-2189] - Attribute EncodingType is required for Nonce element
-    * [JBWS-2190] - Default encoding is used to decode responses
-    * [JBWS-2194] - Cannot get security domain declared through jboss.xml DD
-    * [JBWS-2216] - Soap address incorrect for https
-    * [JBWS-2233] - EJB3 webserviceref failure
-    * [JBWS-2234] - SOAP 1.2 Endpoint sends SOAP 1.1 messages
-    * [JBWS-2240] - PortComponent from jboss.xml descriptor is not parsed
-    * [JBWS-2242] - WSDL To Java doesn't handle hyphens in PortType properly
-    * [JBWS-2250] - Reference to JAXBElement Causes NullPointerException on deployment
-    * [JBWS-2260] - WSDL to Java, hyphen in PortType not being mapped correctly in generated descriptors
-    * [JBWS-2265] - Wrong UsernameTokenProfile namespace in Password Type attribute
-
-Task
-
-    * [JBWS-2182] - Provide a partial encryption test case
-    * [JBWS-2255] - Upgrade JAXR from 1.2.0.GA to 1.2.0.SP2
-
-Errata
-
-    See: http://jira.jboss.org/jira/browse/JBWS-2281
-
------------------------
-jbossws-native-3.0.2.GA
------------------------
-
-Feature Request
-
-    * [JBWS-652]  - Add JAAS certificate authentication support to ws-security implementation
-    * [JBWS-1278] - WSDL To Java, add a configuration option so all generated types can implement java.io.Serializable
-    * [JBWS-1316] - Add support for a configurable time tolerance value that handles clock skew
-    * [JBWS-1907] - authorization based on certificate used for wsse signature
-    * [JBWS-2156] - Allow JBossWS users to include xml declaration processing instruction in SOAP messages
-
-Bug
-
-    * [JBWS-2012] - Attachment support for JAX-WS collections
-    * [JBWS-2014] - MTOM + WS-Security not working
-    * [JBWS-2035] - Cannot determine variable name for void wrapper
-    * [JBWS-2089] - isXOPPackage() is returning an incorrect value
-    * [JBWS-2103] - JBoss tools classpath problem
-    * [JBWS-2153] - Cannot Extract Schema Definition
-    * [JBWS-2159] - Faults not handled correctly for WS-RM services
-    * [JBWS-2172] - Additional \n when restoring XOP elements
-
-Task
-
-    * [JBWS-2013] - Implement standard message context properties
-    * [JBWS-2116] - Sample for certificate authentication
-    * [JBWS-2123] - Update to jaxb-2.1.6  
-    * [JBWS-2124] - Expose http chunking through SOAPConnection
-
-Errata
-
-    See: http://jira.jboss.org/jira/browse/JBWS-2220
-
---------------------------
-jbossws-3.0.1-native-2.0.4
---------------------------
-
-Feature Request
-
-    * [JBWS-925]  - Provide initial support for FastInfoset
-    * [JBWS-1124] - Scoped class loading domains for WS endpoints
-    * [JBWS-1165] - Provide initial support JSON data binding
-    * [JBWS-1172] - Support schema validation for incoming/outgoing messages
-    * [JBWS-1211] - Add support for @WebFault
-    * [JBWS-1296] - Add support for digest + nonces
-    * [JBWS-1814] - Dynamic Encryption based on clients input
-    * [JBWS-1820] - Using JRE from vendors other than Sun the Remoting key store and trust store algorithms are not propagated
-    * [JBWS-1844] - Implement Provider.createW3CEndpointReference()
-    * [JBWS-1850] - Documentation support for Java->WSDL
-    * [JBWS-1861] - Improve exception message on invalid @WebService usage on SEI
-    * [JBWS-1865] - Unify SOAP message trace
-    * [JBWS-1886] - Provide basic configuration for WS-enabled user projects
-    * [JBWS-1890] - Provide basic project configuration for JBossWS tests
-    * [JBWS-1893] - Provide meaningful advanced samples
-    * [JBWS-1968] - Documentation support for WSDL->Java
-    * [JBWS-1988] - Complete Username Token Profile 1.0
-    * [JBWS-1990] - Support for SOAP 1.2 in wsconsume
-    * [JBWS-2022] - Provide interface for WSSecurityDispatcher
-
-Bug
-
-    * [JBWS-1217] - WSDLtoJava Namespace to package mapping does not support multiple namespaces
-    * [JBWS-1763] - Incorrect handling of charsets when the default charset is not UTF-8
-    * [JBWS-1857] - JAXBContext created for every wrapper type
-    * [JBWS-1878] - ConcurrentModificationException in initHandlerChain()
-    * [JBWS-1905] - jaxws-samples-logicalhandler-jaxb.war produces: java.lang.ClassCastException: org.jboss.ws.core.soap.TextImpl
-    * [JBWS-1909] - RequestHandler.handlerWSDLResquest has dependency on Servlet API
-    * [JBWS-1912] - DispatcherDelegate - Bypass RMIAdaptor when used locally
-    * [JBWS-1938] - Assign message name instead of IN and OUT for Inbound/Outbound Addressing Property
-    * [JBWS-1941] - Fault handler chain is not called when user application exceptions are thrown
-    * [JBWS-1948] - Optional SOAP Header element is required by WSSecurityHandlerServer handler
-    * [JBWS-1957] - WS-Eventing extension sends incorrect HTTP content-type
-    * [JBWS-1964] - showSubscriptionTable MBean Method - NullPointerException
-    * [JBWS-1965] - subscribe method on subscription manager - NullPointerException
-    * [JBWS-1966] - No Handler execution for inbound response when using Dispatch
-    * [JBWS-1969] - Cannot publish wsdl with imported schema files, using bottom up approach
-    * [JBWS-1970] - wsrunclient doesn't work with args
-    * [JBWS-1971] - Missing clone on MemoryBufferRecorder
-    * [JBWS-1973] - MTOM/XOP attachments not inlined when using JAX-WS handlers
-    * [JBWS-1974] - Using signature as security in a webservice throws an error when loglevel not Debug
-    * [JBWS-1979] - Endpoint address prop doesn't work with Dispatch
-    * [JBWS-1985] - EntityResolver not used when reading web.xml during web serivce deployment
-    * [JBWS-2000] - MTOM: Chunked encoding transfer problem
-    * [JBWS-2009] - WSDLFilePublisher throws FileNotFoundException when schema files are not in wsdl directory
-    * [JBWS-2011] - Signature is invalid error when the message contains \r
-    * [JBWS-2018] - JavatoWSDL Package to Namespace mapping does not support multiple packages
-    * [JBWS-2019] - WSDL To Java - Case of service-interface and service-endpoint-interface in JAX-RPC mapping does not match generated interface when WSDL type begins with lower case
-    * [JBWS-2058] - 'wsa:From' header field is assigned to variable 'replyTo' instead of 'from'
-
-Task
-
-    * [JBWS-515]  - Provide an initial implementation for WS-ReliableMessaging
-    * [JBWS-1724] - wsconsume cannot use part names that are friendly to .NET
-    * [JBWS-1776] - Verify isolated classloading with WSProvide
-    * [JBWS-1978] - Evaluate (and remove) JBPM dependency from component info
-    * [JBWS-1982] - Simplify deploy/undeploy cycles for different stacks
-
-Errata
-
-    FIXME: [JBWS-751] Multiple schema imports with the same namespace
-    FIXME: [JBWS-1312] Fix JMS transport in trunk
-    FIXME: [JBWS-1397] Fix <wsdl-publish-location> for jboss-5.0.x
-    FIXME: [JBCTS-540] EJB3 proxy does not implement the Home interface
-    FIXME: [JBWS-981] Virtual host configuration for EJB endpoints
-    FIXME: [JBWS-798] Complete EventingTestCase
-    FIXME: [JBWS-2044] Rewrite Server side file system based RM store    
-
-----------------
-jbossws-2.0.3.GA
-----------------
-
-Feature Request
-
-    * [JBWS-1257] - Add configuration for token references
-    * [JBWS-1850] - Documentation support for Java->WSDL
-    * [JBWS-1874] - Allow configuration of secret key wrap algorithm
-    * [JBWS-1880] - WS-Addressing with endpoints using soap 1.2
-    * [JBWS-1897] - Enable/disable logging on every endpoint
-    * [JBWS-1898] - Statistics/logs about clients calling endpoints
-    * [JBWS-1899] - Fine grained management of statistics recording
-    * [JBWS-1904] - Explicitly set the namespace of a WebFault
-    * [JBWS-1911] - Support the JMS transport with JAX-WS
-    * [JBWS-1950] - Show collected records as html table in jmx-console
-
-Bug
-
-    * [JBWS-1217] - WSDLtoJava Namespace to package mapping does not support multiple namespaces
-    * [JBWS-1324] - JMS Endpoint - Message delivery starts before endpoint is ready.
-    * [JBWS-1762] - web.xml modified to web.xml.org - Subsequent runs fail
-    * [JBWS-1813] - context-root in jboss.xml is ignored
-    * [JBWS-1819] - wsrunclient script(s) differ and do not always function.
-    * [JBWS-1841] - WebServiceRef injection from DD doesn't work
-    * [JBWS-1873] - WSDL to Java - Incorrect case of generated type for anonymous type.
-    * [JBWS-1876] - Wrong Content-Type in SOAP 1.2 messages
-    * [JBWS-1879] - @BindingType is read from SEI instead of endpoint implementation
-    * [JBWS-1881] - WSDL To Java - All generated types have first character upper case, extends clause in base types do not take this into account.
-    * [JBWS-1906] - Stack overflow exception when reading bad wsdl files
-    * [JBWS-1924] - Verify installation script for jboss-4.2.1.GA
-    * [JBWS-1937] - Document/Literal addressing endpoint fails when retreiving Outbound Action
-    * [JBWS-1939] - URL port information of soap:address is different from import schemaLocation URL
-
-Errata
-
-    * FIXME [JBCTS-540] EJB3 proxy does not implement the Home interface
-    * FIXME [JBWS-1460] @XmlMimeType on SEI parameter declarations
-    * FIXME [JBWS-1665] incorrect wsdl generation
-    * FIXME [JBWS-1724] wsconsume cannot use part names that are friendly to .NET
-    * FIXME [JBWS-1772] WSConsume output is not correctly redirected
-    * FIXME [JBWS-1773] Verify isolated classloading with WSConsume
-    * FIXME [JBWS-1776] Verify isolated classloading with WSProvide
-    * FIXME [JBWS-751] Multiple schema imports with the same namespace
-    * FIXME [JBWS-798] Complete EventingTestCase
-    * FIXME [JBWS-981] Virtual host configuration for EJB endpoints
-
-----------------
-jbossws-2.0.2.GA
-----------------
-
-Feature Request
-
-    * [JBWS-492] - Add support for Policy Identification
-    * [JBWS-493] - Add support for Compact Policy Expression
-    * [JBWS-494] - Add support for Policy Intersection
-    * [JBWS-895] - Provide support for policy attachments
-    * [JBWS-1644] - Process wsdl extensibility elements
-    * [JBWS-1645] - Modify WSDLGenerator to deal with policies
-    * [JBWS-1806] - Add EndpointRegistry to jmx-console
-    * [JBWS-1807] - HTTP bindings for Provider
-
-Bug
-
-    * [JBWS-700] - Update documentation for dealing with attachments
-    * [JBWS-1669] - Fix WebServiceContext.getMessageContext() for EJB endpoints
-    * [JBWS-1704] - The Use Of Remoting Causes An Additional 'datatype' Parameter To Be Sent On All Requests
-    * [JBWS-1735] - wstx.jar is missing from release, causes wsconsume to fail
-    * [JBWS-1761] - WSProvide ignores SOAPBinding declaration
-    * [JBWS-1791] - target deploy-jboss42-endorsed incomplete
-    * [JBWS-1792] - init-param for handler defined in jaxrpc-config not processed
-    * [JBWS-1795] - Type Substitution doesn't work with Schema2Java Client approach
-    * [JBWS-1796] - deploy-jboss40-no-ejb3 build fails
-    * [JBWS-1797] - Setting .NET friendly Endpoint in web.xml
-    * [JBWS-1798] - Cannot find local schema with relative urls
-    * [JBWS-1800] - Trying to monitor the JVM using -Dcom.sun.management.jmxremote prevents the jbossws 2.0.1 from coming up
-    * [JBWS-1801] - WSDL To Java - When an array if returned from a method on the SEI it is incorrectly ommitted from the generated JAX-RPC mapping.
-    * [JBWS-1808] - BackwardCompatibleURLPatternDeploymentAspect is mangling valid URLpatterns
-    * [JBWS-1809] - JAXBIntros are not taken into consideration when generating the WSDL
-    * [JBWS-1811] - Cannot access CLIENT_ADDRESSING_PROPERTIES inside client
-    * [JBWS-1815] - Missing fault detail in messages from SLSB Provider
-    * [JBWS-1843] - WSDL with custom schema imports causes java.lang.OutOfMemoryError: Java heap space when there are circular schema imports dependencies
-    * [JBWS-1852] - Failed to create a new SAX parser
-    * [JBWS-1856] - Attachment part not cleanup correctly
-    * [JBWS-1903] - DOMUtils doesn't clear thread locals
-
-Task
-
-    * [JBWS-856] - Complete WS-Policy implementation
-    * [JBWS-1330] - Fix jaxrpc wsse tests for jbossws-5.0
-    * [JBWS-1571] - Provide/Verify WS-Policy implementation
-    * [JBWS-1572] - Provide/Verify WS-PolicyAttachment implementation
-    * [JBWS-1612] - Provide an integration layer for ESB
-    * [JBWS-1614] - Provide an integration layer for JBossAS
-    * [JBWS-1748] - Improve the documentation that explains proprietary DD options
-    * [JBWS-1793] - Provide a test case for the tools scripts that reside under JBOSS_HOME/bin
-    * [JBWS-1816] - JAXWS SOAPFault inheritance
-    * [JBWS-1817] - WS-Security with JAX-WS Dispatch
-    * [JBWS-1835] - Schedule metro issues at java.net
-    * [JBWS-1842] - JAXB based ServiceRef meta data
-    * [JBWS-1846] - Release jbossws-2.0.2.GA binary
-
-Errata
-
-    FIXME: [JBCTS-540] EJB3 proxy does not implement the Home interface
-    FIXME: [JBWS-1460] @XmlMimeType on SEI parameter declarations
-    FIXME: [JBWS-1665] incorrect wsdl generation
-    FIXME: [JBWS-1772] WSConsume output is not correctly redirected
-    FIXME: [JBWS-1773] Verify isolated classloading with WSConsume
-    FIXME: [JBWS-1776] Verify isolated classloading with WSProvide
-    FIXME: [JBWS-1813] context-root in jboss.xml is ignored
-    FIXME: [JBWS-751] Multiple schema imports with the same namespace
-    FIXME: [JBWS-798] Complete EventingTestCase
-    FIXME: [JBWS-981] Virtual host configuration for EJB endpoints
-
-----------------
-jbossws-2.0.1.GA
-----------------
-
-Feature Request
-
-    * [JBWS-1736] - MTOM property at service-ref level
-
-Bug
-
-    * [JBWS-1453] - WSDL To Java - Invalid name for generated class if complex type name contains a period.
-    * [JBWS-1536] - NPE in WSDL to Java when webservices.xml requested but no global package mapping
-    * [JBWS-1617] - JAXRPC doc/literal trims empty string
-    * [JBWS-1702] - JAXWS type inheritance
-    * [JBWS-1723] - WSDL To Java - Anonymous Types Referenced As Bound Headers Not Handled Correctly
-    * [JBWS-1725] - WSDL-JAVA Derivation of a complex type from a Simple type: bas64Binary is not mapped to byte[]
-    * [JBWS-1732] - WSProvideTask throws IllegalArgumentException
-    * [JBWS-1733] - JAXWS client ignores BindingProvider.SESSION_MAINTAIN_PROPERTY
-    * [JBWS-1747] - org.jboss.wsf.container.jboss42.WebMetaDataAdapter doesn't check if there's a J2eeApplicationMetaData instance set on the DeploymentInfo parent
-    * [JBWS-1749] - JBossWS2.0.0.GA download does not contain updated jboss-xml-binding library
-    * [JBWS-1762] - web.xml modified to web.xml.org - Subsequent runs fail
-    * [JBWS-1763] - Incorrect handling of charsets when the default charset is not UTF-8
-    * [JBWS-1766] - UsernameToken ignores BindingProvider.USERNAME_PROPERTY
-    * [JBWS-1771] - Post-handler-chain not invoked for "Standard Client" configuration with DII client
-    * [JBWS-1780] - Context servlet throws NPE
-
-Task
-
-    * [JBWS-1729] - Create a comprehensive SPI tools test suite
-    * [JBWS-1770] - Fix Endpoint API for jboss-5.0.0.Beta3
-
-Errata
-
-    FIXME: [JBCTS-540] EJB3 proxy does not implement the Home interface
-    FIXME: [JBCTS-624] R2753 cannot parse web.xml for jsp vehicle
-    FIXME: [JBWS-1460] @XmlMimeType on SEI parameter declarations
-    FIXME: [JBWS-1665] incorrect wsdl generation
-    FIXME: [JBWS-1772] WSConsume output is not correctly redirected
-    FIXME: [JBWS-1773] Verify isolated classloading with WSConsume
-    FIXME: [JBWS-1776] Verify isolated classloading with WSProvide
-    FIXME: [JBWS-751] Multiple schema imports with the same namespace
-    FIXME: [JBWS-798] Complete EventingTestCase
-    FIXME: [JBWS-981] Virtual host configuration for EJB endpoints
-
--------------
-jbossws-2.0.0
--------------
-
-Feature Request
-
-    * [JBWS-434]  - Support sequences of anys in JAXRPC
-    * [JBWS-1460] - @XmlMimeType and @XmlAttachmentRef on SEI parameter declarations
-    * [JBWS-1518] - Add support for jdk-1.6
-    * [JBWS-1597] - WSDL To Java - Add support for bound headers.
-    * [JBWS-1666] - Simplify jbosws jar dependencies
-    * [JBWS-1564] - Support swaRef with JAX-WS
-    * [JBWS-1618] - Make default context root for jaxws ejb endpoint configurable
-    * [JBWS-429]  - WSDL To Java - Create Custom Holders for Custom types that define INOUT parameters and OUT parameters
-    * [JBWS-771]  - Use part names that are friendly to .NET
-
-Bug
-
-    * [JBWS-801]  - Chunked transfer of large attachments
-    * [JBWS-805]  - Fault code is always 'Client'
-    * [JBWS-859]  - SOAPMessageUnMarshaller doesn't support HTTP server response [204] - No Content
-    * [JBWS-862]  - Return SOAP Fault for invalid soap messages
-    * [JBWS-1093] - Deploying a war that also contains normal servlets the web.xml is modified as if they are all endpoints
-    * [JBWS-1263] - Addressing does not disable the mustUnderstand attribute, which causes HandlerchainBaseImple.checkMustUnderstand to fail
-    * [JBWS-1283] - Soap attachments were dropped on server responses. Attachment is added on a handler's handleResponse method; however it mysteriously disappeared on the outgoing soap message.
-    * [JBWS-1339] - @Security domain vs. <security-domain>
-    * [JBWS-1346] - wsa:ReplyTo alwayt null
-    * [JBWS-1403] - NumberFormatException When Using StubExt.PROPERTY_CLIENT_TIMEOUT
-    * [JBWS-1422] - NPE if @WebParam.name like "mX.."
-    * [JBWS-1439] - Jdk 1.6.0 Requests get the error "setProperty must be overridden by all subclasses of SOAPMessage"
-    * [JBWS-1446] - Invalid WSDL when a parameter of type Object is part of a webmethod
-    * [JBWS-1468] - @Resource WebServiceContext for jbossas-4.x
-    * [JBWS-1472] - Address in WSDL is now always replaced regardless of 'alwaysModifySOAPAddress' value.
-    * [JBWS-1511] - MessageFactory does not preserve comments
-    * [JBWS-1520] - No server response on invalid soap request
-    * [JBWS-1553] - fails to read operations for portType from different namespace
-    * [JBWS-1556] - @WebWservice does not work with class isolation
-    * [JBWS-1563] - WSDLDefinitionsFactory doesn't resolve schema references locally
-    * [JBWS-1566] - JBossWS-1.2.0.GA invalid wsdl generated when using @XmlSchema annotations on Types inheriting from >1 java package
-    * [JBWS-1579] - @EndpointConfig ignored on SEI
-    * [JBWS-1588] - Review jar in classpath for wsrunclient.sh
-    * [JBWS-1594] - Support certificate password different from keystore
-    * [JBWS-1595] - No typemapping for xsd:anyType with soap encoding
-    * [JBWS-1607] - WSDL To Java - document/literal, IN OUT parameter incorectly used as return type.
-    * [JBWS-1609] - Address in WSDL - Port value is -1 when server is requested with default port 80
-    * [JBWS-1611] - SOAPAction is not sent in dispath requests
-    * [JBWS-1616] - Verify correct bahaviour of @WebService.wsdlLocation
-    * [JBWS-1619] - ServletEndpointContext.getHttpSession always creates HTTPSession
-    * [JBWS-1620] - Incorrect handling of MIME boundaries in MultipartRelatedDecoder
-    * [JBWS-1621] - wstools.sh contain the wrong client libs and will fail
-    * [JBWS-1622] - Multiple context root not supported
-    * [JBWS-1624] - JBossWS samples don't work with JMX authentication
-    * [JBWS-1625] - Calling SOAPPart.setContent() with a DOMSource containing an Element which is a SOAPElement the contents of the body are added twice.
-    * [JBWS-1627] - WSDL To Java - Array Unwrapping uses incorect case to reference array type.
-    * [JBWS-1647] - Text Node Preservation For Messages Sent Across The Wire
-    * [JBWS-1653] - Post-handler-chain not invoked for "Standard Client" configuration
-    * [JBWS-1657] - Error resolving swaref schema
-    * [JBWS-1658] - SwaRef fails with doclit/wrapped endpoints
-    * [JBWS-1659] - @XmlAttachmentRef ignored on method level
-    * [JBWS-1660] - Resolve swaref schema through entity resolver
-    * [JBWS-1680] - Dispatch.invoke does not throw a ProtocolException on Fault
-    * [JBWS-1690] - Review wstools scripts and jars copied to client.
-    * [JBWS-1691] - WSDL To Java - Initial Character of Service and SEI names should be upper case.
-    * [JBWS-1692] - SOAPElement.importNode() not supported
-    * [JBWS-1696] - MIssing wsdl4j.jar in scripts
-    * [JBWS-1697] - WSDL To Java - Incorrect handling of Simple types derived by restriction for holders.
-    * [JBWS-1698] - WSDL To Java - If fault name contains 'Fault' the generated Exception does not match the throws clause on the SEI
-    * [JBWS-1706] - SOAPConnection.get fails with ProtocolException
-    * [JBWS-1710] - StackOverflowError when calling SOAPDocument.createCDATASection
-    * [JBWS-1711] - NoClassDefFoundError: com/sun/xml/stream/buffer/XMLStreamBuffer
-
-Task
-
-    * [JBWS-1661] - Update to jaxb-ri-2.1
-
-Errata
-
-    FIXME: [JBAS-3595] - Tomcat allows http access with transport guarantie CONFIDENTIAL
-    FIXME: [JBWEB-68] Servlet.init(ServletConfig) not called
-    FIXME: [JBCTS-540] EJB3 proxy does not implement the Home interface
-    FIXME: [JBWS-1312] Fix JMS transport in trunk
-    FIXME: [JBWS-1330] Fix jaxrpc wsse tests for jbossws-5.0
-    FIXME: [JBWS-1397] Fix <wsdl-publish-location> for jboss-5.0.x
-    FIXME: [JBWS-1460] @XmlMimeType on SEI parameter declarations
-    FIXME: [JBWS-1617] JAXRPC doc/literal trims empty string
-    FIXME: [JBWS-751] Multiple schema imports with the same namespace
-    FIXME: [JBWS-798] Complete EventingTestCase
-    FIXME: [JBWS-981] Virtual host configuration for EJB endpoints
-
--------------
-jbossws-1.2.1
--------------
-
-Feature Request
-
-    * [JBWS-1156] - Implement injection of WebServiceRef
-    * [JBWS-1021] - Implement javax.xml.ws.Endpoint
-    * [JBWS-1022] - Implement javax.xml.ws.WebServiceContext
-    * [JBWS-1023] - Implement javax.xml.ws.Service
-    * [JBWS-1024] - Implement javax.xml.ws.BindingProvider
-    * [JBWS-1025] - Implement javax.xml.ws.Dispatch
-    * [JBWS-1070] - Add context-root in generated jboss-web.xml for Endpoint API
-    * [JBWS-1207] - Async jaxws dispatch
-    * [JBWS-1208] - Async jaxws proxy
-    * [JBWS-1020] - Implement javax.xml.ws.Provider
-    * [JBWS-1192] - Examples for JSR181 EJB Endpoints: show how to use a JavaBean as an operations's argument or return value
-    * [JBWS-1388] - Notification validation before dispatch
-    * [JBWS-1406] - WS-Eventing: event notification failure
-    * [JBWS-1438] - Implement @WebServiceRef injection for JBossAS-4.2
-    * [JBWS-1443] - getMessageContext Not Implemented
-    * [JBWS-1456] - Allow client configuration on StubExt
-    * [JBWS-1457] - Support soap attachments on StubExt
-
-Bug
-
-    * [JBWS-1079] - Incorrect WSDL to Java mapping for anonymous struct.
-    * [JBWS-1336] - JAXWSDeployerJSE throws NPE
-    * [JBWS-1389] - WebServiceProvider should be allowed on EJB3 beans
-    * [JBWS-1409] - WsdlGenerator crashes on void-methods
-    * [JBWS-1168] - JAXWS handler ordering
-    * [JBWS-1357] - JAXWSDeployerJSE is not handling jsp servlet defs correctly
-    * [JBWS-1374] - Package to namespace mapping is wrong
-    * [JBWS-1375] - JSR181MetaDataBuilder inspects java.* classes
-    * [JBWS-800]  - ClassCastException when trying to marshal a subclass of Date
-    * [JBWS-810]  - Simple type with restriction
-    * [JBWS-1184] - WSDL to Java - maps required xsd:double attribute to java.lang.Double
-    * [JBWS-1231] - wstools/java-wsdl does not handle recursive types
-    * [JBWS-1259] - WSDL To Java - StackOverflowError with self referencing element.
-    * [JBWS-1260] - WSDL To Java - Parameter unwrapping fails for a lot of scenarios.
-    * [JBWS-1285] - NPE when the soap encoded array size is 0 on the return path
-    * [JBWS-1317] - webservices.xml override does not account for namespaces
-    * [JBWS-1328] - Security configuration not correctly loaded when deployed as ear to JBoss 5.0.x
-    * [JBWS-1378] - NPE in replaceAddressLocation with SOAP1.2 WSDL
-    * [JBWS-1384] - Attachment parts with doclit message
-    * [JBWS-1386] - ComplexType with base64Binary property
-    * [JBWS-1393] - Problem interpreting messages with attachment when confronted with no <start> header
-    * [JBWS-1396] - Now jbossws-beans is exploded jbossws.sar must be exploded
-    * [JBWS-1408] - NPE when jbossws.sar is not expanded
-    * [JBWS-1410] - NumberFormatException From StubExt.PROPERTY_CLIENT_TIMEOUT
-    * [JBWS-1427] - Handling of invalid binding port type ref and doc/lit message parts
-    * [JBWS-1428] - Java to WSDL - Arrays defined with indexed properties within value type are skipped when generating the WSDL
-    * [JBWS-1441] - WSDL to Java - Complex type defined with complexContent only last element is in the generated java class if base type is empty
-    * [JBWS-1450] - WSDL To Java - Parameter unwrapping not handling nillable types correctly.
-    * [JBWS-1451] - comparison of the mime type should not be case sensitive
-    * [JBWS-1455] - WSDL To Java - Generated jaxrpc mapping contains same exception mapped multiple times if there are multiple operations.
-    * [JBWS-1468] - @Resource WebServiceContext for jbossas-4.x
-    * [JBWS-1497] - Fix failed resource lookup when offline
-    * [JBWS-1501] - wsimport RI fails when processing parameterOrder on one-way operations
-
-Task
-
-    * [JBWS-1284] - Gracefully handle invalid ImageIO mime types
-    * [JBWS-1297] - Implement JAXB Fault Marshalling
-    * [JBWS-1404] - Add support for differing namespaces on SEI and implementation bean
-    * [JBWS-644]  - JAXWS initial implementation
-    * [JBWS-1031] - Use JAXB-2.0 for JSR-181 endpoints
-    * [JBWS-1099] - Implement JAXWS Handler Framework
-    * [JBWS-1150] - Implement JAXWS Logical Handlers
-    * [JBWS-1315] - Implement WS deployers for jbossas/trunk
-    * [JBWS-1425] - Update to remoting-2.0
-    * [JBWS-723]  - Protect access to WSDL
-    * [JBWS-1077] - Improve/Complete security documentation
-    * [JBWS-1098] - Publicly available interop endpoints
-    * [JBWS-1100] - Move WS-Eventing to updated wsa schema
-    * [JBWS-1155] - Document SwA/XOP usage with JSR181 endpoints.
-    * [JBWS-1307] - JAXWS user guide and samples
-    * [JBWS-1418] - Provide JBossWS API docs
-    * [JBWS-1429] - Cleanup PortComponent annotation
-    * [JBWS-1433] - Remerge connector discovery code
-    * [JBWS-1434] - Client programming: Add property API at Service level similiar to StubExt.
-    * [JBWS-1473] - Setup soak and performance tests
-    * [JBWS-1503] - Support XOP samples in tomcat
-    * [JBWS-1504] - Resolve dependency on snapshots
-
-Errata
-
-    FIXME: [JBWS-1294] Add support for mapping async methods
-    FIXME: [JBWS-1511] MessageFactory does not preserve comments
-    FIXME: [JBWS-434] Support sequences of anys in JAXRPC
-    FIXME: [JBWS-751] Multiple schema imports with the same namespace
-
--------------
-jbossws-1.0.4
--------------
-
-    * [JBWS-660]  XOP inline base64Binary and sign message  
-    * [JBWS-779]  Add webservices.xml support to wsdlTojava  
-    * [JBWS-868]  BPEL in jbossws-samples
-    * [JBWS-1113] Improve performance of Service.getPort()
-    * [JBWS-1178] Multiple virtual host and soap:address problem
-    * [JBWS-1182] Change wsdl-java at file to wsdl-java at location
-    * [JBWS-1200] Provide source download for GA release
-    * [JBWS-1261] Provide support for additional MTOM java types besides byte[]
-    * [JBWS-1299] Add support for wsdl-java at parameter-style
-    * [JBWS-1302] Use EAR name in context root for EJB endpoints
-    * [JBWS-1323] Add JBoss EULA
-    * Bug fixes
-
-Errata
-
-    FIXME: [JBWS-1291] Fix JaxrpcMappingValidator
-    FIXME: [JBWS-1292] Fix XOPElementRPCTestCase
-    FIXME: [JBWS-269] Support attachments in Web Services Tools
-    FIXME: [JBWS-269] Support attachments in Web Services Tools
-    FIXME: [JBWS-434] Support sequences of anys
-    FIXME: [JBWS-798] Complete EventingTestCase
-    FIXME: [JBWS-798] Complete EventingTestCase
-    FIXME: [JBWS-798] Complete EventingTestCase
-    FIXME: [JBWS-940] Add wsdl-java support for jdk 1.4 typesafe enums
-
--------------
-jbossws-1.0.3
--------------
-
-    * [JBWS-983]  Configure SOAPAction on the Call object  
-    * [JBWS-1090] preventing override of webservices.xml when multiple web services are processed with wstools  
-    * [JBWS-1160] XOP Inline base64 for doc/lit requests
-    * Bug fixes
-
--------------
-jbossws-1.0.2
--------------
-
-    * [JBWS-855] Provide MTOM for document/literal  
-    * [JBWS-920] integrate wstools wsdl2java functionality
-    * [JBWS-921] integrate wstools java2wsdl functionality
-    * [JBWS-932] Performance bottleneck when marshalling array types
-    * Bug fixes
-
--------------
-jbossws-1.0.1
--------------
-
-    * [JBWS-776] WSDLToJava Support wildcards
-    * [JBWS-852] Integration with Mikrocontainer
-    * [JBWS-865] Support security annotations for EJB3 endpoints
-    * [JBWS-871] Arrays with JSR181 endpoints  
-    * [JBWS-923] Complete MTOM for rpc/literal
-    * Bug fixes

Deleted: stack/native/trunk/modules/dist/src/main/distro/ant.properties.example
===================================================================
--- stack/native/trunk/modules/dist/src/main/distro/ant.properties.example	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/distro/ant.properties.example	2012-03-23 15:15:08 UTC (rev 16017)
@@ -1,29 +0,0 @@
-#
-# A sample ant properties file
-#
-
-# Optional JBoss Home
-jboss702.home=@jboss702.home@
-jboss710.home=@jboss710.home@
-jboss711.home=@jboss711.home@
-jboss712.home=@jboss712.home@
-
-# The JBoss server under test. This can be [jboss702|jboss710|jboss711|jboss712]
-jbossws.integration.target=jboss711
-
-# The JBoss settings
-jboss.bind.address=localhost
-
-# JBoss Management console authentication (AS 7.1.x)
-jbossws.deployer.authentication.username=admin
-jbossws.deployer.authentication.password=admin
-
-# JBoss JMX invoker authentication (AS 7.0.x)
-#jmx.authentication.username=admin
-#jmx.authentication.password=admin
-
-# Java Compiler options
-javac.debug=yes
-javac.deprecation=no
-javac.fail.onerror=yes
-javac.verbose=no

Modified: stack/native/trunk/modules/dist/src/main/distro/build-deploy.xml
===================================================================
--- stack/native/trunk/modules/dist/src/main/distro/build-deploy.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/distro/build-deploy.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -24,58 +24,7 @@
 
 <project>
 
-  <!-- ================================================================== -->
-  <!-- Prepare Deployment Structure JBoss-7.0.x                           -->
-  <!-- ================================================================== -->
-
-  <target name="deploy-structure-jboss70x" depends="prepare-deploy">
-    <delete dir="${deploy.structure}"/>
-
-    <path id="jbossws-common-tools.path">
-      <fileset dir="${deploy.artifacts.dir}">
-        <include name="**/jbossws-common-tools.jar"/>
-      </fileset>
-    </path>
-    <taskdef name="installModules" classname="org.jboss.ws.tools.ant.InstallModulesTask" classpathref="jbossws-common-tools.path"/>
-
-    <antcall target="deploy-jbossws-native-modules" inheritall="false">
-      <param name="installserver" value="${deploy.structure}"/>
-      <param name="thirdpartydir" value="${deploy.artifacts.dir}"/>
-      <param name="jbossid" value="${jbossws.integration.target}"/>
-      <param name="modules-jbossid" value="jboss700"/>
-    </antcall>
-  </target>
-
    <!-- ================================================================== -->
-   <!-- Deployment JBoss702                                                -->
-   <!-- ================================================================== -->
-
-   <target name="target-jboss702">
-     <property name="jbossws.integration.target" value="jboss702"/>
-     <echo message="jbossws.integration.target=${jbossws.integration.target}" file="${target.properties.file}"/>
-   </target>
-
-   <target name="deploy-jboss702" depends="undeploy-jboss702,deploy-structure-jboss70x" description="Deploy jbossws to jboss702">
-     <fail message="Not available: ${jboss702.available.file}" unless="jboss702.available"/>
-     <copy todir="${jboss702.home}" overwrite="true" verbose="true">
-       <fileset dir="${deploy.structure}">
-         <exclude name="**/jboss/as/webservices/**/module.xml"/>
-       </fileset>
-     </copy>
-     <!-- Install org/jboss/as/webservices module.xml separately since it needs to reference libs already on the AS -->
-     <installModules targetDir="${jboss702.home}/modules">
-       <fileset dir="${deploy.structure}/modules">
-         <include name="**/jboss/as/webservices/**/module.xml"/>
-       </fileset>
-     </installModules>
-   </target>
-
-   <target name="undeploy-jboss702" depends="target-jboss702,init" description="Remove jbossws from jboss702">
-     <fail message="Not available: ${jboss702.available.file}" unless="jboss702.available"/>
-     <macro-undeploy-jbossws-modules targetdir="${jboss702.home}" defaultmodulesconf="${jbossws.default.modules.conf}" modifyjbossintegration="true"/>
-   </target>
-
-   <!-- ================================================================== -->
    <!-- Prepare Deployment Structure JBoss-7.1.x                           -->
    <!-- ================================================================== -->
 

Modified: stack/native/trunk/modules/dist/src/main/distro/build-setup.xml
===================================================================
--- stack/native/trunk/modules/dist/src/main/distro/build-setup.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/distro/build-setup.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -34,16 +34,11 @@
     <property file="${target.properties.file}"/>
     <property name="jboss.server.instance" value="default"/>
 
-    <property name="jboss700.modules" value="${jboss700.home}/modules"/>
     <property name="jboss710.modules" value="${jboss710.home}/modules"/>
 
-    <property name="jboss702.available.file" value="${jboss702.home}/jboss-modules.jar"/>
-    <property name="jboss710.available.file" value="${jboss710.home}/jboss-modules.jar"/>
     <property name="jboss711.available.file" value="${jboss711.home}/jboss-modules.jar"/>
     <property name="jboss712.available.file" value="${jboss712.home}/jboss-modules.jar"/>
 
-    <available property="jboss702.available" file="${jboss702.available.file}"/>
-    <available property="jboss710.available" file="${jboss710.available.file}"/>
     <available property="jboss711.available" file="${jboss711.available.file}"/>
     <available property="jboss712.available" file="${jboss712.available.file}"/>
 

Modified: stack/native/trunk/modules/dist/src/main/distro/build.xml
===================================================================
--- stack/native/trunk/modules/dist/src/main/distro/build.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/distro/build.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -57,14 +57,8 @@
     <fail message="jbossws.integration.target not set" unless="jbossws.integration.target"/>
     <echo message="integration.target=${jbossws.integration.target}"/>
 
-    <condition property="jbossws.integration.jboss700" value="true">
-      <or>
-        <equals arg1="${jbossws.integration.target}" arg2="jboss702"/>
-      </or>
-    </condition>
     <condition property="jbossws.integration.jboss710" value="true">
       <or>
-        <equals arg1="${jbossws.integration.target}" arg2="jboss710"/>
         <equals arg1="${jbossws.integration.target}" arg2="jboss711"/>
         <equals arg1="${jbossws.integration.target}" arg2="jboss712"/>
       </or>

Deleted: stack/native/trunk/modules/dist/src/main/distro/test-exclude.xsl
===================================================================
--- stack/native/trunk/modules/dist/src/main/distro/test-exclude.xsl	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/distro/test-exclude.xsl	2012-03-23 15:15:08 UTC (rev 16017)
@@ -1,16 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:m="http://maven.apache.org/POM/4.0.0">
-  <xsl:param name="targetName"/>
-  <xsl:output method="text"/>
-  <xsl:template match="/">
-    <xsl:for-each select="//m:profile[m:id=$targetName]/m:build/m:plugins/m:plugin[m:artifactId='maven-surefire-plugin']//m:excludes">
-      <xsl:for-each select="m:exclude|comment()">
-        <xsl:if test="self::comment()">
-          <xsl:text>#</xsl:text>
-        </xsl:if>
-        <xsl:value-of select="."/><xsl:text>&#10;</xsl:text>
-      </xsl:for-each>
-    </xsl:for-each>
-  </xsl:template>
-</xsl:stylesheet> 

Deleted: stack/native/trunk/modules/dist/src/main/scripts/assembly-bin-dist.xml
===================================================================
--- stack/native/trunk/modules/dist/src/main/scripts/assembly-bin-dist.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/scripts/assembly-bin-dist.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -1,118 +0,0 @@
-<assembly xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd">
-  
-  <id>binary-distribution</id>
-  <formats>
-    <format>dir</format>
-  </formats>
-  <includeBaseDirectory>false</includeBaseDirectory>
-  
-  <fileSets>
-    <!-- root -->
-    <fileSet>
-      <directory>src/main/distro</directory>
-      <outputDirectory>jbossws-native-bin-dist/</outputDirectory>
-      <includes>
-        <include>build.xml</include>
-      </includes>
-    </fileSet>
-    <fileSet>
-      <directory>src/main/distro</directory>
-      <outputDirectory>jbossws-native-bin-dist/</outputDirectory>
-      <filtered>true</filtered>
-      <includes>
-        <include>ant.properties.example</include>
-      </includes>
-    </fileSet>
-    <!-- build -->
-    <fileSet>
-      <directory>src/main/distro</directory>
-      <outputDirectory>jbossws-native-bin-dist/build</outputDirectory>
-      <includes>
-        <include>build-deploy.xml</include>
-        <include>build-setup.xml</include>
-      </includes>
-    </fileSet>
-    <fileSet>
-      <directory>../resources/src/main/resources/resources</directory>
-      <outputDirectory>jbossws-native-bin-dist/build</outputDirectory>
-      <includes>
-        <include>deploy.conf</include>
-        <include>server-deploy.conf</include>
-        <include>jbossws-deploy-macros.xml</include>
-      </includes>
-    </fileSet>
-    <!-- docs -->
-    <fileSet>
-      <directory>src/main/distro</directory>
-      <outputDirectory>jbossws-native-bin-dist/docs</outputDirectory>
-      <filtered>true</filtered>
-      <includes>
-        <include>Install.txt</include>
-        <include>ReleaseNotes.txt</include>
-        <include>JBossORG-EULA.txt</include>
-      </includes>
-    </fileSet>
-    <fileSet>
-      <directory>target/docbook/publish</directory>
-      <outputDirectory>jbossws-native-bin-dist/docs</outputDirectory>
-    </fileSet>
-    <!-- deploy -->
-    <fileSet>
-      <directory>target/assembly/deploy-artifacts</directory>
-      <outputDirectory>jbossws-native-bin-dist/deploy</outputDirectory>
-    </fileSet>
-    <!-- test etc -->
-    <fileSet>
-      <directory>../testsuite/native-tests/src/test</directory>
-      <outputDirectory>jbossws-native-bin-dist/tests</outputDirectory>
-      <includes>
-        <include>etc/**</include>
-      </includes>
-    </fileSet>
-    <!-- Appclient patches -->
-    <fileSet>
-      <directory>../testsuite/src/test/resources/</directory>
-      <outputDirectory>jbossws-native-bin-dist/tests/etc/appclient</outputDirectory>
-    </fileSet>
-    <!-- test excludes -->
-    <fileSet>
-      <directory>target/exclude-file</directory>
-      <outputDirectory>jbossws-native-bin-dist/tests/resources</outputDirectory>
-      <includes>
-        <include>test-excludes-*.txt</include>
-      </includes>
-    </fileSet>
-  </fileSets>
-  
-  <!-- shared tests -->
-  <dependencySets> 
-    <dependencySet>
-      <outputDirectory>jbossws-native-bin-dist/tests</outputDirectory>
-      <useStrictFiltering>true</useStrictFiltering>
-      <unpack>true</unpack>
-      <scope>test</scope>
-      <includes>
-        <include>*:jbossws-shared-testsuite:zip</include>
-    </includes>
-    <unpackOptions>
-      <includes>
-        <include>ant-import/**</include>
-        <include>java/org/jboss/test/helper/**</include>
-        <include>java/org/jboss/test/ws/jaxrpc/samples/**</include>
-        <include>java/org/jboss/test/ws/jaxws/samples/**</include>
-        <include>java/org/jboss/test/ws/jaxws/smoke/**</include>
-        <include>java/org/jboss/test/ws/appclient/**</include>
-        <include>java/org/jboss/test/ws/management/**</include>
-        <include>java/org/jboss/test/ws/saaj/**</include>
-        <include>resources/jaxrpc/samples/**</include>
-        <include>resources/jaxws/samples/**</include>
-        <include>resources/jaxws/smoke/**</include>
-        <include>resources/management/**</include>
-        <include>resources/saaj/**</include>
-       </includes>
-     </unpackOptions>
-     <useProjectArtifact>false</useProjectArtifact>
-    </dependencySet>
-   </dependencySets>  
-</assembly>

Modified: stack/native/trunk/modules/dist/src/main/scripts/assembly-deploy-artifacts.xml
===================================================================
--- stack/native/trunk/modules/dist/src/main/scripts/assembly-deploy-artifacts.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/scripts/assembly-deploy-artifacts.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -61,9 +61,6 @@
       <outputDirectory>deploy-artifacts/lib</outputDirectory>
       <unpack>false</unpack>
       <includes>
-        <include>org.jboss.jaxr:juddi-service:sar</include>
-        <include>apache-scout:scout:jar</include>
-        <include>juddi:juddi:jar</include>
         <include>org.jboss.ws:jbossws-common-tools:jar</include>
         <include>org.jboss.ws:jbossws-jboss*:jar</include>
         <include>org.jboss:jbossxb:jar</include>
@@ -182,6 +179,4 @@
 
   </dependencySets>
 
-
-
 </assembly>

Deleted: stack/native/trunk/modules/dist/src/main/scripts/assembly-src-dist.xml
===================================================================
--- stack/native/trunk/modules/dist/src/main/scripts/assembly-src-dist.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/dist/src/main/scripts/assembly-src-dist.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -1,69 +0,0 @@
-<assembly xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd">
-
-  <id>source-distribution</id>
-  <formats>
-    <format>dir</format>
-  </formats>
-  <includeBaseDirectory>false</includeBaseDirectory>
-
-  <fileSets>
-    <fileSet>
-      <directory>../../eclipse/</directory>
-      <outputDirectory>jbossws-native-src-dist/eclipse/
-      </outputDirectory>
-    </fileSet>
-    <fileSet>
-      <directory>../../src/</directory>
-      <outputDirectory>jbossws-native-src-dist/src/</outputDirectory>
-    </fileSet>
-    <fileSet>
-      <directory>../</directory>
-      <outputDirectory>jbossws-native-src-dist/modules/</outputDirectory>
-      <excludes>
-        <exclude>**/target/**</exclude>
-        <exclude>**/shared-tests/**</exclude>
-      </excludes>
-    </fileSet>
-    <fileSet>
-      <directory>../testsuite/shared-tests</directory>
-      <outputDirectory>jbossws-native-src-dist/modules/testsuite/shared-tests
-      </outputDirectory>
-      <includes>
-        <include>src/test/etc/</include>
-        <include>scripts/</include>
-        <include>pom.xml</include>
-      </includes>
-    </fileSet>
-    <fileSet>
-      <directory>../../</directory>
-      <outputDirectory>jbossws-native-src-dist/</outputDirectory>
-      <includes>
-        <include>.classpath</include>
-        <include>.project</include>
-        <include>build.xml</include>
-        <include>pom.xml</include>
-      </includes>
-    </fileSet>
-  </fileSets>
-
-  <!-- shared tests -->
-  <dependencySets>
-    <dependencySet>
-      <outputDirectory>jbossws-native-src-dist/modules/testsuite/shared-tests/src/test
-      </outputDirectory>
-      <useStrictFiltering>true</useStrictFiltering>
-      <scope>test</scope>
-      <unpack>true</unpack>
-      <includes>
-        <include>*:jbossws-shared-testsuite:zip</include>
-      </includes>
-      <unpackOptions>
-        <includes>
-          <include>**/*</include>
-        </includes>
-      </unpackOptions>
-      <useProjectArtifact>false</useProjectArtifact>
-    </dependencySet>
-  </dependencySets>
-</assembly>

Modified: stack/native/trunk/modules/resources/pom.xml
===================================================================
--- stack/native/trunk/modules/resources/pom.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/resources/pom.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -43,24 +43,6 @@
             <phase>package</phase>
           </execution>
           <execution>
-            <id>jboss702</id>
-            <goals><goal>jar</goal></goals>
-            <phase>package</phase>
-            <configuration>
-              <classifier>jboss702</classifier>
-              <classesDirectory>${project.build.directory}/classes/resources/jbossws-jboss702/jbossws.beans</classesDirectory>
-            </configuration>
-          </execution>
-          <execution>
-            <id>jboss710</id>
-            <goals><goal>jar</goal></goals>
-            <phase>package</phase>
-            <configuration>
-              <classifier>jboss710</classifier>
-              <classesDirectory>${project.build.directory}/classes/resources/jbossws-jboss710/jbossws.beans</classesDirectory>
-            </configuration>
-          </execution>
-          <execution>
             <id>jboss711</id>
             <goals><goal>jar</goal></goals>
             <phase>package</phase>

Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/modules/testsuite/pom.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -399,413 +399,6 @@
     </profile>
 
     <!--
-    Name:  jboss702
-    Descr: JBoss-7.0.2.Final specific options
-    -->
-    <profile>
-      <id>jboss702</id>
-      <properties>
-        <jboss.version>${jboss702.version}</jboss.version>
-        <jbossws.integration.target>jboss702</jbossws.integration.target>
-        <endorsed.dirs>${project.build.directory}/endorsed</endorsed.dirs>
-      </properties>
-      <dependencies>
-        <dependency>
-          <groupId>org.jboss.as</groupId>
-          <artifactId>jboss-as-webservices-tests-integration</artifactId>
-          <version>${jboss.version}</version>
-        </dependency>
-        <dependency>
-          <groupId>javax.mail</groupId>
-          <artifactId>mail</artifactId>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss.naming</groupId>
-          <artifactId>jnp-client</artifactId>
-          <version>5.0.5.Final</version>
-        </dependency>
-        <dependency>
-          <groupId>org.picketbox</groupId>
-          <artifactId>jbosssx-client</artifactId>
-          <version>3.0.0.CR2</version>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss</groupId>
-          <artifactId>jboss-common-core</artifactId>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss</groupId>
-          <artifactId>jbossxb</artifactId>
-        </dependency>
-        <!-- provides org.jboss.ejb3.annotation.SecurityDomain annotation -->
-        <dependency>
-          <groupId>org.jboss.ejb3</groupId>
-          <artifactId>jboss-ejb3-ext-api</artifactId>
-          <version>2.0.0-beta-1</version>
-        </dependency>
-        <!-- Apache XML security depends on Xalan impl classes :( -->
-        <dependency>
-          <groupId>apache-xalan</groupId>
-          <artifactId>serializer</artifactId>
-          <version>2.7.1.patch01-brew</version>
-        </dependency>
-        <dependency>
-          <groupId>apache-xalan</groupId>
-          <artifactId>xalan</artifactId>
-          <version>2.7.1.patch01-brew</version>
-        </dependency>
-      </dependencies>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-compiler-plugin</artifactId>
-            <configuration>
-              <compilerArgument>-Djava.endorsed.dirs=${endorsed.dirs}</compilerArgument>
-            </configuration>
-            <executions>
-              <execution>
-                <id>default-testCompile</id>
-                <phase>test-compile</phase>
-                <configuration>
-                  <testExcludes>
-                    <!-- TODO: tests using org.jboss.ejb3.client.ClientLauncher -->
-                    <exclude>org/jboss/test/ws/jaxws/webserviceref/**</exclude>
-                    <exclude>org/jboss/test/ws/jaxws/samples/webserviceref/**</exclude>
-                  </testExcludes>
-                </configuration>
-                <goals>
-                  <goal>testCompile</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <argLine>${surefire.jvm.args} ${surefire.jvm.management.args} -Djava.endorsed.dirs=${endorsed.dirs}</argLine>
-              <excludes>
-                 <!-- # [EJBTHREE-1152] service-ref in ejb-jar.xml is ignored-->
-                 <exclude>org/jboss/test/ws/jaxws/samples/serviceref/ServiceRefEJBTestCase.*</exclude>
-
-                 <!-- # [JBAS-8363] Virtual host issue in JBossWeb -->
-                 <exclude>org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.*</exclude>
-
-                 <!-- # [JBWS-3150] This test causes hudson to freeze -->
-                 <exclude>org/jboss/test/ws/common/soap/SOAPConnectionTestCase.*</exclude>
-
-                 <!-- ////////////////////////// -->
-                 <!-- AS7 integration exclusions -->
-                 <!-- ////////////////////////// -->
-
-                 <!-- [JBWS-3367][AS7-1605] fixed since AS 7.1 -->
-                 <exclude>org/jboss/test/ws/jaxws/jbws3367/**</exclude>
-
-                 <!-- [JBWS-3276] fixed since AS 7.1 -->
-                 <exclude>org/jboss/test/ws/jaxws/jbws3276/**</exclude>
-
-                 <!-- TODO: Injections support for WS components -->
-                 <exclude>org/jboss/test/ws/jaxws/jbws2634/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws2074/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws3026/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/enventry/*JSETestCase*</exclude>
-
-                 <!-- TODO: Native webserviceref stuff -->
-                 <exclude>org/jboss/test/ws/jaxws/jbws2307/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws2527/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/samples/advanced/retail/**</exclude>
-
-                 <!-- # [JBWS-3308] Extends AS7 RemoteDeployer for supporting deployment of different security domains -->
-                 <exclude>org/jboss/test/ws/jaxws/jbws2116/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws3182/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws1988/UsernameAuthTestCase*</exclude>
-
-                 <!-- TODO: EJB3 DD driven deployments -->
-                 <exclude>org/jboss/test/ws/jaxws/jbws1309/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws1813/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws1841/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws2241/**</exclude>
-
-                 <!-- [AS7-1101][AS7-1125] waiting for metadata upgrade in AS7, solved in AS 7.0.1 or greater -->
-                 <exclude>org/jboss/test/ws/jaxws/samples/webservicerefsec/**</exclude>
-
-                 <!-- # [JBWS-3232] javax.naming.NameNotFoundException: Name 'service' not found in context 'env' -->
-                 <exclude>org/jboss/test/ws/jaxws/jbws3140/**</exclude>
-
-                 <!-- TODO: tests using org.jboss.ejb3.client.ClientLauncher -->
-                 <exclude>org/jboss/test/ws/jaxws/webserviceref/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/samples/webserviceref/**</exclude>
-
-                 <!-- JAXR not available -->
-                 <exclude>org/jboss/test/ws/jaxws/samples/jaxr/**</exclude>
-
-                 <!-- # [AS7-1338] Remote JNDI support for AS7 -->
-                 <exclude>org/jboss/test/ws/jaxrpc/**</exclude>
-                 <exclude>org/jboss/test/ws/benchmark/jaxrpc/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws944/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/samples/serviceref/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws1581/**</exclude>
-
-                 <!-- # [AS7-1322] Implemented on AS 7.1.0 or greater only -->
-                 <exclude>org/jboss/test/ws/publish/EndpointPublishTestCase*</exclude>
-
-                 <!-- # [AS7-3581] Fixed on AS 7.1.0 or greater only -->
-                 <exclude>org/jboss/test/ws/jaxws/as3581/AS3581TestCase*</exclude>
-
-              </excludes>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    
-    <!--
-    Name:  jboss710
-    Descr: JBoss-7.1.0 specific options
-    -->
-    <profile>
-      <id>jboss710</id>
-      <properties>
-        <jboss.version>${jboss710.version}</jboss.version>
-        <jbossws.integration.target>jboss710</jbossws.integration.target>
-        <endorsed.dirs>${project.build.directory}/endorsed</endorsed.dirs>
-      </properties>
-      <dependencies>
-        <dependency>
-          <groupId>org.jboss.as</groupId>
-          <artifactId>jboss-as-webservices-tests-integration</artifactId>
-          <version>${jboss.version}</version>
-          <exclusions>
-            <exclusion>
-              <groupId>org.jboss.as</groupId>
-              <artifactId>jboss-as-transactions</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>org.jboss.remoting3</groupId>
-              <artifactId>jboss-remoting</artifactId>
-            </exclusion>
-          </exclusions>
-        </dependency>
-        <dependency>
-          <groupId>javax.mail</groupId>
-          <artifactId>mail</artifactId>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss</groupId>
-          <artifactId>jboss-ejb-client</artifactId>
-          <version>1.0.2.Final</version>
-          <exclusions>
-            <exclusion>
-              <groupId>org.jboss.remoting3</groupId>
-              <artifactId>jboss-remoting</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>org.jboss.xnio</groupId>
-              <artifactId>xnio-api</artifactId>
-            </exclusion>
-          </exclusions>
-        </dependency>
-        <dependency>
-          <groupId>org.picketbox</groupId>
-          <artifactId>jbosssx-client</artifactId>
-          <version>3.0.0.CR2</version>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss</groupId>
-          <artifactId>jboss-common-core</artifactId>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss</groupId>
-          <artifactId>jbossxb</artifactId>
-        </dependency>
-        <!-- provides org.jboss.ejb3.annotation.SecurityDomain annotation -->
-        <dependency>
-          <groupId>org.jboss.ejb3</groupId>
-          <artifactId>jboss-ejb3-ext-api</artifactId>
-          <version>2.0.0-beta-1</version>
-        </dependency>
-        <!-- Apache XML security depends on Xalan impl classes :( -->
-        <dependency>
-          <groupId>apache-xalan</groupId>
-          <artifactId>serializer</artifactId>
-          <version>2.7.1.patch01-brew</version>
-        </dependency>
-        <dependency>
-          <groupId>apache-xalan</groupId>
-          <artifactId>xalan</artifactId>
-          <version>2.7.1.patch01-brew</version>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss.remoting3</groupId>
-          <artifactId>remoting-jmx</artifactId>
-          <version>1.0.0.Final</version>
-          <scope>test</scope>
-        </dependency>
-        <dependency>
-          <groupId>org.jboss.remoting3</groupId>
-          <artifactId>jboss-remoting</artifactId>
-          <version>3.2.1.GA</version>
-          <scope>test</scope>
-        </dependency>
-      </dependencies>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-compiler-plugin</artifactId>
-            <configuration>
-              <compilerArgument>-Djava.endorsed.dirs=${endorsed.dirs}</compilerArgument>
-            </configuration>
-            <executions>
-              <execution>
-                <id>default-testCompile</id>
-                <phase>test-compile</phase>
-                <configuration>
-                  <testExcludes>
-                    <!-- TODO: tests using org.jboss.ejb3.client.ClientLauncher -->
-                    <exclude>org/jboss/test/ws/jaxws/webserviceref/**</exclude>
-                    <exclude>org/jboss/test/ws/jaxws/samples/webserviceref/WebServiceRefClientTestCase*</exclude>
-                  </testExcludes>
-                </configuration>
-                <goals>
-                  <goal>testCompile</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <argLine>${surefire.jvm.args} ${surefire.jvm.management.args} ${surefire.default-mgmt-serurity.args} -Djava.endorsed.dirs=${endorsed.dirs}</argLine>
-              <excludes>
-                 <!-- # [EJBTHREE-1152] service-ref in ejb-jar.xml is ignored-->
-                 <exclude>org/jboss/test/ws/jaxws/samples/serviceref/ServiceRefEJBTestCase.*</exclude>
-
-                 <!-- # [JBWS-3150] This test causes hudson to freeze -->
-                 <exclude>org/jboss/test/ws/common/soap/SOAPConnectionTestCase.*</exclude>
-
-                 <!-- ////////////////////////// -->
-                 <!-- AS7 integration exclusions -->
-                 <!-- ////////////////////////// -->
-
-                 <!-- # [JBWS-3308] Extends AS7 RemoteDeployer for supporting deployment of different security domains -->
-                 <exclude>org/jboss/test/ws/jaxws/jbws2116/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws3182/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/jbws1988/UsernameAuthTestCase*</exclude>
-
-                 <!-- TODO: tests using org.jboss.ejb3.client.ClientLauncher -->
-                 <exclude>org/jboss/test/ws/jaxws/webserviceref/**</exclude>
-                 <exclude>org/jboss/test/ws/jaxws/samples/webserviceref/WebServiceRefClientTestCase*</exclude>
-
-                 <!-- JAXR not available -->
-                 <exclude>org/jboss/test/ws/jaxws/samples/jaxr/**</exclude>
-
-                 <!-- # TODO: appclient -->
-                 <exclude>org/jboss/test/ws/jaxws/samples/serviceref/ServiceRefClientTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/serviceref/ServiceRefClientTestCase*</exclude>
-
-                 <!-- # TODO: remote JNDI support (non EJB objects) -->
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/secureejb/**</exclude>
-
-                 <!-- # Remote JNDI lookup & jaxrpc client issues -->
-                 <exclude>org/jboss/test/ws/benchmark/jaxrpc/BenchmarkDocEJBTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/benchmark/jaxrpc/BenchmarkDocJSETestCase*</exclude>
-                 <exclude>org/jboss/test/ws/benchmark/jaxrpc/BenchmarkRpcEJBTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/benchmark/jaxrpc/BenchmarkRpcJSETestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/anonymous/AnonymousTypesTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/encoded/href/MarshallTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/encoded/marshalltest/MarshallTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/encoded/parametermode/ParameterModeTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/enventry/EnvEntryEJBTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/enventry/EnvEntryJSETestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbas897/JBAS897TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1010/JBWS1010TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1011/JBWS1011TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1093/JBWS1093TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1107/JBWS1107TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1121/JBWS1121TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1125/JBWS1125TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1148/JBWS1148TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1179/JBWS1179TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1190/JBWS1190TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1205/JBWS1205TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws124/JBWS124TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1303/JBWS1303TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1316/JBWS1316CallTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1427/JBWS1427TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws153/JBWS153TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1619/JBWS1619TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws163/JBWS163TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws165/JBWS165TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1653/JBWS1653TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws168/JBWS168TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1792/JBWS1792TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws217/JBWS217TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws2234/JBWS2234TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws231/JBWS231TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws251/JBWS251TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws316/JBWS316TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws331/JBWS331TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws349/JBWS349TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws377/JBWS377TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws381/JBWS381TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws383/JBWS383TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws413/JBWS413TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws414/JBWS414TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws423/JBWS423TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws424/JBWS424TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws425/JBWS425TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws434/JBWS434TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws456/JBWS456TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws463/JBWS463TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws464/JBWS464TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws484/JBWS484TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws626/JBWS626TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws632/JBWS632TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws637/JBWS637TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws643/JBWS643TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws663/JBWS663BareBoundTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws663/JBWS663BareUnboundTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws663/JBWS663WrappedBoundTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws663/JBWS663WrappedUnboundTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws68/JBWS68TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws70/JBWS70TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws706/JBWS706TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws707/JBWS707TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws71/JBWS71TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws710/JBWS710TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws720/JBWS720TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws723/JBWS723TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws732/JBWS732TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws772/JBWS772TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws775/JBWS775TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws79/JBWS79TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws807/JBWS807TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws812/JBWS812TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws82/JBWS82TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws83/JBWS83TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws84/JBWS84TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/marshall/MarshallDocLitTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/marshall/MarshallRpcLitTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/overloaded/OverloadedTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/dynamichandler/DynamicHandlerTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/samples/dynamichandler/StaticHandlerTestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/utf16/UTF16TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/wsdlpublish/WsdlPublishTestCase*</exclude>
-
-                 <!-- # webservices-description in jboss-web.xml / jboss.xml -->
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws1124/JBWS1124TestCase*</exclude>
-                 <exclude>org/jboss/test/ws/jaxrpc/wsdlpublish/WsdlPublishTestCase*</exclude>
-
-                 <!-- # unpackaged EAR deployment failure -->
-                 <exclude>org/jboss/test/ws/jaxrpc/jbws358/JBWS358TestCase*</exclude>
-
-              </excludes>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-
-    <!--
     Name:  jboss711
     Descr: JBoss-7.1.1 specific options
     -->
@@ -919,10 +512,6 @@
                  <!-- # [JBWS-3150] This test causes hudson to freeze -->
                  <exclude>org/jboss/test/ws/common/soap/SOAPConnectionTestCase.*</exclude>
 
-                 <!-- ////////////////////////// -->
-                 <!-- AS7 integration exclusions -->
-                 <!-- ////////////////////////// -->
-
                  <!-- # [JBWS-3308] Extends AS7 RemoteDeployer for supporting deployment of different security domains -->
                  <exclude>org/jboss/test/ws/jaxws/jbws2116/**</exclude>
                  <exclude>org/jboss/test/ws/jaxws/jbws3182/**</exclude>
@@ -931,9 +520,6 @@
                  <!-- # exploaded EAR deployment failure - should JBoss AS7 support it? -->
                  <exclude>org/jboss/test/ws/jaxrpc/jbws358/JBWS358TestCase*</exclude>
 
-                 <!-- JAXR not available -->
-                 <exclude>org/jboss/test/ws/jaxws/samples/jaxr/**</exclude>
-
                  <!-- # TODO: rewrite tests using AS6 internals -->
                  <exclude>org/jboss/test/ws/jaxrpc/jbws1179/JBWS1179TestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/jbws331/JBWS331TestCase*</exclude>
@@ -1059,10 +645,6 @@
                  <!-- # [JBWS-3150] This test causes hudson to freeze -->
                  <exclude>org/jboss/test/ws/common/soap/SOAPConnectionTestCase.*</exclude>
 
-                 <!-- ////////////////////////// -->
-                 <!-- AS7 integration exclusions -->
-                 <!-- ////////////////////////// -->
-
                  <!-- # [JBWS-3308] Extends AS7 RemoteDeployer for supporting deployment of different security domains -->
                  <exclude>org/jboss/test/ws/jaxws/jbws2116/**</exclude>
                  <exclude>org/jboss/test/ws/jaxws/jbws3182/**</exclude>
@@ -1071,9 +653,6 @@
                  <!-- # exploaded EAR deployment failure - should JBoss AS7 support it? -->
                  <exclude>org/jboss/test/ws/jaxrpc/jbws358/JBWS358TestCase*</exclude>
 
-                 <!-- JAXR not available -->
-                 <exclude>org/jboss/test/ws/jaxws/samples/jaxr/**</exclude>
-
                  <!-- # TODO: rewrite tests using AS6 internals -->
                  <exclude>org/jboss/test/ws/jaxrpc/jbws1179/JBWS1179TestCase*</exclude>
                  <exclude>org/jboss/test/ws/jaxrpc/jbws331/JBWS331TestCase*</exclude>

Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml	2012-03-23 12:15:44 UTC (rev 16016)
+++ stack/native/trunk/pom.xml	2012-03-23 15:15:08 UTC (rev 16017)
@@ -63,13 +63,7 @@
     <jbossws.common.version>2.1.0-SNAPSHOT</jbossws.common.version>
     <jbossws.common.tools.version>1.1.0-SNAPSHOT</jbossws.common.tools.version>
     <jbossws.shared.testsuite.version>4.1.0-SNAPSHOT</jbossws.shared.testsuite.version>
-    <jbossws.jboss701.version>4.0.1.GA</jbossws.jboss701.version>
-    <jbossws.jboss702.version>4.0.1.GA</jbossws.jboss702.version>
-    <jbossws.jboss710.version>4.0.2.GA</jbossws.jboss710.version>
     <jbossws.jboss711.version>4.1.0-SNAPSHOT</jbossws.jboss711.version>
-    <jboss701.version>7.0.1.Final</jboss701.version>
-    <jboss702.version>7.0.2.Final</jboss702.version>
-    <jboss710.version>7.1.0.Final</jboss710.version>
     <jboss711.version>7.1.1.Final</jboss711.version>
     <jboss712.version>7.1.2.Final-SNAPSHOT</jboss712.version>
     <ejb.api.version>1.0.1.Final</ejb.api.version>
@@ -124,28 +118,6 @@
       </dependency>
       <dependency>
         <groupId>org.jboss.ws</groupId>
-        <artifactId>jbossws-jboss702</artifactId>
-        <version>${jbossws.jboss702.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.ws</groupId>
-        <artifactId>jbossws-jboss702</artifactId>
-        <version>${jbossws.jboss702.version}</version>
-        <classifier>tests-integration</classifier>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.ws</groupId>
-        <artifactId>jbossws-jboss710</artifactId>
-        <version>${jbossws.jboss710.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.ws</groupId>
-        <artifactId>jbossws-jboss710</artifactId>
-        <version>${jbossws.jboss710.version}</version>
-        <classifier>tests-integration</classifier>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.ws</groupId>
         <artifactId>jbossws-jboss711</artifactId>
         <version>${jbossws.jboss711.version}</version>
       </dependency>
@@ -545,30 +517,6 @@
     </profile>
 
     <!--
-    Name:  jboss702
-    Descr: JBoss-7.0.2 specific options
-    -->
-    <profile>
-      <id>jboss702</id>
-      <properties>
-        <jbossws.integration.target>jboss702</jbossws.integration.target>
-        <jboss.home>${jboss702.home}</jboss.home>
-      </properties>
-    </profile>
-
-    <!--
-    Name:  jboss710
-    Descr: JBoss-7.1.0 specific options
-    -->
-    <profile>
-      <id>jboss710</id>
-      <properties>
-        <jbossws.integration.target>jboss710</jbossws.integration.target>
-        <jboss.home>${jboss710.home}</jboss.home>
-      </properties>
-    </profile>
-
-    <!--
     Name:  jboss711
     Descr: JBoss-7.1.1 specific options
     -->



More information about the jbossws-commits mailing list