MQTT实战3 - NetCore 2.0 + MQTTnet 3.0.9 实现mqtt通信

MQTT实战1 - 使用Apache Apollo代理服务器实现mqtt通信

MQTT实战2 - 使用MQTTnet实现mqtt通信

MQTT实战3 - NetCore 2.0 + MQTTnet 3.0.9 实现mqtt通信

 

using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;

namespace MqttNetAgent
{
    public class Program
    {
        // =====================================================================
        // 运行
        // NetCore 2.0 + MQTTnet 3.0.9 && MQTTnet.AspNetCore 3.0.9
        // MqttNetAgent 启动运行
        // MqttClient 使用端口61615
        // web        使用端口5000
        // username,password为空
        // =====================================================================
        // 发布
        // cmd
        // f:
        // cd F:\iot\IoTPlatform\MqttNetAgent\MqttNetAgent\bin\Debug\netcoreapp2.0
        // dotnet MqttNetAgent.dll
        // =====================================================================
        public static void Main(string[] args)
        {
            BuildWebHost(args).Run();
        }

        public static IWebHost BuildWebHost(string[] args) =>
            WebHost.CreateDefaultBuilder(args)
                .UseStartup<Startup>()
                //.UseUrls("http://192.168.1.80:5000") // 发布地址
                .UseUrls("http://127.0.0.1:5000") // 发布地址
                .Build();
    }
}

  

 

posted @ 2020-11-11 11:04  CHHC  阅读(1560)  评论(0编辑  收藏  举报