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/08/11 03:29:19 UTC

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

dug         01/08/10 18:29:19

  Modified:    java/src/org/apache/axis/client ServiceClient.java
  Log:
  There's a setRequestMessage on serviceClient so to be consistent
  I added a getResponseMessage
  
  Revision  Changes    Path
  1.38      +9 -0      xml-axis/java/src/org/apache/axis/client/ServiceClient.java
  
  Index: ServiceClient.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/client/ServiceClient.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- ServiceClient.java	2001/08/04 04:19:34	1.37
  +++ ServiceClient.java	2001/08/11 01:29:19	1.38
  @@ -321,6 +321,15 @@
       }
       
       /**
  +     * Directly get the response message in our MessageContext.
  +     * 
  +     * Shortcut for having to go thru the msgContext
  +     */
  +    public void getResponseMessage() {
  +        msgContext.getResponseMessage();
  +    }
  +    
  +    /**
        * Determine whether we'd like to track sessions or not.
        * 
        * This just passes through the value into the MessageContext.