[JBoss-user] [Beginners Corner] - Re: corba tcp connection remains after destoying the orb and

2005-04-14 Thread anguyen
Perhaps the connections are remaining open until _ncRef and _server are garbage 
collected.  You can try changing your destroy() method to:

  | if (_server != null) {
  |   _server._release();
  |   _server = null;
  | }
  | if (_ncRef != null) {
  |   _ncRef._release();
  |   _ncRef = null;
  |   _nameService = null;
  | }
  | _orb.shutdown(true);
  | _orb.destroy();
  | _orb = null;
  | 
I think destroying the ORB only releases connections from object adaptors that 
you've registered with the ORB.  I don't think it closes any connections 
obtained from references to remote services.  I could be wrong.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873916#3873916

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873916


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: corba tcp connection remains after destoying the orb

2005-04-14 Thread SunFire
anguyen wrote : Perhaps the connections are remaining open until _ncRef and 
_server are garbage collected.
  | 
I tried it now but it does not work. :( The connections are still there even 
after a call to the _release() methods and to System.gc().


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3873972#3873972

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3873972


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user