Hello<br><br>I have the following code in my client and server applications<br><br>A client blocks in the second line<br> ServerToClient RequestToServer;<br> Accepted = RequestToServer.Request();<br><br>while the server is waiting the user to click "Yes" or "No" buttons of a MessageBox
<br> CORBA::Booelan ServerToClient_i::Request()<br> {<br> if ( Message.DoModal() == IDOK )<br> {<br> return true;<br> }<br> else<br> return false;<br> }<br><br>Then, could someone tell me what omniorb does if the TCP connection falls down while the message box is visible, but the user don't click any button? Does the thread dissapear?
<br><br>I have put a breakpoint where the client blocks itself, then I have disconnected the net wire of the server computer. I have connected it again, then press the "Ok" button of the messageBox, but the client application doesn't continue its ejecution.
<br><br>Thanks<br><br><br> <br>