[jboss-cvs] JBossAS SVN: r61867 - trunk/ejb3/src/main/org/jboss/ejb3/stateful.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Mar 29 17:35:18 EDT 2007


Author: bstansberry at jboss.com
Date: 2007-03-29 17:35:18 -0400 (Thu, 29 Mar 2007)
New Revision: 61867

Modified:
   trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulClusterProxyFactory.java
   trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulRemoteProxyFactory.java
Log:
[JBAS-4272] Use the correct name in Dispatcher.unregisterTarget

Modified: trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulClusterProxyFactory.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulClusterProxyFactory.java	2007-03-29 21:26:48 UTC (rev 61866)
+++ trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulClusterProxyFactory.java	2007-03-29 21:35:18 UTC (rev 61867)
@@ -163,7 +163,7 @@
    
    public void stop() throws Exception
    {
-      Dispatcher.singleton.unregisterTarget(jndiName + PROXY_FACTORY_NAME);
+      Dispatcher.singleton.unregisterTarget(getTargetId());
       hatarget.destroy();
       ((StatefulContainer) container).getClusterFamilies().remove(proxyFamilyName);
       Util.unbind(container.getInitialContext(), jndiName + PROXY_FACTORY_NAME);

Modified: trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulRemoteProxyFactory.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulRemoteProxyFactory.java	2007-03-29 21:26:48 UTC (rev 61866)
+++ trunk/ejb3/src/main/org/jboss/ejb3/stateful/StatefulRemoteProxyFactory.java	2007-03-29 21:35:18 UTC (rev 61867)
@@ -141,7 +141,7 @@
    public void stop() throws Exception
    {
       Util.unbind(container.getInitialContext(), jndiName + PROXY_FACTORY_NAME);
-      Dispatcher.singleton.unregisterTarget(jndiName + PROXY_FACTORY_NAME);
+      Dispatcher.singleton.unregisterTarget(getTargetId());
       
       StatefulContainer statefulContainer = (StatefulContainer) container;
       RemoteHome remoteHome = (RemoteHome) statefulContainer.resolveAnnotation(RemoteHome.class);




More information about the jboss-cvs-commits mailing list