Return-Path: Delivered-To: apmail-incubator-cxf-issues-archive@locus.apache.org Received: (qmail 81500 invoked from network); 13 Feb 2008 05:20:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Feb 2008 05:20:31 -0000 Received: (qmail 23753 invoked by uid 500); 13 Feb 2008 05:20:25 -0000 Delivered-To: apmail-incubator-cxf-issues-archive@incubator.apache.org Received: (qmail 23745 invoked by uid 500); 13 Feb 2008 05:20:25 -0000 Mailing-List: contact cxf-issues-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-issues@incubator.apache.org Received: (qmail 23736 invoked by uid 99); 13 Feb 2008 05:20:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Feb 2008 21:20:25 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Feb 2008 05:19:47 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 2D1A7714075 for ; Tue, 12 Feb 2008 21:20:08 -0800 (PST) Message-ID: <7246308.1202880008181.JavaMail.jira@brutus> Date: Tue, 12 Feb 2008 21:20:08 -0800 (PST) From: "Bharath Ganesh (JIRA)" To: cxf-issues@incubator.apache.org Subject: [jira] Created: (CXF-1429) Memory Leak at PolicyEngineImpl MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Memory Leak at PolicyEngineImpl ------------------------------- Key: CXF-1429 URL: https://issues.apache.org/jira/browse/CXF-1429 Project: CXF Issue Type: Bug Components: WS-* Components Affects Versions: 2.0.2 Reporter: Bharath Ganesh Certain data structures in CXF PolicyEngineImpl were holding reference to EndpointInfo, EndpointPolicy, BindingInfo etc. Clean up all the data structures during application stop, that keep a reference to the EndpointInfo object or which have EndpointInfo as the key. Map of (EndpointInfo vs EndpointPolicy) maintained at PolicyEngineImpl. The client and server EndpointInfo's get added to this map. So while the server endpoint is stopped, we need to identify all the client EndpointInfos pertaining to this Server EndpointInfo, and cleanup them. See the overridden remove() method of endpointInfo map. Attached a patch sources on CXF 2.0.2. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.