成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

C#中networkcomms3.0實現(xiàn)模擬登陸的方法-創(chuàng)新互聯(lián)

小編給大家分享一下C#中networkcomms3.0實現(xiàn)模擬登陸的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

網(wǎng)站建設哪家好,找成都創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、微信小程序開發(fā)、集團企業(yè)網(wǎng)站建設等服務項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了石龍免費建站歡迎大家使用!

最近項目需要做一個客戶查詢狀態(tài)系統(tǒng),當前上位機缺少服務功能,于是找到了networkcomms 開源框架,作為項目使用.

最新版networkcomms 下載地址:https://github.com/MarcFletcher/NetworkComms.Net

下載直接vs打開

新建服務器端

C#中networkcomms3.0實現(xiàn)模擬登陸的方法

using MessageContract;
using NetworkCommsDotNet;
using NetworkCommsDotNet.Connections;
using NetworkCommsDotNet.Connections.TCP;
using NetworkCommsDotNet.DPSBase;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Net;
using System.Text;
using System.Windows.Forms;
namespace AppServer
{
  public partial class MaiForm : Form
  {
    public MaiForm()
    {
      InitializeComponent();
    }
    SendReceiveOptions aboveOptions = new SendReceiveOptions(DPSManager.GetDataSerializer<ProtobufSerializer>(), null, null);
    private void button1_Click(object sender, EventArgs e)
    {
      //服務器開始監(jiān)聽客戶端的請求
      Connection.StartListening(ConnectionType.TCP, new IPEndPoint(IPAddress.Parse(txtIP.Text), int.Parse(txtPort.Text)));
      //服務器開始監(jiān)聽客戶端的請求      
      //IPEndPoint thePoint = new IPEndPoint(IPAddress.Parse(txtIP.Text), int.Parse(txtPort.Text));
      //TCPConnection.StartListening(thePoint, false);
      button1.Text = "監(jiān)聽中";
      button1.Enabled = false;
      //button1.Text = "監(jiān)聽中";
      //button1.Enabled = false;
      //此方法中包含服務器具體的處理方法。
      StartListening();
    }
    private void StartListening()
    {
      //開啟日志記錄 
      //配置日志記錄器
      //ILogger logger = new LiteLogger(LiteLogger.LogMode.ConsoleAndLogFile, "ServerLogFile_" + NetworkComms.NetworkIdentifier + ".txt");
      //NetworkComms.EnableLogging(logger);
      //禁用日志記錄 服務器端正式使用時,贏禁用日志記錄
      NetworkComms.DisableLogging();
      //服務器端處理收到的消息
      //為簡單起見,此示例中我們只處理字符類型的信息,也返回字符類型的信息。
      //處理的信息可以使自定義類,具體見下一個Demo
      NetworkComms.AppendGlobalIncomingPacketHandler<LoginContract>("ReqLogin", IncomingLoginRequest);
    }
    //處理某個具體的請求
    private void IncomingLoginRequest(PacketHeader header, Connection connection, LoginContract loginContract)
    {
      try
      {
        string resMsg = "";
        //為了簡單,這里不調(diào)用數(shù)據(jù)庫,而是模擬一下登錄
        if (loginContract.UserID == "1000" && loginContract.PassWord == "123")
          resMsg = "登錄成功";
        else
          resMsg = "用戶名密碼錯誤";
        //把返回結(jié)果寫入到契約類中,后面返回給客戶端
        //ResMsgContract contract = new ResMsgContract();
        //contract.Message = resMsg;
        //connection.SendObject<ResMsgContract>("ResLogin", contract);
        ResMsgContract contract = new ResMsgContract();
        contract.Message = resMsg;
        connection.SendObject("ResLogin", contract);
      }
      catch (Exception ex)
      {
        // LogTools.LogException(ex, "IncomingMsgHandle");
      }
    }
  }
}

在別的幫助中往往少了這行:導致出現(xiàn)客戶端發(fā)送時,類型打包出現(xiàn)問題. 這行代碼是客戶端服務器兩端都要加上的,是指定傳輸方式

 SendReceiveOptions aboveOptions = new SendReceiveOptions(DPSManager.GetDataSerializer<ProtobufSerializer>(), null, null);

就是這個報錯了

C#中networkcomms3.0實現(xiàn)模擬登陸的方法

一下是客戶端

C#中networkcomms3.0實現(xiàn)模擬登陸的方法

