Beispiel #1
0
        public void WrongAddress()
        {
            this.service = JsonRpcClientProxy <TestService> .Create("nosuchhost", 1666);

            this.service.test();
        }
Beispiel #2
0
 public void Init()
 {
     Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
     this.service = JsonRpcClientProxy <TestService> .Create("localhost", 1666);
 }
Beispiel #3
0
        public void WrongPort()
        {
            this.service = JsonRpcClientProxy <TestService> .Create("localhost", 1333);

            this.service.test();
        }