You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by du...@apache.org on 2001/02/12 14:00:03 UTC

cvs commit: xml-axis/java/src/org/apache/axis/client HTTPCall.java HTTPMessage.java

dug         01/02/12 05:00:03

  Modified:    java/src/org/apache/axis/client HTTPCall.java
                        HTTPMessage.java
  Log:
  Added a few more comments
  
  Revision  Changes    Path
  1.10      +3 -0      xml-axis/java/src/org/apache/axis/client/HTTPCall.java
  
  Index: HTTPCall.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/client/HTTPCall.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- HTTPCall.java	2001/02/12 01:11:12	1.9
  +++ HTTPCall.java	2001/02/12 13:00:03	1.10
  @@ -67,6 +67,9 @@
   import org.apache.axis.transport.http.HTTPDispatchHandler;
   
   /**
  + * This class is meant to be the interface that client/requestor code
  + * uses to access the SOAP server.  In this class, we'll use HTTP to
  + * connect to the server and send an RPC SOAP request.
    *
    * @author Doug Davis (dug@us.ibm.com)
    */
  
  
  
  1.7       +3 -0      xml-axis/java/src/org/apache/axis/client/HTTPMessage.java
  
  Index: HTTPMessage.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/client/HTTPMessage.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- HTTPMessage.java	2001/02/12 01:11:13	1.6
  +++ HTTPMessage.java	2001/02/12 13:00:03	1.7
  @@ -67,6 +67,9 @@
   import org.apache.axis.transport.http.HTTPDispatchHandler;
   
   /**
  + * This class is meant to be the interface that client/requestor code
  + * uses to access the SOAP server.  In this class, we'll use HTTP to
  + * connect to the server and send a Messaging SOAP request.
    *
    * @author Doug Davis (dug@us.ibm.com)
    */