0

我正在等待使用Aero Gear .Net 客户端发送推送通知的电话。调用 push 的返回值是 a System.Net.HttpStatusCode。如果推送成功,预期的代码是“已接受”。

但是当我等待对 SendPushNotification 方法的调用时,它会"The request was aborted. The connection was closed unexpectedly"在从该方法返回 HttpStatusCode 之前抛出一个错误:

System.Net.HttpStatusCode status = await client.Send(unifiedMessage);    

我将控制器对 push 方法的调用标记为异步,并在调用异步方法的地方添加了 await。

问题:

您如何解决等待调用 HttpStatusCode 时中止的请求?

这是从控制器中的初始调用到 push 类方法的调用要点:

控制器:

//In Controller Post action that calls SendPushNotification

[HttpPost]
public async Task<ActionResult> Index(Order exec_order)
{
    try
    {


        //Send a push notification with the order details
        try
        {
            MyLogger.FileLogger.Info("Before Push Notification");
            System.Net.HttpStatusCode status = await PushsClassLibrary.PushNotification.SendPushNotification(exec_order.Application", "Order Summary");
            MyLogger.FileLogger.Info("Push Notification Status: " + status);
        }
        catch (Exception ex) //request aborted error caught here
        {
            MyLogger.FileLogger.Error("Push Notification Exception -" + ex.Message);
        }


}

推送类:

//In PushNotification class containing SendPushNotification
public static async Task<System.Net.HttpStatusCode> SendPushNotification(string messageToPush, string serviceName )
{
    string[] listUsers = users.ToArray();
    unifiedMessage.criteria.alias = listUsers;

    System.Net.HttpStatusCode status = await client.Send(unifiedMessage);    
    return status;
}
4

1 回答 1

1

我认为您要检查的状态代码是HttpStatusCode.OK并且我很确定您得到的错误:“请求被中止。连接意外关闭”是一个例外。您确定 AeroGear 服务器正在运行并且您不需要代理配置PushsClassLibrary吗?

否则,AeroGear 项目也有一个您可以使用的C# 发送器库。

于 2016-08-11T15:25:19.317 回答