You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2004/03/21 19:48:58 UTC

cvs commit: ws-axis/java/src/org/apache/axis/handlers/soap SOAPService.java

dims        2004/03/21 10:48:58

  Modified:    java/src/org/apache/axis/handlers/soap SOAPService.java
  Log:
  Fix for Bug AXIS-1250 - SOAPService make AxisFault from SOAPFaultException
  
  Revision  Changes    Path
  1.111     +1 -1      ws-axis/java/src/org/apache/axis/handlers/soap/SOAPService.java
  
  Index: SOAPService.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/handlers/soap/SOAPService.java,v
  retrieving revision 1.110
  retrieving revision 1.111
  diff -u -r1.110 -r1.111
  --- SOAPService.java	25 Feb 2004 14:02:40 -0000	1.110
  +++ SOAPService.java	21 Mar 2004 18:48:58 -0000	1.111
  @@ -497,7 +497,7 @@
               }
           } catch (SOAPFaultException e) {
               msgContext.setPastPivot(true);
  -            throw new AxisFault(e.getMessage());
  +            throw AxisFault.makeFault(e);
               
           } catch (RuntimeException e) {
               SOAPFault fault = new SOAPFault(new AxisFault("Server", "Server Error", null, null));