這是一個簡單的任務,但我浪費了一天多的時間。那就是爲什麼來找你。請幫我解決問題。Online CRM REST服務 - 遇到問題
我的要求很簡單,我有一個ASP.NET項目。我已經在在線CRM
實體名稱的實體:「僱員」和字段「姓名,年齡,性別」
我上無法在我的asp.net項目中添加CRM的DLL。所以我必須使用REST服務。
我已經添加服務引用https://myoffice.crm5.dynamics.com/xrmservices/2011/organization.svc?wsdl
這是我使用
OrganizationServiceClient orgClient = new OrganizationServiceClient();
orgClient.ClientCredentials.Windows.ClientCredential = new System.Net.NetworkCredential("[email protected]", "mypassword");
Entity myContact = new Entity();
myContact.LogicalName = "Employee"; //Is it right? i must provide it here right.
代碼當它運行orgClient.Create(myContact)錯誤
myAttColl.Add(new KeyValuePair<string, object>("Name","Emp1"));
myAttColl.Add(new KeyValuePair<string, object>("Age", "26"));
myAttColl.Add(new KeyValuePair<string, object>("Gender", "Male"));
myContact.Attributes = myAttColl;
try
{
orgClient.Create(myContact);
}
catch (Exception ex)
{
}
我收到 「的消息驗證安全性時發生錯誤」。
不管我到目前爲止做了什麼。這是我的要求,使用REST服務非常簡單地將我的自定義實體添加到Online CRM中。我將在一個名爲http://xyz.com的獨立域中運行我的web應用程序。從這裏,我需要將條目添加到Online CRM中。
任何幫助?
您遇到了一個問題,或者您遇到問題? – Shai 2012-07-19 09:31:06
我感到一個問題。我不知道爲什麼我得到「驗證郵件安全性時發生錯誤」,我需要解決它。 – 2012-07-19 12:16:26