Exemplo n.º 1
0
 internal void ProcessLocateRequestMessage(Stream requestStream, MessageReceiveTask receiveTask)
 {
     // this called is completely handled by IIOP.NET
     // -> no servant will be called and therefore whole request is processed before reading next message
     try {
         m_receiver.ProcessLocateRequest(requestStream, m_serverCon);
         receiveTask.StartReceiveMessage();
     } catch (Exception ex) {
         HandleUnexpectedProcessingException();
         Trace.WriteLine("stopped processing on server connection after unexpected exception: " + ex);
     }
 }