gdaniels    2002/07/02 09:07:29

  Modified:    java     README release-notes.html
               java/src/org/apache/axis/providers/java RPCProvider.java
  Log:
  Tiny bit of cleanup in RPCProvider, fix release notes and README for
  beta-3.
  
  Revision  Changes    Path
  1.11      +1 -1      xml-axis/java/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/README,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- README    15 Mar 2002 10:19:35 -0000      1.10
  +++ README    2 Jul 2002 16:07:29 -0000       1.11
  @@ -1,6 +1,6 @@
                Axis (Apache eXtensible Interaction System)
                -------------------------------------------
  -             Beta 1 Release               March 15, 2002
  +             Beta 3 Release                 July 3, 2002
   
   Welcome to Axis!  You'll find documentation in the docs/ directory.
   
  
  
  
  1.9       +19 -10    xml-axis/java/release-notes.html
  
  Index: release-notes.html
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/release-notes.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- release-notes.html        7 Jun 2002 19:33:17 -0000       1.8
  +++ release-notes.html        2 Jul 2002 16:07:29 -0000       1.9
  @@ -14,16 +14,21 @@
   </style>
   </head>
   <body>
  -<h2>Axis Beta 2 Release Notes</h2>
  +<h2>Axis Beta 3 Release Notes</h2>
   
  -<p>This is the <a href="http://xml.apache.org/axis/releases.html";> beta 2 
release</a> 
  -  of the <a href="http://xml.apache.org/axis";> Axis SOAP library</a>. (Wondering 
  -  what Axis is? Please see our <a 
href="http://xml.apache.org/axis/faq.html";>FAQ</a>.)</p>
  -<h3>General Beta 2 Information</h3>
  +<p>This is the <a href="http://xml.apache.org/axis/releases.html";>beta 3 
release</a> 
  +  of the <a href="http://xml.apache.org/axis";> Axis SOAP library</a>.</p>
   
  -<p>This is a beta release.  Most of the functionality is there.  There is still a 
chance that a few interfaces may change, but we will do our best to keep that from 
happening.  See the User's Guide for a list of the published interfaces that we 
believe are stable.  This beta release is closer to JAX-RPC compliance than the alpha, 
but JAX-RPC is still a moving target, so those interfaces still have the potential to 
change.</p>
  +<h3>General Beta 3 Information</h3>
   
  -<p>Why AXIS over SOAP 2.2?  The Axis code has:</p>
  +<p>This is a beta release.  Most of the functionality is there.  There is still a 
chance that a few interfaces may change, but we will do our best to keep that from 
happening.  See the User's Guide for a list of the published interfaces that we 
believe are stable.</p>
  +
  +<h3>JAX-RPC</h3>
  +<p>This beta release is intended to be 100% compliant with the <a 
href="http://java.sun.com/xml/jax-rpc";>JAX-RPC</a> and <a 
href="http://java.sun.com/xml/saaj/";>SAAJ</a> specifications from Sun, though there 
are still a few known issues.  The Axis team is currently working on getting the 
codebase to pass the TCK (Technology Compatibility Kit) tests, which involves both 
tweaks to our code and resolving perceived issues with the TCK or the specs - since 
these are v1.0 specs, there are some interesting conversations going on, but we'll get 
to compliance as soon as possible!</p>
  +
  +<h3>Why AXIS over SOAP 2.2?</h3>
  +
  +<p>The Axis code has:</p>
   
   <ul>
     <li>Significantly higher performance than Apache SOAP 2.2 
  @@ -35,10 +40,12 @@
     <li>An extensive package and functional test suite 
   </ul>
   
  -<p>Early adopters and advanced SOAP developers will find this release to be of 
  -  interest. Most Apache SOAP users, and those who need a fully featured 
next-version 
  -  replacement for Apache SOAP 2.2, may wish to use this beta, but they should be 
aware that, as a beta, functionality and interfaces may change, though we will do our 
best to minimize the impact of such changes.</p>
   <h3>What's New?</h3>
  +<p>Changes since beta-2:</p>
  +<ul>
  + <li>Support for the new version of the DIME spec
  + <li><i>More...</i>
  +</ul>
   <p>Changes since alpha-3:</p>
   <ul>
     <li>Closer to JAX-RPC compliance.</li>
  @@ -48,6 +55,8 @@
     <li>Now using the org.apache.commons.logging APIs as a common logging 
interface.</li>
     <li>Many minor bug fixes.</li>
   </ul>
  +
  +<p>Please check out the included documentation and the <a 
href="http://xml.apache.org/axis/faq.html";>FAQ</a> for more information.</a>
   </body>
   </html>
   
  
  
  
  1.70      +7 -7      
xml-axis/java/src/org/apache/axis/providers/java/RPCProvider.java
  
  Index: RPCProvider.java
  ===================================================================
  RCS file: 
/home/cvs/xml-axis/java/src/org/apache/axis/providers/java/RPCProvider.java,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- RPCProvider.java  1 Jul 2002 17:40:34 -0000       1.69
  +++ RPCProvider.java  2 Jul 2002 16:07:29 -0000       1.70
  @@ -295,10 +295,10 @@
   
       /**
        * This method encapsulates the method invocation.             
  -     * @param MessageContext
  -     * @param Method is the target method.   
  -     * @param Object is the target object 
  -     * @param Object[] are the method arguments
  +     * @param msgContext MessageContext
  +     * @param method the target method.
  +     * @param obj the target object
  +     * @param argValues the method arguments
        */
       protected Object invokeMethod(MessageContext msgContext,
                                     Method method, Object obj,
  @@ -310,9 +310,9 @@
   
       /**
        * Throw an AxisFault if the requested method is not allowed.
  -     * @param MessageContext
  -     * @param String list of allowed methods
  -     * @param String name of target method
  +     * @param msgContext MessageContext
  +     * @param allowedMethods list of allowed methods
  +     * @param methodName name of target method
        */
       protected void checkMethodName(MessageContext msgContext,
                                      String allowedMethods,
  
  
  


Reply via email to