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 ke...@apache.org on 2007/10/12 13:10:59 UTC

svn commit: r584134 - /webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java

Author: keithc
Date: Fri Oct 12 04:10:58 2007
New Revision: 584134

URL: http://svn.apache.org/viewvc?rev=584134&view=rev
Log:
Should throw the AxisFault instead of swallowing it.


Modified:
    webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java

Modified: webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java?rev=584134&r1=584133&r2=584134&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java (original)
+++ webservices/axis2/branches/java/1_3_post_mods/modules/kernel/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java Fri Oct 12 04:10:58 2007
@@ -295,6 +295,7 @@
             }
         } catch (AxisFault axisFault) {
             log.error(axisFault.getMessage(), axisFault);
+            throw axisFault;
         }
     }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org