Tcp服務測試工具

服務端配置文件api

 <system.runtime.remoting>
    <application>
      <service>
        <!--SingleCall activated wellknown-->
        <wellknown
           mode="Singleton" 
           type="Capinfo.BJMedicare.HospitalComponent.Service.CenterServer.CallProxy.RemotingService.ProxyObject,
HCS.CenterServer.CallProxy.RemotingService"
           objectUri="RemotingService.rem"
            />
      </service>
      <channels>
          <channel ref="tcp" port="9100" useIpAddress="true"/>
      </channels>
    </application>
    <customErrors mode="off"/>
  </system.runtime.remoting>

訪問服務器地址: tcp://127.0.0.1:9100/RemotingService.rem  地址由兩部分構成:IP端口 tcp://127.0.0.1:9100/  以及Uri:RemotingService.rem服務器

客戶端測試代碼:app

 private void btnTest_Click(object sender, EventArgs e)
    {
      try
      {
        string sFunctionCallWebServiceUrl = string.Format("tcp://{0}{1}", txtIP.Text, txtService.Text + "/RemotingService.rem");
        MarshalByRefObject obj = (MarshalByRefObject)Activator.GetObject(typeof(MarshalByRefObject), sFunctionCallWebServiceUrl);
        object o = obj.GetLifetimeService();
        MessageBox.Show("測試成功");
      }
      catch (System.Net.Sockets.SocketException ex)
      {
        MessageBox.Show(ex.Message);
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.Message);
      }
    }

因爲MarshalByRefObject 是全部訪問對象繼承的基礎,因此我想到用MarshalByRefObject來替代測試對象 實現測試效果。tcp

因爲只是測試TCP端口服務是否能夠連通 而不是測試服務的具體實現效果 因此這幾行簡單的代碼就能夠實現.測試

相關文章
相關標籤/搜索