Author: thomas.diesler(a)jboss.com
Date: 2006-11-05 07:30:34 -0500 (Sun, 05 Nov 2006)
New Revision: 1382
Removed:
branches/jbossws-1.0/docs/JBossWS.doc
branches/jbossws-1.0/docs/project/
branches/jbossws-1.0/docs/wscompileIssues.txt
branches/jbossws-1.0/docs/wsdl_mapping.doc
Modified:
branches/jbossws-1.0/.classpath
branches/jbossws-1.0/docs/user-guide/project/build.xml
branches/jbossws-1.0/docs/user-guide/project/en/modules/installation/install-jboss.xml
branches/jbossws-1.0/docs/user-guide/project/en/modules/installation/install-tomcat.xml
branches/jbossws-1.0/src/ant/build-thirdparty.xml
branches/jbossws-1.0/src/main/resources/dist/Install.txt
branches/jbossws-1.0/src/main/resources/dist/ReleaseNotes.txt
branches/jbossws-1.0/version.properties
Log:
[JBWS-1301] Link install instructions in the user guide to release specific file
Modified: branches/jbossws-1.0/.classpath
===================================================================
--- branches/jbossws-1.0/.classpath 2006-11-05 11:06:36 UTC (rev 1381)
+++ branches/jbossws-1.0/.classpath 2006-11-05 12:30:34 UTC (rev 1382)
@@ -23,7 +23,7 @@
<classpathentry kind="lib"
path="thirdparty/jboss-xml-binding.jar"/>
<classpathentry kind="lib"
path="thirdparty/stax-api-1.0.jar"/>
<classpathentry kind="lib"
path="thirdparty/wstx-lgpl-2.0.6.jar"/>
- <classpathentry kind="con"
path="org.eclipse.jdt.USER_LIBRARY/jboss-4.0.x"/>
+ <classpathentry kind="con"
path="org.eclipse.jdt.USER_LIBRARY/jboss-4.0.5"/>
<classpathentry kind="lib" path="thirdparty/ant.jar"/>
<classpathentry kind="lib" path="thirdparty/jboss.jar"/>
<classpathentry kind="lib" path="thirdparty/jboss-j2ee.jar"/>
Deleted: branches/jbossws-1.0/docs/JBossWS.doc
===================================================================
(Binary files differ)
Modified: branches/jbossws-1.0/docs/user-guide/project/build.xml
===================================================================
--- branches/jbossws-1.0/docs/user-guide/project/build.xml 2006-11-05 11:06:36 UTC (rev
1381)
+++ branches/jbossws-1.0/docs/user-guide/project/build.xml 2006-11-05 12:30:34 UTC (rev
1382)
@@ -16,10 +16,14 @@
<!-- all.doc -->
<target name="all.doc" depends="get-docbook-support,
copy-templates">
-
<ant antfile="${doc.module.home}/build-docbook.xml"
inheritall="false">
<property name="docbook-support.home"
value="${docbook-support.home}"/>
</ant>
+ <copy todir="build/en"
file="../../../src/main/resources/dist/Install.txt" filtering="yes"
overwrite="yes">
+ <filterset>
+ <filtersfile file="../../../version.properties"/>
+ </filterset>
+ </copy>
</target>
<!-- get-docbook-support -->
Modified:
branches/jbossws-1.0/docs/user-guide/project/en/modules/installation/install-jboss.xml
===================================================================
---
branches/jbossws-1.0/docs/user-guide/project/en/modules/installation/install-jboss.xml 2006-11-05
11:06:36 UTC (rev 1381)
+++
branches/jbossws-1.0/docs/user-guide/project/en/modules/installation/install-jboss.xml 2006-11-05
12:30:34 UTC (rev 1382)
@@ -34,5 +34,7 @@
<para>The integration layer hooks into the JBoss deployer architecture and allows
you to hot-deploy POJO and EJB endpoints. The
packaging of a standard portable J2EE-1.4 web service endpoints is defined by the
JSR109 specification. JBossWS also supports
JSR181 endpoints, which are significantly easier to develop and maintain.</para>
+
+ <para>Additionally, there are <ulink
url="http://labs.jboss.com/jbossws/user-guide/en/Install.txt"&g...
specific install instructions</ulink>.</para>
</sect1>
Modified:
branches/jbossws-1.0/docs/user-guide/project/en/modules/installation/install-tomcat.xml
===================================================================
---
branches/jbossws-1.0/docs/user-guide/project/en/modules/installation/install-tomcat.xml 2006-11-05
11:06:36 UTC (rev 1381)
+++
branches/jbossws-1.0/docs/user-guide/project/en/modules/installation/install-tomcat.xml 2006-11-05
12:30:34 UTC (rev 1382)
@@ -64,4 +64,6 @@
</tomcat-users>
]]></programlisting></para>
+ <para>Additionally, there are <ulink
url="http://labs.jboss.com/jbossws/user-guide/en/Install.txt"&g...
specific install instructions</ulink>.</para>
+
</sect1>
Deleted: branches/jbossws-1.0/docs/wscompileIssues.txt
===================================================================
--- branches/jbossws-1.0/docs/wscompileIssues.txt 2006-11-05 11:06:36 UTC (rev 1381)
+++ branches/jbossws-1.0/docs/wscompileIssues.txt 2006-11-05 12:30:34 UTC (rev 1382)
@@ -1,9 +0,0 @@
-Issues seen using wscompile tool from Sun
-========================================
-1. wscompile tool does not support element groups. It does not support the presence of
<xsd:group> inside a complex type.
-2. wscompile does not support complex type inheritance with restriction.
-3. xsd:choice construct is unsupported.
-4. Complex Types with mixed content. Does not generate java classes, but does the trick
in serializers.
-5. When <xsd:anyAttribute/> is added to a schema type, wscompile will not generate
the java type for that schema type. It generates a literalserializer class instead.
-6. When <xsd:element name="street" substitutionGroup="avenue"/>
substitutionGroup will make wscompile to not generate a Java class but a
literalserializer class.
-7. Noticed an issue with Nillable Types where wscompile does not generate accessors for
byte. This is the reason for the sole failure in XSDToJavaTestCase.
Deleted: branches/jbossws-1.0/docs/wsdl_mapping.doc
===================================================================
(Binary files differ)
Modified: branches/jbossws-1.0/src/ant/build-thirdparty.xml
===================================================================
--- branches/jbossws-1.0/src/ant/build-thirdparty.xml 2006-11-05 11:06:36 UTC (rev 1381)
+++ branches/jbossws-1.0/src/ant/build-thirdparty.xml 2006-11-05 12:30:34 UTC (rev 1382)
@@ -70,6 +70,7 @@
<pathelement location="${thirdparty.dir}/jboss-common.jar"/>
<pathelement location="${thirdparty.dir}/jboss-container.jar"/>
<pathelement location="${thirdparty.dir}/jboss-dependency.jar"/>
+ <pathelement location="${thirdparty.dir}/jboss-j2ee.jar"/>
<pathelement
location="${thirdparty.dir}/jboss-microcontainer.jar"/>
<pathelement location="${thirdparty.dir}/jboss-remoting.jar"/>
<pathelement location="${thirdparty.dir}/jboss-xml-binding.jar"/>
@@ -90,7 +91,6 @@
<!-- The classpath for the jbossws core -->
<path id="jboss.core.classpath">
- <pathelement location="${thirdparty.dir}/jboss-j2ee.jar"/>
<pathelement
location="${jboss.server.deploy}/ejb3.deployer/jboss-annotations-ejb3.jar"/>
</path>
Modified: branches/jbossws-1.0/src/main/resources/dist/Install.txt
===================================================================
--- branches/jbossws-1.0/src/main/resources/dist/Install.txt 2006-11-05 11:06:36 UTC (rev
1381)
+++ branches/jbossws-1.0/src/main/resources/dist/Install.txt 2006-11-05 12:30:34 UTC (rev
1382)
@@ -7,23 +7,18 @@
In order to install JBossWS the following steps are necessary:
-1.) Copy lib/jbossws-client.jar to <JBOSS_HOME>/client/
-2.) Unzip lib/jbossws.sar to <JBOSS_HOME>/server/<SERVER>/deploy/
-3.) Replacing JBossXB
+1.) Copy lib/jbossws-client.jar to $JBOSS_HOME/client/
+2.) Unzip lib/jbossws.sar to $JBOSS_HOME/server/default/deploy/
+3.) Replacing jboss-xml-binding.jar
- In order to upgrade to 1.0.2 you need to manually replace the jboss-xml-binding.jar
- in the JBOSS/client and JBOSS/lib directories.
- The 4.0.4GA compatible release can be found here:
-
http://repository.jboss.com/jboss/jbossxb/1.0.0.CR6/
+You need to manually replace the jboss-xml-binding.jar in the $JBOSS_HOME/client and
$JBOSS_HOME/lib directories.
+The compatible release can be found here:
http://repository.jboss.com/jboss/jbossxb/1.0.0.CR7
-
-That's it!
After the jbossws.sar is deployed you should be able to access JBossWS under
http://localhost:8080/jbossws
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
\ No newline at end of file
Modified: branches/jbossws-1.0/src/main/resources/dist/ReleaseNotes.txt
===================================================================
--- branches/jbossws-1.0/src/main/resources/dist/ReleaseNotes.txt 2006-11-05 11:06:36 UTC
(rev 1381)
+++ branches/jbossws-1.0/src/main/resources/dist/ReleaseNotes.txt 2006-11-05 12:30:34 UTC
(rev 1382)
@@ -13,27 +13,72 @@
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.
+http://jira.jboss.com/jira/browse/JBWS?report=com.atlassian.jira.plugin.system.project:changelog-panel
+
+For issues that are scheduled for future versions see the road map.
+http://jira.jboss.com/jira/browse/JBWS?report=com.atlassian.jira.plugin.system.project:roadmap-panel
+
What's new in jbossws-(a)version.id@
----------------------------------
-* [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
-* [JBWS-776] WSDLToJava Support wildcards
+* [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@file to wsdl-java@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@parameter-style
+* [JBWS-1302] Use EAR name in context root for EJB endpoints
+* [JBWS-1323] Add JBoss EULA
* Bug fixes
-For details see the change log.
-http://jira.jboss.com/jira/browse/JBWS?report=com.atlassian.jira.plugin.system.project:changelog-panel
-
Errata
------
-* None
+* 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
-For issues that are scheduled for future versions see the road map.
-http://jira.jboss.com/jira/browse/JBWS?report=com.atlassian.jira.plugin.system.project:roadmap-panel
+Enjoy,
+The JBossWS Team
+Previous Releases
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+What's new in 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
+
+What's new in 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
+
+What's new in 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
+
Enjoy,
The JBossWS Team
\ No newline at end of file
Modified: branches/jbossws-1.0/version.properties
===================================================================
--- branches/jbossws-1.0/version.properties 2006-11-05 11:06:36 UTC (rev 1381)
+++ branches/jbossws-1.0/version.properties 2006-11-05 12:30:34 UTC (rev 1382)
@@ -6,7 +6,7 @@
specification.version=jbossws-1.0
version.id=1.0.4.DEV
-repository.id=snapshot
+repository.id=1.0.4.GA
implementation.title=JBoss Web Services (JBossWS)
implementation.url=http://www.jboss.org/products/jbossws