From 00bb769d177b68dd8554928e93de970ae1f28d23 Mon Sep 17 00:00:00 2001 From: slaws Date: Sat, 18 Jul 2009 08:19:12 +0000 Subject: TUSCANY-3149 - Generally be more careful about removing object references in host-webapp. Specifically there is a problem with the axis ws binding (JIRA 3732 in the Axis project) where a shutdown hook is registered but not removed. This is fixed in Axis2 1.5 but as we are still in 1.4.1 I've worked round it here. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@795323 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/tuscany/sca/host/embedded/impl/DefaultSCADomain.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'branches/sca-java-1.5.1/modules/host-embedded') diff --git a/branches/sca-java-1.5.1/modules/host-embedded/src/main/java/org/apache/tuscany/sca/host/embedded/impl/DefaultSCADomain.java b/branches/sca-java-1.5.1/modules/host-embedded/src/main/java/org/apache/tuscany/sca/host/embedded/impl/DefaultSCADomain.java index 080a60f575..9b02ee9fa2 100644 --- a/branches/sca-java-1.5.1/modules/host-embedded/src/main/java/org/apache/tuscany/sca/host/embedded/impl/DefaultSCADomain.java +++ b/branches/sca-java-1.5.1/modules/host-embedded/src/main/java/org/apache/tuscany/sca/host/embedded/impl/DefaultSCADomain.java @@ -213,7 +213,12 @@ public class DefaultSCADomain extends SCADomain { public void close() { super.close(); node.stop(); - + node = null; + client = null; + components.clear(); + compositeActivator = null; + applicationClassLoader = null; + componentManager = null; } @Override -- cgit v1.2.3