Bug 2752

Summary: Cannot use the same ORBlistenEndpoint again when restarting an ORB
Product: TAO Reporter: Joe Seward <joseph.f.seward>
Component: ORBAssignee: DOC Center Support List (internal) <tao-support>
Status: NEW ---    
Severity: minor    
Priority: P4    
Version: 1.5.1   
Hardware: x86   
OS: Windows XP   
Attachments: Changes to Hello/server.cpp
Changes to Hello/client.cpp
Unified patch without white-space changes
Output of test w/ ORB debugging

Description Joe Seward 2006-12-15 15:25:20 CST
If a process initializes an ORB with a specific listen endpoint, it doesn't seem
to be able to use that same endpoint again if it goes through a
destroy()/ORB_init() cycle.  We want to be able to restart the ORB without
shutting down the process, and can only do so by changing the listen endpoint. 
An empty orbID string is being passed to the ORB_init() call, and destroy() is
definitely being called between ORB_init() calls.

Is the ORB keeping some socket resources open, or possibly the OS is doing it?

I have reproduced the problem using the TAO Hello test and can attach that if
needed.  Thanks
Comment 1 Iliyan Jeliazkov 2006-12-15 15:30:20 CST
Could you please post your modifications as a patch, please?
Comment 2 Joe Seward 2006-12-15 15:46:06 CST
Created attachment 638 [details]
Changes to Hello/server.cpp
Comment 3 Joe Seward 2006-12-15 15:46:45 CST
Created attachment 639 [details]
Changes to Hello/client.cpp
Comment 4 Joe Seward 2006-12-15 15:47:44 CST
That should be it.
Comment 5 Iliyan Jeliazkov 2006-12-15 15:59:39 CST
I am sorry, but your changes seem to be too extensive for me to grok, at the
moment. I would suggest trying to somehow limit them, while preserving the
essence of what you want to demonstrate.

Also, use "unified" diff _and_ include all changed files in a single patch.
Otherwise, it might take more time to understand your changes than one can spare
(for free, that is :)) ...

HTH,

--Iliyan
Comment 6 Joe Seward 2006-12-18 13:01:08 CST
Created attachment 640 [details]
Unified patch without white-space changes
Comment 7 Iliyan Jeliazkov 2006-12-18 14:44:26 CST
Joe,

Thanks for the patch. Could you please, also submit the output you are receiving
on the console from running your modified test? 

Also, if you could run with "-ORBDebugLevel 10 -ORBVerboseLogging 2" for both
the client and the server.

Thanks for your help,

--Iliyan
Comment 8 Joe Seward 2006-12-18 16:14:02 CST
Created attachment 641 [details]
Output of test w/ ORB debugging