中文亚洲精品无码_熟女乱子伦免费_人人超碰人人爱国产_亚洲熟妇女综合网

當(dāng)前位置: 首頁 > news >正文

哈爾濱網(wǎng)站建設(shè)教程seo站長助手

哈爾濱網(wǎng)站建設(shè)教程,seo站長助手,株洲網(wǎng)站建設(shè) 磐石網(wǎng)絡(luò),用ps做網(wǎng)站首頁一、修改錯誤昨天登錄報錯今天開始返回我之前設(shè)置的斷點開始重新配置,Reporing Services配置完成后發(fā)現(xiàn)dynamics365還是下載失敗之后下載了一上午dynamics365就一直卡在最后的界面進(jìn)度條不動索性我直接把所有環(huán)境都卸載了 連同虛擬機卸載重裝終于在下午的時候dynami…

一、修改錯誤

昨天登錄報錯

今天開始返回我之前設(shè)置的斷點開始重新配置,Reporing Services配置完成后發(fā)現(xiàn)dynamics365還是下載失敗

之后下載了一上午dynamics365就一直卡在最后的界面進(jìn)度條不動

索性我直接把所有環(huán)境都卸載了 連同虛擬機卸載重裝

終于在下午的時候dynamics365貌似下載成功了

SSRS也出現(xiàn)了

然后下載SSRS

就按照提示下載

安裝完成

二、創(chuàng)建插件項目

官方文檔:教程:編寫和注冊插件 (Microsoft Dataverse) - Power Apps |微軟學(xué)習(xí)

為插件創(chuàng)建 Visual Studio 項目

打開Visual Studio并使用.NET Framework 4.6.2打開一個新的類庫(.NET Framework)項目

去下載.Net Framwork4.6.2

下載網(wǎng)址:https://dotnet.microsoft.com/zh-cn/download/dotnet-framework/net462

安裝成功

1、新建一個類庫項目

.Net Framwork 4.6.2

2、下載程序包

通過Nuget包管理器下載:

Microsoft.CrmSdk.CoreAssemblies

Microsoft.Crm.Sdk.Proxy.2015

Microsoft.Xrm.Sdk.2015

Microsoft.XRM.SDK.2015.OnPremise

額外補充的兩個Nuget包:

Microsoft.CrmSdk.Deployment(沒成功)

Microsoft.CrmSdk.Workflow

下載程序集

3、實現(xiàn) IPlugin 接口

通過編輯類來實現(xiàn) IPlugin 接口

將該方法的內(nèi)容替換為以下代碼:Execute

// Obtain the tracing service
ITracingService tracingService =
(ITracingService)serviceProvider.GetService(typeof(ITracingService));// Obtain the execution context from the service provider.  
IPluginExecutionContext context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));// The InputParameters collection contains all the data passed in the message request.  
if (context.InputParameters.Contains("Target") &&context.InputParameters["Target"] is Entity)
{// Obtain the target entity from the input parameters.  Entity entity = (Entity)context.InputParameters["Target"];// Obtain the organization service reference which you will need for  // web service calls.  IOrganizationServiceFactory serviceFactory =(IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);try{// Plug-in business logic goes here.  }catch (FaultException<OrganizationServiceFault> ex){throw new InvalidPluginExecutionException("An error occurred in FollowUpPlugin.", ex);}catch (Exception ex){tracingService.Trace("FollowUpPlugin: {0}", ex.ToString());throw;}
}

該插件將創(chuàng)建一個任務(wù)活動,該活動將提醒帳戶的創(chuàng)建者在一周后跟進(jìn)。

將以下代碼添加到 try 塊。替換注釋:。與以下內(nèi)容:// Plug-in business logic goes here

// Create a task activity to follow up with the account customer in 7 days. 
Entity followup = new Entity("task");followup["subject"] = "Send e-mail to the new customer.";
followup["description"] ="Follow up with the customer. Check if there are any new issues that need resolution.";
followup["scheduledstart"] = DateTime.Now.AddDays(7);
followup["scheduledend"] = DateTime.Now.AddDays(7);
followup["category"] = context.PrimaryEntityName;// Refer to the account in the task activity.
if (context.OutputParameters.Contains("id"))
{Guid regardingobjectid = new Guid(context.OutputParameters["id"].ToString());string regardingobjectidType = "account";followup["regardingobjectid"] =new EntityReference(regardingobjectidType, regardingobjectid);
}// Create the task in Microsoft Dynamics CRM.
tracingService.Trace("FollowupPlugin: Creating the task activity.");
service.Create(followup);

這里運行發(fā)現(xiàn)報錯了

去下載.Net Framwork4.5.2

下載地址:下載 .NET Framework 4.5.2 Developer Pack Offline Installer (microsoft.com)

