workflow-foundation

Please confirm: Is Windows Workflow Foundation a good horse to be backing right now?

一个人想着一个人 提交于 2019-12-04 18:40:10
问题 We are in the process of selecting a workflow solution for a company that uses Microsoft products end to end. Given the news on WF4, in that it seems to be essentially a rewrite of previous versions, is it a wise move to back the current version or should we be looking elsewhere? Ie - is the current version so bad that we would not be wise to try and use it? 回答1: Haiving just launched a project which .NET 3.5 and workflow I'd say that the current release of WF is good enough to use and run

WF4 workflow versioning using WorkflowServiceHost

怎甘沉沦 提交于 2019-12-04 14:07:04
问题 Related to this question. I understand how to implement versioning of workflows using WorkflowApplication. If you keep the original XAML definition for older versions of your workflow around, you can load them using the right WorkflowApplication constructor. How could you ensure that WorkflowServiceHost uses the correct workflow definition when you want to host your workflows in IIS? There is a WorkflowServiceHost constructor that you can use to load a workflow definition, but when you are

Is it better to have one big workflow or several smaller specific ones?

余生颓废 提交于 2019-12-04 11:25:19
I need to build an app that gets files from a server and moves to another server. It was suggested that I look into using Windows Workflow Foundation (WF). I started to build the workflow but it is getting messy and I'm not sure I'm doing it the best way possible. Here is the basic worklow activities: Get a list of sources Determine if source is ftp or disk drive Get a list of files from the server If source is ftp then get the file with ftp get else if source is drive then read file from drive If target is ftp then ftp file to server else if target is drive then write to a drive else if

Workflow Tools Comparison?

寵の児 提交于 2019-12-04 10:59:51
There is a pretty strong need for us to design some workflows around various processes. The problem is none of us actually know any workflow technology yet, and finding good data to compare the available options has been tedious and not entirely fruitful. So I figured I'd ask you guys. The main technologies we are looking at are Windows Workflow Foundation and eDocs Workflow. What other options are there? Sharepoint 2007 has workflow functionality too, right? Is that just based on WF? What are the pros and cons of the various technologies? How do they compare? EDIT: Also, one feature the

Java alternative to Windows Workflow Foundation

末鹿安然 提交于 2019-12-04 00:52:29
What Java alternatives are there to Windows Workflow Foundation? I am looking for something that provides at least the same features that WWF does, and has the same flexibility and relative ease of use. I would very much prefer a free solution. Jim Blizard There are several great workflow engines for Java JBPM is one. Others can be found here . We've used OSWorkflow and had success with it. In particular, it was easy to integrate with Spring and Quartz. http://www.opensymphony.com/osworkflow/ 来源: https://stackoverflow.com/questions/762499/java-alternative-to-windows-workflow-foundation

How to correctly save a WF4 ActivityBuilder

孤街醉人 提交于 2019-12-03 17:12:38
I am currently saving my .NET FX 4.0.1 StateMachine activity like this: var sb = new StringBuilder(); var xamlWriter = ActivityXamlServices.CreateBuilderWriter( new XamlXmlWriter(new StringWriter(sb), new XamlSchemaContext())); XamlServices.Save(xamlWriter, activityBuilder); return sb.ToString(); This works fine and the generated XAML looks good. Unfortunately, it is invalid. I can read it back in using ActivityXamlServices.Load but when I execute it, it says that it doesn't know the properties defined in the workflow. Opening it in the Visual Studio designer yields the same errors: Compiler

How do you manage versions in Workflow Foundation?

匆匆过客 提交于 2019-12-03 13:55:40
问题 How do you manage versions of work flows in WF when you have long running work flows and you might have two or three versions in the persistence store at the same time and have to be able to access them all? 回答1: I did a series of 4 blog post covering most of the stuff you need to be aware of when versioning long running workflows. One thing I tend to avoid is using the HandleExternalEventActivity as this greatly complicates things. For that matter I tend to stick to simple types and xml

Did you successfully adopt Windows Workflow in a real world web application?

旧时模样 提交于 2019-12-03 11:23:20
问题 I have recently posted a question regarding the Windows Workflow running in a web application. Granted it was a fairly technical question that contained terms like ManualWorkflowSchedulerService, HandleExtrenalEvent, etc... it got about 15 views over the course of 20 days. While it is most likely a matter of me not asking the question the right way, it got me thinking about the adoption of windows workflow in real world applications, especially in web applications. Have you successfully

Please confirm: Is Windows Workflow Foundation a good horse to be backing right now?

给你一囗甜甜゛ 提交于 2019-12-03 11:20:53
We are in the process of selecting a workflow solution for a company that uses Microsoft products end to end. Given the news on WF4, in that it seems to be essentially a rewrite of previous versions, is it a wise move to back the current version or should we be looking elsewhere? Ie - is the current version so bad that we would not be wise to try and use it? gbanfill Haiving just launched a project which .NET 3.5 and workflow I'd say that the current release of WF is good enough to use and run with. It has helped us to get a product out quickly (we have the usual feature creep and requirements

WF4 workflow versioning using WorkflowServiceHost

我与影子孤独终老i 提交于 2019-12-03 08:53:10
Related to this question . I understand how to implement versioning of workflows using WorkflowApplication . If you keep the original XAML definition for older versions of your workflow around, you can load them using the right WorkflowApplication constructor. How could you ensure that WorkflowServiceHost uses the correct workflow definition when you want to host your workflows in IIS? There is a WorkflowServiceHost constructor that you can use to load a workflow definition, but when you are hosting inside IIS through a XAMLX file, you do not call WorkflowServiceHost yourself, this is handled