CRM 4WorkingWithDynamicsCrm4.Plugin如何调试?

发布于 2024-12-28 23:25:25 字数 332 浏览 1 评论 0原文

我使用CRM 4.0和VS 2008。我安装了CRM SDK和WorkingWithCRM4.Plugin (http://www.microsoft.com/mspress/companion/9780735623781/)。
我设法使用我从 SDK 获取的 PluginRegistration.exe 工具来部署我认为该插件的 dll。

我尝试使WorkingWithCRM4.Plugin 中的示例代码正常工作。问题是,似乎什么也没有发生。我尝试调试代码,但似乎无法附加到正确的进程(w3wp.exe)或未调用执行事件。有谁有以下方面的经验:WorkingWithCRM4.Plugin 并告诉我如何使其工作或调试?

I use CRM 4.0 and VS 2008. I installed the CRM SDK and WorkingWithCRM4.Plugin (http://www.microsoft.com/mspress/companion/9780735623781/).
I managed to deploy I think the plugin's dll with the PluginRegistration.exe tool which I for from the SDK.

I try to make the sample code from the WorkingWithCRM4.Plugin to work. The problem is, nothing seems to happen. I try to debug the code, but it seems I can't attach to the right process (w3wp.exe) or the Execute event is not called. Does anybody has experience with: WorkingWithCRM4.Plugin and tell me how can make it work or debug?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧夏天 2025-01-04 23:25:25

这些是我要做的步骤:

  1. 签署密钥。
  2. 建造。
  3. 注册插件。
  4. 将生成的 .pdb 文件放入 CRM 的 bin 文件夹中。
  5. 通过将插件附加到 w3wp.exe 进程来调试插件。
  6. 通过触发相关实体上的相关消息来触发您的插件。

注意:有时,如果出现问题,您可能需要执行iisreset

These are the steps I do:

  1. Sign a key.
  2. Build.
  3. Register the Plug-in.
  4. Place the generated .pdb file into the bin folder of the CRM.
  5. Debug the plug-in by attaching it to the w3wp.exe process.
  6. Trigger your plugin by triggering the related Message on the related Entity.

Note: Sometimes you may have to to do an iisreset if there is something wrong.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文