node.js - 在 Dynamics CRM 中发送通知

标签 node.js dynamics-crm-2011 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 ();
    }
}

关于node.js - 在 Dynamics CRM 中发送通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32518317/

相关文章:

mysql - Nodejs-Mysql查询表名作为变量

javascript - 在 koa.js 路由中发送带有 header 的 post 请求

excel - 从 Dynamic CRM 获取数据的最简单方法

javascript - 客户关系管理动态 : how to get viewname in record list using javascript?

javascript - Mongoose - Model.deleteOne() 正在删除整个集合而不是单个文档

node.js - MongoDB 中的 "Connection"是什么?

native N 上的 Javascript 选择 :N relationship entity crm 2011

javascript - CRM 2011 中的查找地址 fetchXml 自定义

javascript - MSCRM 2011 : Filtering an Iframe using javascript

linq - LINQ 中 Where 语句中的错误