You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrf-commits@ws.apache.org by sc...@apache.org on 2005/10/20 18:22:33 UTC

svn commit: r326933 - in /webservices/wsrf/trunk/src/site/content/xdocs: dev_guide/deploy.xml release.xml release_notes.xml

Author: scamp
Date: Thu Oct 20 09:22:27 2005
New Revision: 326933

URL: http://svn.apache.org/viewcvs?rev=326933&view=rev
Log:
updated for the 1.1 release

Modified:
    webservices/wsrf/trunk/src/site/content/xdocs/dev_guide/deploy.xml
    webservices/wsrf/trunk/src/site/content/xdocs/release.xml
    webservices/wsrf/trunk/src/site/content/xdocs/release_notes.xml

Modified: webservices/wsrf/trunk/src/site/content/xdocs/dev_guide/deploy.xml
URL: http://svn.apache.org/viewcvs/webservices/wsrf/trunk/src/site/content/xdocs/dev_guide/deploy.xml?rev=326933&r1=326932&r2=326933&view=diff
==============================================================================
--- webservices/wsrf/trunk/src/site/content/xdocs/dev_guide/deploy.xml (original)
+++ webservices/wsrf/trunk/src/site/content/xdocs/dev_guide/deploy.xml Thu Oct 20 09:22:27 2005
@@ -1,5 +1,4 @@
 <?xml version="1.0"?>
-
 <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN"
           "http://forrest.apache.org/dtd/document-v20.dtd">
 
@@ -54,7 +53,7 @@
 				<li>
 					<strong>Update the wsrf-config.xml file.</strong>
 					<p>The wsrf-config.xml contains configuration information for each deployed WSRF service as well as global configuration for the WSRF runtime. This information is necessary for 
-					Apache WSRF to create your home and handle requests for your service. The resource homes for each WSRF service will be bound in JNDI at <code>wsrf/resource/<em>service_name</em></code>. 
+					Apache WSRF to create your home and handle requests for your service. The resource homes for each WSRF service will be bound in JNDI at <code>wsrf/resource/service_name</code>. 
 					Here is the configuration entry for the FileSystem example WSRF service:</p>
 					<source><![CDATA[  <bean name="resource/filesystem" class="org.apache.ws.resource.example.filesystem.FilesystemHome" init-method="init">
     <property name="portComponentName"><value>filesystem</value></property>

Modified: webservices/wsrf/trunk/src/site/content/xdocs/release.xml
URL: http://svn.apache.org/viewcvs/webservices/wsrf/trunk/src/site/content/xdocs/release.xml?rev=326933&r1=326932&r2=326933&view=diff
==============================================================================
--- webservices/wsrf/trunk/src/site/content/xdocs/release.xml (original)
+++ webservices/wsrf/trunk/src/site/content/xdocs/release.xml Thu Oct 20 09:22:27 2005
@@ -9,6 +9,13 @@
   </header>
   
   <body>
+      <section>
+       <title>v1.1</title>
+       <ul>
+          <li>Download: <a href="http://www.apache.org/dyn/closer.cgi/ws/wsrf/1.1/bin/">binary distribution</a>,         
+                        <a href="http://www.apache.org/dyn/closer.cgi/ws/wsrf/1.1/src/">source distribution</a></li>
+       </ul>
+    </section>    
     <section>
        <title>v1.0</title>
        <ul>

Modified: webservices/wsrf/trunk/src/site/content/xdocs/release_notes.xml
URL: http://svn.apache.org/viewcvs/webservices/wsrf/trunk/src/site/content/xdocs/release_notes.xml?rev=326933&r1=326932&r2=326933&view=diff
==============================================================================
--- webservices/wsrf/trunk/src/site/content/xdocs/release_notes.xml (original)
+++ webservices/wsrf/trunk/src/site/content/xdocs/release_notes.xml Thu Oct 20 09:22:27 2005
@@ -5,10 +5,17 @@
 		<title>Apache WSRF Release Notes</title>
 	</header>
 	<body>
-		<note>If you have any services created prior to this release, it is strongly suggested that you regenerate the services (including XmlBeans-generated types) to a 
+		<note>If you have any services created prior to this release, it is strongly suggested that you regenerate the services  to a 
 		clean directory and manually port any added code to the newly generated files. This will avoid any problems associated with the changes in this release.</note>
 		<section>
 			<title>Change History</title>
+			<p>Changes since the 1.0 release:</p>
+			<ul>				
+				<li>Some API changes</li>
+				<li>Various refactorings and bug fixes</li>
+				<li>New config file format, we've removed jndi-config.xml in favor of Spring.  Please see the <a href="dev_guide/index.html">Developer's Guide</a> for more information.</li>
+				<li>WS-Metadata GET operation is no longer implemented.  This method will be generated as an abstract method and left to the developer to implement.  Please see the <a href="dev_guide/index.html">Developer's Guide</a> for more information.</li>
+			</ul>
 			<p>Changes since the 1.0 Beta release:</p>
 			<ul>
 				<li>Removed the <code>getInstance(..)</code> method from the generated Home classes. The init() method should be used for initializing Resources at startup.