workflow

To Workflow or Not to Workflow?

▼魔方 西西 提交于 2019-11-29 18:42:20
I am responsible for a team of developers who will are about to start development of a light weight insurance claims system. The system involves a lot of manual tasks and business workflows and we are looking at using Windows Workflow (.NET 4.0). An example of the business domain is as follows: A policy holder calls the contact centre to lodge a claim. This “event” fires two sub tasks which are manually actioned in parallel and may take a lengthy time to complete; Check customer for fraud – A manual process whereby an operator calls various credit companies to check and assess the potential of

How can you program if you're blind?

强颜欢笑 提交于 2019-11-29 18:30:36
Sight is one of the senses most programmers take for granted. Most programmers would spend hours looking at a computer monitor (especially during times when they are in the zone ), but I know there are blind programmers (such as T.V. Raman who currently works for Google). If you were a blind person (or slowly becoming blind), how would you set up your development environment to assist you in programming? (One suggestion per answer please. The purpose of this question is to bring the good ideas to the top. In addition, screen readers can read the good ideas earlier.) Jared I am a totally blind

Looking for Activiti Alfresco Workflow tutorial step by step [closed]

老子叫甜甜 提交于 2019-11-29 17:41:11
问题 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 4 years ago . Where i can find simple tutorial for Activiti Alfresco Workflow (especially with Custom Workflow) ? I'm new with Alfresco Activiti Worfklow. Thanks. 回答1: I have written a tutorial on using the Activiti workflow engine that is embedded in Alfresco 4 that shows how to create custom workflows. It includes

Action name/url name in debuggers using Struts 2

你说的曾经没有我的故事 提交于 2019-11-29 17:37:06
This has been bothering me since I started working with this webapp last year (I had no experience with web development) I don't know if this app is structured incorrectly or if this is just the way it is . My welcome page is really a login page, and after the user logs in my app goes to a main page, where they have a menu to go to various other functions. This is struts.xml : <action name="Welcome"> <interceptor-ref name="newStack" /> <result name="success">Login.jsp</result> </action> <action name="actLogin" class="actionLogin"> <interceptor-ref name="newStack" /> <result name="success"

Can I enforce a merge-only branch in git?

不问归期 提交于 2019-11-29 16:37:21
问题 I'm using git, and I'm setting up the following branches to support my workflow: release, which only contains released software, testing, which contains software released to the testing group, develop, which is where development happens, some_topic_branch, where features, etc. get added. Topic branches branch from and get merged into develop. When we're ready for a testing release, testing merges in develop. When a testing release is approved for production, release merges in testing. This is

Windows workflow [closed]

泪湿孤枕 提交于 2019-11-29 16:05:33
问题 Can anyone explain what is windows workflow and how can we use in the work organization. 回答1: Windows Workflow Foundation is a fascinating concept. It allows you to create powerful applications (or just parts of them) using a combination of flowchart-like concepts and normal code. The deeper value of this may not be immediately obvious. Say you're building a large e-commerce site. Over time, your workflows for processes such as fulfillment will change radically. The code will eventually

Need GIT workflow suggestion

岁酱吖の 提交于 2019-11-29 15:48:36
问题 I have been studding GIT for the last couple of weeks in an attempt to get my team's code under control. Unfortunately the code we work with is a proprietary language with some peculiarities which is keeping me from finding a practical enough workflow to be implemented. Still, I'm probably not aware of all GIT's capabilities so I ask you guys for suggestion. I will divide this post in three: 1) how are my files; 2)the workflow we've figured so far; 3)options I reckon for the future. My Files

RESTful Workflow Service Endpoints in WF4 / WCF

别来无恙 提交于 2019-11-29 07:04:43
Folks, I'm building a pretty standard workflow that I want exposed via a WCF endpoint - I'm using the "WCF Service Application" project template and I've got a .xamlx service. This is a very simple document interchange workflow service - I want consumers to POST me a blob of XML as the body of an HTTP post (with HTTP headers containing authentication tokens). In response, these consumers will get a blob of XML containing the reply. 2 goals for me using REST/POX here are the document/message-based nature of the interaction AND I want to make client development easy for non-.NET environments

Proper Git workflow for combined OS and Private code?

99封情书 提交于 2019-11-29 06:12:56
I have a closed source project that is built on my open source framework. I want to know how I should structure my workflow. Below is my best guess using git with submodules. I create a public framework repo on github with submodules that are separate git repos. I purchase a "micro" account on github ($7) so I can have a private repo. I create a private repo and clone the public framework repo. From here I can make changes to: My private code and push to my private repo on github The public framework code and push to my private github repo and then send a pull request from the public framework

Git workflow for custom css files and themes

断了今生、忘了曾经 提交于 2019-11-29 04:51:02
I have a web app under source control in git. I have different css files for different customers as well as images and other theme specific things. And also custom reports... Beside the theme things every other aspect of the app stays the same. What would be a recommended way to keep the app as well as the theme information under source control in git. Should I use branches for the theme and the reports or submodules... During development I would like to like my customers theme to to my dev branch and do changes that I commit to my customer specific theme... Is something like the possible with