Return-Path: Delivered-To: apmail-xml-axis-dev-archive@xml.apache.org Received: (qmail 97783 invoked by uid 500); 18 Dec 2002 10:49:11 -0000 Mailing-List: contact axis-dev-help@xml.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@xml.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-dev@xml.apache.org Received: (qmail 97773 invoked by uid 500); 18 Dec 2002 10:49:11 -0000 Delivered-To: apmail-xml-axis-wsif-cvs@apache.org Date: 18 Dec 2002 10:49:10 -0000 Message-ID: <20021218104910.43027.qmail@icarus.apache.org> From: owenb@apache.org To: xml-axis-wsif-cvs@apache.org Subject: cvs commit: xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apachesoap WSIFOperation_ApacheSOAP.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N owenb 2002/12/18 02:49:10 Modified: java/src/org/apache/wsif/providers/soap/apachesoap WSIFOperation_ApacheSOAP.java Log: Do not trace the full exception stack when a http username or password is not found in the message Revision Changes Path 1.35 +2 -2 xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apachesoap/WSIFOperation_ApacheSOAP.java Index: WSIFOperation_ApacheSOAP.java =================================================================== RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/providers/soap/apachesoap/WSIFOperation_ApacheSOAP.java,v retrieving revision 1.34 retrieving revision 1.35 diff -u -r1.34 -r1.35 --- WSIFOperation_ApacheSOAP.java 16 Dec 2002 15:45:50 -0000 1.34 +++ WSIFOperation_ApacheSOAP.java 18 Dec 2002 10:49:09 -0000 1.35 @@ -1523,7 +1523,7 @@ addHTTPHeader(call, name, (String) o); } } catch (WSIFException ex) { - Trc.exception(ex); + Trc.ignoredException(ex); addHTTPHeader(call, name, null); } @@ -1534,7 +1534,7 @@ addHTTPHeader(call, name, (String) o); } } catch (WSIFException ex) { - Trc.exception(ex); + Trc.ignoredException(ex); addHTTPHeader(call, name, null); }