然后重復(fù)上邊的步驟

4、對插件進(jìn)行簽名

1、在“解決方案資源管理器”中,右鍵單擊 BasicPlugin 項目,然后在上下文菜單中選擇“屬性”。

2、在項目屬性中,選擇“簽名”選項卡,然后選中“為程序集簽名”復(fù)選框。

3、在“選擇強名稱密鑰文件:”下拉列表中,選擇<新建...>

  1. 在“創(chuàng)建強名稱密鑰”對話框中,輸入密鑰文件名并取消選中“使用密碼保護(hù)我的密鑰文件”復(fù)選框。

5、單擊“確定”關(guān)閉“創(chuàng)建強名稱密鑰”對話框。

6、在項目屬性“生成”選項卡中,驗證“配置”是否設(shè)置為“調(diào)試”。

7、按 F6 再次生成插件。

8、使用 Windows 資源管理器,在以下位置找到內(nèi)置插件:。\bin\Debug\BasicPlugin.dll

5、注冊程序集

一、在“注冊”下拉列表中,選擇“新建程序集”。

選擇第一個

二、在“注冊新程序集”對話框中,選擇省略號 (...) 按鈕并瀏覽到在上一步中生成的程序集。

三、單擊注冊所選插件。

四、您將看到“已注冊插件”確認(rèn)對話框。

五、單擊“確定”關(guān)閉對話框并關(guān)閉“注冊新程序集**”**對話框。

您現(xiàn)在應(yīng)該看到(程序集)BasicPlugin 程序集,您可以展開該程序集以查看(插件)BasicPlugin.FollowUpPlugin 插件。

三、打開虛擬機

雙擊Demo

然后進(jìn)入一個網(wǎng)頁 把網(wǎng)址復(fù)制下來去主機登錄

進(jìn)不去就等會 反復(fù)試試

http://m.risenshineclean.com/news/48356.html

相關(guān)文章:

  • 石臺做網(wǎng)站新的營銷模式有哪些
  • wordpress網(wǎng)址轉(zhuǎn)跳插件seo是什么專業(yè)的課程
  • ps做網(wǎng)站頁面設(shè)置為多大seo推廣優(yōu)化工具
  • 標(biāo)題優(yōu)化方法百度網(wǎng)站免費優(yōu)化軟件下載
  • php企業(yè)網(wǎng)站源代碼網(wǎng)站優(yōu)化方式有哪些
  • 網(wǎng)站開發(fā)論文題目seo排名系統(tǒng)源碼
  • 網(wǎng)站的ci設(shè)計怎么做優(yōu)化網(wǎng)站打開速度
  • 網(wǎng)站開發(fā) 外包空心cba最新排名
  • javaweb一個旅游網(wǎng)站怎么做無憂軟文網(wǎng)
  • 新聞網(wǎng)站個人可以做嗎軟文寫作范例大全
  • wordpress插件分享顯示官網(wǎng)seo關(guān)鍵詞排名系統(tǒng)
  • 南平網(wǎng)站建設(shè)公司超能搜索引擎系統(tǒng)網(wǎng)站
  • 網(wǎng)站建設(shè)教學(xué)廊坊電商網(wǎng)站入口
  • 二維碼圖片個人網(wǎng)站seo入門
  • 寶坻做網(wǎng)站上海關(guān)鍵詞優(yōu)化排名哪家好
  • wordpress無法新建頁面網(wǎng)站優(yōu)化+山東
  • 中國做爰網(wǎng)站外鏈工具軟件
  • web軟件開發(fā)工具百度seo插件
  • 廣州建委網(wǎng)站google推廣一年的費用
  • 網(wǎng)站建設(shè)經(jīng)典范例萬網(wǎng)域名注冊查詢網(wǎng)
  • 格爾木有做網(wǎng)站的嗎seo網(wǎng)站推廣杭州
  • 行業(yè)軟件公司外包南京seo全網(wǎng)營銷
  • div css3網(wǎng)站布局鄭州制作網(wǎng)站公司
  • 網(wǎng)站建設(shè)進(jìn)度表怎么做看廣告收益最高的軟件
  • 國際新聞最新消息戰(zhàn)爭視頻網(wǎng)站關(guān)鍵字排名優(yōu)化
  • 百度云盤做網(wǎng)站百度新聞客戶端
  • 動態(tài)網(wǎng)站開發(fā)報告seo推廣優(yōu)化
  • 網(wǎng)站建設(shè)app平臺關(guān)鍵詞排名優(yōu)化
  • 網(wǎng)站建設(shè)公司怎么宣傳廈門百度seo
  • 重慶第一門戶網(wǎng)站附子seo教程