码迷,mamicode.com
首页 > 其他好文 > 详细

Azure Service Bus(2)

时间:2021-03-31 12:29:07      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:itop   cti   mamicode   ESS   name   div   lpn   end   key   

先去NuGet里安装Service Bus 组件

技术图片

 

 

 下面是应用,贼简单

 var MethodCont = new JObject {
                                                   new JProperty("vendorCode",EclpNum),//商家编码
                                                   new JProperty("waybillCode",TripNumber),//申通运单号
                                                   new JProperty("weight",TripWeight),//重量
                                                   new JProperty("volume",Volume),//体积                 
                                                     };
var Send = JsonConvert.SerializeObject(MethodCont);
byte[] bytes = Encoding.UTF8.GetBytes(Send);
MemoryStream ms = new MemoryStream();
ms.Write(bytes, 0, bytes.Length);
var message = new Message(ms.ToArray());
message.Label = "xxxx";

string connectionString = ConfigurationManager.AppSettings.Get("connectionString").ToString();
string entityPath = ConfigurationManager.AppSettings.Get("entityPath").ToString();
ITopicClient topicClient = new TopicClient(connectionString, entityPath);
await topicClient.SendAsync(message);
<add key="connectionString" value="Endpoint=sb://zkb.servicebus.chinacloudapi.cn/;SharedAccessKeyName=zkb.backend.m;SharedAccessKey=zkb;" />
<add key="entityPath" value="xxxx" />
上面这两个key是在Azure的控制台上生成的那个链接字符串;

 

Azure Service Bus(2)

标签:itop   cti   mamicode   ESS   name   div   lpn   end   key   

原文地址:https://www.cnblogs.com/ZkbFighting/p/14598869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!