示例#1
0
 static void Main(string[] args)
 {
     TTransport trans = new TSocket("localhost", 8585);
     trans = new TBufferedTransport(trans as TStreamTransport);
     trans.Open();
     TBinaryProtocol proto = new TBinaryProtocol(trans);
     helloSvc.Client client = new helloSvc.Client(proto);
     string result = client.getMessage("Ginger");
     Console.WriteLine("Received from server: " + result);
 }
示例#2
0
        static void Main(string[] args)
        {
            TTransport trans = new TSocket("localhost", 8585);

            trans = new TBufferedTransport(trans as TStreamTransport);
            trans.Open();
            TBinaryProtocol proto = new TBinaryProtocol(trans);

            helloSvc.Client client = new helloSvc.Client(proto);
            string          result = client.getMessage("Ginger");

            Console.WriteLine("Received from server: " + result);
        }