workflow

Open Source Job Scheduler with REST API

◇◆丶佛笑我妖孽 提交于 2019-12-07 01:09:09
问题 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. 回答1: 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

A proper workflow for CMake + Qt translation system

霸气de小男生 提交于 2019-12-07 01:02:31
问题 I recently moved my Qt project form qmake to CMake build system and now I'm trying to set up a translation system. I tried to use qt5_create_translation macro (documented here) to update my *.ts files and generate *.qm files. By default the macro creates (or updates) *.ts files in the source directory and *.qm files in the build directory, which is pretty logical and convenient to use. The nature of underlying lupdate utility is such that *.ts files cannot be destroyed - they may be updated

Type of workflow design pattern to use?

人盡茶涼 提交于 2019-12-06 23:16:01
问题 I have a workflow that goes in sequence A - > B - > C - > D - > E I need a design pattern that allow me to add a state in between them with least code change. http://en.wikipedia.org/wiki/Workflow_patterns Which of these design pattern works? 回答1: You could look into petri-net implementions, calculus-inspired frameworks like Jacob, virtual machines for processes like the PVM or a statemachine implementation like SCXML although the latter are waiting for state changes and then do something, so

How do I pass a list of candidate users to an activiti workflow task in alfresco?

蹲街弑〆低调 提交于 2019-12-06 22:46:57
问题 I would like to be able to pass a list of users as candidates for a task. The users are retrieved from a data list and not available as a group. Activiti:candidateUsers would appear to be the right approach. Assuming that the users have been obtained and set in the variable, ipw_reviwers. <serviceTask id="alfrescoScripttask1" name="Alfresco Script Task" activiti:class="org.alfresco.repo.workflow.activiti.script.AlfrescoScriptDelegate"> <extensionElements> <activiti:field name="script">

CRM 2011 Custom Workflow

坚强是说给别人听的谎言 提交于 2019-12-06 22:12:43
I GO THE PLUGIN WORKING, AND I HAVE UPDATED THE WORKING CODE HERE. HOPE IT HELPS!! I'm creating a workflow which has a plugin to retrieve a contact entity from a "FROM" field of an Email record. I'm trying to see if that email exists in the contact entity. The input is the "FROM" email and the output will return the Contacts entity. I have not been able to get this code working, I've received different errors or no errors, but I know its not working. Please help! Thanks in advance! using System.Activities; using Microsoft.Xrm.Sdk; using Microsoft.Xrm.Sdk.Workflow; using Microsoft.Xrm.Sdk.Query

Git flow - managing differences between master and develop

故事扮演 提交于 2019-12-06 17:56:26
I've been using Git Flow for a little while now, however in the initial week or so I was creating release branches manually from master and cherry picking the required commits into the release branch rather than creating them from master. For example, if I have commit abcd123 My commit message in the develop branch, I had also cherry picked it into the release branch manually, and at this point I had probably amended or edited the commit message, so the release branch (and now master branch) contain this commit but with a different hash, e.g. dbca321 My adjusted commit message . The problem

Development Workflow - Bootstrap (Less), Bower and Grunt

我是研究僧i 提交于 2019-12-06 15:07:05
I am trying to step up my game as far as my folder structure and workflow is considered. I have recently discovered that front end package management and automation of tasks are key to improve speed, decreasing dev time, decrease file size and increase profit. My issue is I am not too sure what the best method of using these tools are. I have a builds folder, which includes a dev and prod folder. My components are outside this folder in the bower_components folder. I usually customise bootstrap and take advantage of it's variables file and mixins. I have copied the bootstrap.less file, and the

How can I troubleshoot Sharepoint workflows?

自作多情 提交于 2019-12-06 14:13:44
I'm a bit lost here and I can't find much documentation. .NET workflows or ones created using SharePoint designer? I've only got latter experience and they aren't really easy to debug, you really just have to do them 1 step at a time and test up to each step. You can view the workflow state as well in SharePoint when you go to the List Settings (sorry I don't have a WSS machine to look at currently). Agree with @Slace. Make sure you create your workflows in SP Designer to be executable from the browser, even if eventually they'll only be kicked off by status changes. That will in itself make

Registering custom tracking participants through code in workflow foundation 4.0

醉酒当歌 提交于 2019-12-06 13:51:32
I'm having trouble trying to attach a custom tracking participant in workflow foundation 4.0. I have a class that inherits from TrackingParticipant but I cannot see any other way of attaching it to my WorkflowServiceHost other than through lots of messy app.config entries like the SDK example demonstrates below (in the system.servicemodel element). This option seems to require a lot of extra overhead and classes to be created, when I just want a simple custom tracking participant to listen to my CustomTrackingRecord.Data.Add(key, value) calls. public class CustomTracking : TrackingParticipant

Create Email with a workflow in MS Dynamics Crm 2011 and dynamically fill the “To” field

最后都变了- 提交于 2019-12-06 13:45:32
I'm working on Ms Dynamics Crm 2011 development and I encountered following problem. My situation: I want to be able to automatically send an Email after a change on a specific status field on a record of the Entity "MyEntity". "MyEntity" has an Email-field. I try to create a workflow which sends an Email to the Email-field address of the "MyEntity" record after the status has been changed. My problem is that I can't add in the Email Creation workflow to the "To" field this "MyEntity" Email-field adress. I need to somehow specify in the workflow to dynamically add the "To" field, the relating