workflow

Java alternative to Windows Workflow Foundation

≯℡__Kan透↙ 提交于 2019-12-05 14:31:32
问题 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. 回答1: There are several great workflow engines for Java JBPM is one. Others can be found here. 回答2: 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/ 来源

Mercurial workflow with subrepositories and offline clones?

只谈情不闲聊 提交于 2019-12-05 12:52:10
I'm offline a lot. So normally, I use one local clone as a "hub" for features, bugs, etc. hg clone local-hub bug-123 Works offline. Cool. Can I use a similar workflow if that project contains remote subrepositories? Because, if .hgsub says sub/shared = http://server/hg/shared hg clone says abort: error: getaddrinfo failed Note that once the clone is created (while connected), push and pull will use the path in the subrepo's hgrc (instead of the location in .hgsub ). So I can point this to a local clone and everything is cool. But clone looks at .hgsub (as it's supposed to). So if the "blessed"

Workflow system [closed]

心不动则不痛 提交于 2019-12-05 10:07:12
I've just started at a new communications company, and we're looking at a workflow / intranet system to manage jobs and processes. Basically, we receive data files from clients which we then process through our systems. Receive data file (FTP, Email, etc) Process data file (either generic script with data mapping to the file, or bespoke ETL package). Adds address values Create printstream (send processed data file into a postscript / PDF composition engine), or create email output Send output to production floor (copy to printer input stream, mailing machines) Process other streams (e.g. send

Java Open Source Workflow Engines [closed]

微笑、不失礼 提交于 2019-12-05 08:13:00
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . What is the best open source java workflow framework (e.g. OSWorkflow, jBPM, XFlow etc.)? Here's an article that compares kBPM, OpenWFE, and Enhydra Shark that looks like it has some good, thorough info. It depends what kind of initial investment you want to make. jBPM is the best in terms of features and flexibility, but OSWorkflow is a more lightweight, easier to get up and running and has with a smaller

Multiplatform C++ cross-compiler

独自空忆成欢 提交于 2019-12-05 08:05:40
How can I build a cross-compiler for a C++ library to target many platforms on a single build server? The cross-compiler should be able to build the library for (at least) {Windows 7, Mac OS X, Ubuntu 11.04} × {32 bit, 64 bit} × {Debug, Release}. I don't care if the whole build from scratch takes forever or if the gcc binary is 1 GB. If the cross-compiler cannot be a single executable, what is the workflow I should use to compile (and recompile) my library? The host machine would be a Ubuntu 11.04. Building cross-compiler is quite well covered in OSDev Wiki . For Windows, you can use mingw

Migrating Activiti tasks from old process to new process

こ雲淡風輕ζ 提交于 2019-12-05 07:10:28
I have an Activiti project for some business process. The problem is about migration. An existing process has some unfinished tasks. I want to modify the existing process by adding a new step. Now, when I create a new task, this new task will be processed according to the updated process. And unfinished tasks will be processed according to the old process. Let's take the following example: https://spring.io/blog/2015/03/08/getting-started-with-activiti-and-spring-boot In this example, consider the following line: taskVariables.put("telephoneInterviewOutcome", true); Assume that, I have some

Loading a workflow stored as XAML in .NET 4.0

僤鯓⒐⒋嵵緔 提交于 2019-12-05 06:24:15
What is the syntax for loading a .NET 4.0 Beta2 workflow that was previously created and stored as XAML. The WorkflowElement and WorkflowXamlServices classes no longer exist. I am trying to do something like this (that worked in Beta 1): WorkflowElement wf = WorkflowXamlServices.Load(File.OpenRead("Workflow.xaml")) as WorkflowElement; Found my own answer after further research. The WorkflowElement and WorkflowXamlServices classes have been removed from Beta2. The approach above requires the use of DynamicActivity and ActivityXamlServices. DynamicActivity wf = ActivityXamlServices.Load(

Perl Workflow module with validator

最后都变了- 提交于 2019-12-05 06:03:05
i'm trying to get things work with perl Workflow module - http://search.cpan.org/~jonasbn/Workflow/ I managed to figure out how it works with workflows, actions, conditions and all but i can't get it to apply validator class to the action. My _init method from validator loads and prints out the line that i put there for testing but validate method is not triggered ever. Also, when dumping $self->get_validators() from action class i get empty list. I created a short example so please try it and help out if you see the problem. Tnx! link to code - https://github.com/vmcooper/perl_workflow_test

Open Source Job Scheduler with REST API

折月煮酒 提交于 2019-12-05 04:42:39
Are there any open source Job Scheduler with REST API for commercial use which will support features like: Tree like Job dependency Hold & Release Rerun failed steps Parallelism Help would be appreciated :) NOTE: we are looking for open source alternative for TWS , Control-M , AutoSys . JobScheduler would seem to meet your requirements: Open Source see: Open Source and Commercial Licenses Rest API see: Web Service Integration Parallelism see: Organisation of Jobs and Job Chains I think that these areas are also covered (I downloaded and trialled the application): See here Tree like Job

Forcing a TFS2010 workflow build to FAIL instead of PARTIALLY SUCCEED

天大地大妈咪最大 提交于 2019-12-05 03:59:58
I currently have a custom workflow activity to run an external process, after the solution has been compiled successfully, that returns an ExitCode <> 0 if the external process has failed. Once I know that the process has failed, I want to set the build status to FAIL (as you would see if code has not compiled) so I have added a SetBuildProperties activity which will set the Status property to BuildStatus.Failed but this only seems to result in giving a Partially Succeeded build when the build is finished. I have tried setting the build's compilation status to failed inside my custom activity