Example #1
0
        string IDarPoolingMobile.HandleDarPoolingMobileRequest(Command c)
        {
            Console.WriteLine("{0} Received Mobile Request", LogTimestamp);
            string requestID = mainServiceImpl.generateGUID();

            c.CommandID = requestID;

            // Handle the command using the main service.
            mainServiceImpl.HandleMobileDarPoolingRequest(c);

            Console.WriteLine("Returning Request ID to client");
            //string requestIDTest = DateTime.Now.ToString();
            //return requestIDTest;
            return(requestID);
        }