You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-dev@ws.apache.org by du...@locus.apache.org on 2000/07/28 02:54:05 UTC

cvs commit: xml-soap/java ReleaseNotes.html build.xml

duftler     00/07/27 17:54:05

  Modified:    java     ReleaseNotes.html build.xml
  Log:
  Getting ready for v2.0 Release Candidate 1.
  
  Revision  Changes    Path
  1.3       +9 -11     xml-soap/java/ReleaseNotes.html
  
  Index: ReleaseNotes.html
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/ReleaseNotes.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ReleaseNotes.html	2000/06/01 16:39:24	1.2
  +++ ReleaseNotes.html	2000/07/28 00:54:04	1.3
  @@ -9,9 +9,9 @@
   
   <body bgcolor="#FFFFFF">
   
  -<h1 align="center">XML-SOAP v1.2 Release Notes</h1>
  +<h1 align="center">XML-SOAP v2.0 Release Notes</h1>
   
  -<p align="center">May 25, 2000.</p>
  +<p align="center">July 27, 2000.</p>
   
   <h2 align="left">Table of Contents</h2>
   
  @@ -57,25 +57,23 @@
           managing and running SOAP enabled services</li>
       <li>Provides client-side API for invoking SOAP services</li>
       <li>Release includes full source under the <em>Apache Software License</em></li>
  -    <li>Supports three encoding styles: SOAP v1.1 Encoding, <img
  -        src="doc/new.gif"> Literal XML and XMI.</li>
  +    <li>Supports three encoding styles: SOAP v1.1 Encoding, Literal XML and XMI.</li>
       <li>XMI encoding (available when using Java 1.2.2) supports
           automatic marshalling and unmarshalling of arbitrary
           objects</li>
       <li>SOAP encoding: built-in support is provided for
           encoding/decoding primitive types, Strings, arbitrary
  -        JavaBeans (using reflection) and <img src="doc/new.gif">
  -        1-dimensional arrays of these types. For other types user
  -        can hand-write encoder/decoder and register with XML-SOAP
  -        runtime.</li>
  -    <li><img src="doc/new.gif"> Literal XML encoding: allows one
  +        JavaBeans (using reflection) and 1-dimensional arrays of
  +        these types. For other types user can hand-write
  +        encoder/decoder and register with XML-SOAP runtime.</li>
  +    <li>Literal XML encoding: allows one
           to send XML elements (DOM org.w3c.dom.Element objects) as
           parameters by embedding the literal XML serialization of
           the DOM tree. No code needs to be written to support this
           (see the addressbook demo to see a sample use of it).</li>
       <li>Supports messaging and RPC over two transports: HTTP and
           SMTP</li>
  -    <li><img src="doc/new.gif"> Supports authoring services in
  +    <li>Supports authoring services in
           scripting languages</li>
   </ul>
   
  @@ -215,7 +213,7 @@
   
   <p>XML-SOAP provides an administration tool to manage services.
   There are two clients to service manager: an HTML one used via a
  -browser and a <img src="doc/new.gif"> command-line tool. </p>
  +browser and a command-line tool. </p>
   
   <p>NOTE: If you had previously deployed services to an XML-SOAP
   server, then this version will not recognize those services
  
  
  
  1.4       +6 -8      xml-soap/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml	2000/06/15 19:23:29	1.3
  +++ build.xml	2000/07/28 00:54:05	1.4
  @@ -38,7 +38,7 @@
   Copyright:
     Copyright (c) 2000 Apache Software Foundation.
   
  -   $Id: build.xml,v 1.3 2000/06/15 19:23:29 sanjiva Exp $
  +   $Id: build.xml,v 1.4 2000/07/28 00:54:05 duftler Exp $
   
   ==================================================================== -->
   
  @@ -47,7 +47,7 @@
     <target name="init">
       <property name="name" value="soap"/>
       <property name="Name" value="Soap"/>
  -    <property name="version" value="1.2"/>
  +    <property name="version" value="2.0"/>
       <property name="year" value="2000"/>
   
       <property name="build.compiler" value="classic"/>
  @@ -139,16 +139,14 @@
       <mkdir dir="${dist.dir}/lib"/>
       <mkdir dir="${dist.dir}/samples"/>
       <mkdir dir="${dist.dir}/webapps"/>
  +    <mkdir dir="${dist.dir}/webapps/admin"/>
  +    <mkdir dir="${dist.dir}/webapps/rpcrouter"/>
   
       <copydir src="${build.javadocs}" dest="${dist.dir}/docs/apiDocs"/>
       <copydir src="${build.lib}" dest="${dist.dir}/lib"/>
       <copydir src="${build.samples}" dest="${dist.dir}/samples"/>
  -    <copydir src="${src.dir}/org/apache/soap/server" 
  -             dest="${dist.dir}/webapps">
  -      <include name="*.html" />
  -      <include name="*.jsp" />
  -      <include name="*.gif" />
  -    </copydir>
  +    <copydir src="./webapps/admin" dest="${dist.dir}/webapps/admin"/>
  +    <copydir src="./webapps/rpcrouter" dest="${dist.dir}/webapps/rpcrouter"/>
   
       <copyfile src="LICENSE" dest="${dist.dir}/LICENSE"/>
       <copyfile src="README" dest="${dist.dir}/README"/>