【问题标题】:Is it possible to connect biometric device through modem to connect to an APN using GSM?是否可以通过调制解调器连接生物识别设备以使用 GSM 连接到 APN?
【发布时间】:2018-03-28 06:07:25
【问题描述】:

我正在使用 zketco gsm/gprs 生物识别设备。我尝试使用此 Zkemkeeper.dll 通过 gsm 进行连接。它适用于 tcp/ip 网络协议。我正在使用以下代码连接 tcp/ip 协议。

可以通过gsm连接吗?

private void btnConnect_Click(object sender, EventArgs e)
        {
            try
            {
                IsConnected = zkemKeeper.Connect_Net(txtIP.Text, 4370);
                if (IsConnected == true)
                {
                    MessageBox.Show("Device Connected Successfully.");
                }
                else
                {
                    zkemKeeper.GetLastError(ref ErrorCode);
                    MessageBox.Show("Device Not Found. Error Code : " + ErrorCode.ToString(), "Error");
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message.ToString());
            }
        }

【问题讨论】:

    标签: c# gsm fingerprint gprs biometrics


    【解决方案1】:

    最近的问题已在 stackoverflow 中发布。问题是:Is it possible to connect biometrics zkemkeeper using gsm in c#?

    此处发布的以下答案也适用于此处。

    提供zkemkeeper C# SDK 库来开发桌面应用程序。您应该将设备通过 TCP/IP 连接到应用程序。要将 gsm 设备从远程位置连接到您的 .Net 应用程序,您需要获得 web api 支持。参考http://camsunit.com/application/biometric-web-api.html的api文档

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2011-02-17
      • 2018-11-27
      • 2017-10-10
      • 2018-12-19
      • 1970-01-01
      • 1970-01-01
      • 2020-02-18
      • 2014-08-19
      相关资源
      最近更新 更多