I am using Distributed Object for client server communication. I am storing clients object on the server for further communication between clients. when client terminate it will notify server about termination using -(NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
method and server remove object of that client and notify other clients but if someone kill the client then how to notify server about termination?
Client server communication using Distributed Object
255 Views Asked by Parag Bafna At
1
See the section
Handling Connection Errors
in theDistributed Objects Programming Topics
. The NSConnection objects will handle that case.