用于访问 Project Server Web 服务的 MS CRM 自定义工作流
我正在尝试在 ms crm 4 中创建自定义工作流程,以便当任务完成时,它将采用该任务的一些属性,并在时间表上的项目服务器中添加一个条目。 我能够访问项目服务器 Web 服务 (PSI) 并从 ac# 控制台应用程序创建时间表条目,并且我可以在 crm 中执行与项目服务器无关的其他自定义工作流程。 使用 Project Server Web 服务 (PSI) 时,我必须引用并包含 3 个 Office 项目 dll,但我不确定在进行自定义工作流程插件注册时如何在 CRM 中注册这些 DLL。 任何想法都会有帮助。
谢谢
I am trying to create a custom workflow in ms crm 4 so that when a task is completed it will take some of the attributes of the task and add an entry in project server on a timesheet. I am able to access the project server web services (PSI) and create a time sheet entry from a c# console app and I can do other custom workflows in crm not related to project server. When using the Project Server web services (PSI) I have to reference and include 3 office project dll's but I am unsure how to get those registered in CRM when i do the custom workflow plugin registration. Any thoughts would be helpful.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我的经验,您要么必须将这些 DLL 部署到 Server\bin 目录,要么使用 ILMerge 之类的工具将它们与您的 DLL 合并,并将其全部注册为一大块。
In my experience, you're either going to have to deploy those DLL's to the Server\bin directory or merge them with your DLL using something like ILMerge and register it all as one big chunk.