Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 91167 invoked from network); 26 Oct 2006 05:36:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Oct 2006 05:36:26 -0000 Received: (qmail 92722 invoked by uid 500); 24 Oct 2006 09:09:57 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 92634 invoked by uid 500); 24 Oct 2006 09:09:57 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 92623 invoked by uid 500); 24 Oct 2006 09:09:57 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 92620 invoked by uid 99); 24 Oct 2006 09:09:57 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Oct 2006 02:09:57 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Oct 2006 02:09:45 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 28DDB1A9846; Tue, 24 Oct 2006 02:09:11 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r467285 - /webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/http/AdminAgent.java Date: Tue, 24 Oct 2006 09:09:10 -0000 To: axis2-cvs@ws.apache.org From: chamil@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061024090911.28DDB1A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chamil Date: Tue Oct 24 02:09:08 2006 New Revision: 467285 URL: http://svn.apache.org/viewvc?view=rev&rev=467285 Log: Adding code to clear out the IS_FAULTY session property before processing of the listSingleSerivice method. [Ref JIRA AXIS2-1337]. Modified: webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/http/AdminAgent.java Modified: webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/http/AdminAgent.java URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/http/AdminAgent.java?view=diff&rev=467285&r1=467284&r2=467285 ============================================================================== --- webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/http/AdminAgent.java (original) +++ webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/transport/http/AdminAgent.java Tue Oct 24 02:09:08 2006 @@ -490,6 +490,7 @@ protected void processListSingleService(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException { + req.getSession().setAttribute(Constants.IS_FAULTY, ""); //Clearing out any old values. String serviceName = req.getParameter("serviceName"); if (serviceName != null) { AxisService service = configContext.getAxisConfiguration().getService(serviceName); --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org