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 gd...@apache.org on 2001/02/09 08:25:28 UTC

cvs commit: xml-axis/java/src/org/apache/axis/handlers ServiceHandler.java

gdaniels    01/02/08 23:25:27

  Modified:    java/src/org/apache/axis/handlers ServiceHandler.java
  Log:
  Set MC_SVC_HANDLER in invoke(), so it's correct.
  
  Revision  Changes    Path
  1.4       +3 -0      xml-axis/java/src/org/apache/axis/handlers/ServiceHandler.java
  
  Index: ServiceHandler.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/handlers/ServiceHandler.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ServiceHandler.java	2001/01/28 18:05:34	1.3
  +++ ServiceHandler.java	2001/02/09 07:25:26	1.4
  @@ -85,6 +85,9 @@
     }
   
     public void invoke(MessageContext msgContext) throws AxisFault {
  +    // Let our "real" handler know where we are, so it can get options.
  +    msgContext.setProperty( Constants.MC_SVC_HANDLER, this );
  +        
       handler.invoke(msgContext);
     }