using MessageContract;
using NetworkCommsDotNet;
using NetworkCommsDotNet.Connections;
using NetworkCommsDotNet.Connections.TCP;
using NetworkCommsDotNet.DPSBase;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace AppClient
{
  public partial class MainForm : Form
  {
    public MainForm()
    {
      InitializeComponent();
    }
    //連接信息對象
    public ConnectionInfo connInfo = null;
    //連接對象
    Connection newTcpConnection;
    SendReceiveOptions aboveOptions = new SendReceiveOptions(DPSManager.GetDataSerializer<ProtobufSerializer>(), null, null);
    private void button1_Click(object sender, EventArgs e)
    {
      //給連接信息對象賦值
      connInfo = new ConnectionInfo(txtIP.Text, int.Parse(txtPort.Text));
      //如果不成功,會彈出異常信息
      newTcpConnection = TCPConnection.GetConnection(connInfo);
      button1.Enabled = false;
      button1.Text = "連接成功";
    }
    private void btnlogin_Click(object sender, EventArgs e)
    {
      //給契約類賦值
      LoginContract contract = new LoginContract(txtUserName.Text, txtPassword.Text);
      //contract.UserID = txtUserName.Text;
      //contract.PassWord = txtPassword.Text;
      //向服務器發(fā)送登錄信息并獲取登錄結(jié)果
       ResMsgContract resMsg = newTcpConnection.SendReceiveObject<LoginContract, ResMsgContract>("ReqLogin", "ResLogin", 5000, contract);
      //向服務器發(fā)送登錄信息并獲取登錄結(jié)果
      // ResMsgContract resMsg = newTcpConnection.SendReceiveObject<ResMsgContract>("ReqLogin", "ResLogin", 5000, contract);
      if (resMsg.Message == "登錄成功")
      {
        MessageBox.Show("登錄成功");
      }
      else
      {
        MessageBox.Show("用戶名密碼錯誤");
      }
    }
  }
}

契約類

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MessageContract
{
  [ProtoContract]
  public class LoginContract
  {
    [ProtoMember(1)]
    public string UserID { get; set; }
    [ProtoMember(2)]
    public string PassWord { get; set; }
    public LoginContract() { }
    public LoginContract(string userID, string passWord)
    {
      this.UserID = userID;
      this.PassWord = passWord;
    }
  }
}
using ProtoBuf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MessageContract
{
  [ProtoContract]
  public class ResMsgContract
  {
    [ProtoMember(1)]
    public string Message;
    public ResMsgContract() { }
    public ResMsgContract(string message)
    {
      this.Message = message;
    }
  }
}

注意:

使用這個框架要配合谷歌的protobuf   要選好版本.本人沒重復測試最高版本,因為在調(diào)試登錄過程中出現(xiàn)別的問題過程中,也順改了protobuf 的版本,至今未測試最高版本是否存在兼容問題.本人成功的使用的是2.0.0.668

protobuf簡介protobuf是google提供的一個開源序列化框架,類似于XML,JSON這樣的數(shù)據(jù)表示語言,其大的特點是基于二進制,因此比傳統(tǒng)的XML表示高效短小

vs nuget添加方式

C#中networkcomms3.0實現(xiàn)模擬登陸的方法

輸入

C#中networkcomms3.0實現(xiàn)模擬登陸的方法

版本選擇自己指定一下,加大項目的契約類里邊.這是自己定義傳輸對象的方式.

C#中networkcomms3.0實現(xiàn)模擬登陸的方法

結(jié)果:

C#中networkcomms3.0實現(xiàn)模擬登陸的方法

以上是C#中networkcomms3.0實現(xiàn)模擬登陸的方法的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)成都網(wǎng)站設計公司行業(yè)資訊頻道!

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。

文章標題:C#中networkcomms3.0實現(xiàn)模擬登陸的方法-創(chuàng)新互聯(lián)
鏈接URL:http://jinyejixie.com/article8/deheip.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、網(wǎng)站導航、網(wǎng)頁設計公司、定制開發(fā)外貿(mào)建站、域名注冊

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

微信小程序開發(fā)
嵊泗县| 敖汉旗| 铜川市| 登封市| 丰镇市| 大方县| 日喀则市| 遂昌县| 都兰县| 陕西省| 永川市| 海阳市| 濮阳县| 康平县| 沁源县| 株洲县| 望江县| 鸡泽县| 潢川县| 都安| 荣昌县| 馆陶县| 合山市| 南溪县| 巴林左旗| 郸城县| 尼勒克县| 公安县| 金平| 土默特左旗| 汕头市| 玛沁县| 轮台县| 富源县| 高邑县| 维西| 台湾省| 天峻县| 波密县| 若羌县| 安康市|