本文介绍了将WF 4.0作为服务器端组件运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨全部

Hi all,

一个新项目,我们需要使用WF 4.0来部署和运行工作流.我们决定在服务器端组件中负责运行工作流,而不是在应用程序内部托管工作流.

For a new project, we need to use WF 4.0 for deploying and running workflows. Instead of hosting workflows within the application itself, we decided to implement a server-side component that is in charge of running workflows.

WF 4.0具有对运行时引擎(WorkflowRuntime)的显式访问,该引擎提供了一些基本的管理功能,例如检索当前正在运行的工作流等.据我所知,WF 4.0缺少此显式访问,因为工作流是通过WorkflowInstance类创建的,WorkflowRuntime ...没有立即可用的引用.

Before WF 4.0, one had explicit access to the the runtime engine (WorkflowRuntime), which provided some basic management functionalities, such as retrieving the workflows currently running etc ... As far as I could find out, WF 4.0 lacks this explicit access, as workflows are created via the WorkflowInstance class and no reference is immediately available to the WorkflowRuntime ...

如果我需要在服务器端使用这些管理功能,我正确地需要自己实现这些功能?还是我错过了某件事...

If I need these management functionalities on the server side, I'm a correct that I will need to implement these myself? Or did I miss out on something ...

感谢提前为您解答!

推荐答案


这篇关于将WF 4.0作为服务器端组件运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 00:23