繁体   English   中英

在Dynamics CRM中发送通知

[英]Send notifications in Dynamics CRM

我正在尝试在发生特定任务时向客户端(node.js)发送通知。 例如,如果发生事件,则应向客户端发送通知。

是否有解决方案可以在Dynamics CRM中直接使用,还是必须编写特定的插件?

谢谢你的帮助

WebRequest可用于轻松地通过HTTP POST某些内容。

您可以构建一个充当“调度程序”的插件程序集,然后在需要的地方注册它。 请注意,您可能必须将装配件放置在沙箱外部(隔离模式:无)。

您还可以通过(不安全)配置轻松地为每个注册步骤设置它。

WebRequest的链接的MSDN页面提供以下示例:

public class WebRequestPostExample
{
    public static void Main ()
    {
        // Create a request using a URL that can receive a post. 
        WebRequest request = WebRequest.Create ("http://www.contoso.com/PostAccepter.aspx ");
        // Set the Method property of the request to POST.
        request.Method = "POST";
        // Create POST data and convert it to a byte array.
        string postData = "This is a test that posts this string to a Web server.";
        byte[] byteArray = Encoding.UTF8.GetBytes (postData);
        // Set the ContentType property of the WebRequest.
        request.ContentType = "application/x-www-form-urlencoded";
        // Set the ContentLength property of the WebRequest.
        request.ContentLength = byteArray.Length;
        // Get the request stream.
        Stream dataStream = request.GetRequestStream ();
        // Write the data to the request stream.
        dataStream.Write (byteArray, 0, byteArray.Length);
        // Close the Stream object.
        dataStream.Close ();
        // Get the response.
        WebResponse response = request.GetResponse ();
        // Display the status.
        Console.WriteLine (((HttpWebResponse)response).StatusDescription);
        // Get the stream containing content returned by the server.
        dataStream = response.GetResponseStream ();
        // Open the stream using a StreamReader for easy access.
        StreamReader reader = new StreamReader (dataStream);
        // Read the content.
        string responseFromServer = reader.ReadToEnd ();
        // Display the content.
        Console.WriteLine (responseFromServer);
        // Clean up the streams.
        reader.Close ();
        dataStream.Close ();
        response.Close ();
    }
}

可以肯定的是,目前还没有这样的解决方案可用,因此您将要研究定制开发。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM