You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsif-dev@ws.apache.org by ow...@apache.org on 2003/09/18 11:56:57 UTC

cvs commit: xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis WSIFOperation_ApacheAxis.java

owenb       2003/09/18 02:56:57

  Modified:    java/src/org/apache/wsif/providers/soap/apacheaxis
                        WSIFOperation_ApacheAxis.java
  Log:
  Set exception in fault message even when the operation has no output parts.
  Patch submitted by Dan Kristensen
  
  Revision  Changes    Path
  1.88      +2 -2      xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFOperation_ApacheAxis.java
  
  Index: WSIFOperation_ApacheAxis.java
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFOperation_ApacheAxis.java,v
  retrieving revision 1.87
  retrieving revision 1.88
  diff -u -r1.87 -r1.88
  --- WSIFOperation_ApacheAxis.java	26 Aug 2003 09:30:35 -0000	1.87
  +++ WSIFOperation_ApacheAxis.java	18 Sep 2003 09:56:57 -0000	1.88
  @@ -1612,9 +1612,9 @@
                           outParams.put(qn.getLocalPart(), callParams.get(qn));
                       }
                       setResponseMessageParameters(outParams);
  -                }
  -                respOK = buildResponseMessages(response, outMsg, faultMsg);
  +                }                
               }
  +			respOK = buildResponseMessages(response, outMsg, faultMsg);
               setResponseUnreferencedAttachments(call, outMsg);
           }