workflow

ERROR: request not found in the TrackedRequests. We might be creating and closing webs on different threads

吃可爱长大的小学妹 提交于 2019-12-11 08:02:43
问题 This is an error I receive from Sharepoint when I deploy a custom workflow to a forms library. The workflow is very straightforward and doesn't do anything fancy. I was reading from the an infopath form, but have since stripped down all non-essential code to see if I can get it working. As far as I can tell, other workflows are fine (I've developed others on the same box and they are intact and functioning). The design view of the workflow is as follows: alt text http://img5.imageshack.us

What kind of Git workflow suits our case?

人盡茶涼 提交于 2019-12-11 07:55:28
问题 We have currently just master branch. Our current workflow involves implementing the features locally, committing to the repository and updating the test server, letting the client know about it and if he approves the changes we also update the production. The thing is that now we use SVN and we update manually the specific folders and files that we have changed because otherwise we might get unwanted changes to production. With Git as our near-future repo that we use for one project already,

bookmarking inside a transaction WF4.0

雨燕双飞 提交于 2019-12-11 07:54:45
问题 I am creating long running workflow with will create a Bookmark for the persistance. When I execute the workflow it is workflow is working like a charm. Issue is here when I enclose the entire workflow in transaction scope, it is not completing its execution once it hits .waitone() I don't see the execution. For sure we need the transaction to be present out the workflow. I checked the DTC setting on the DB its ON. I think issue is with bookmarking in WF 4.0 and transaction on top of it. 回答1:

Version control workflow with 'external' binary files

℡╲_俬逩灬. 提交于 2019-12-11 07:17:01
问题 I'm working with an embedded system software project right now, and we're facing some problems dealing with some precompiled binaries living inside our repository. We have several repositories for different parts of our project: One for the application itself, one for the OS, one for the bootloader and several libraries. All of them, except the one for our application, are shared with other teams, for other projects. We are using git (and changing is not an option right now), but I think we'd

WF4 Workflow under AppFabric not resuming properly after IISreset

北战南征 提交于 2019-12-11 05:58:18
问题 Folks, I've been having some trouble with a WF4 problem. I'm modeling a batch engine/work scheduler after Ron Jacobs' demo in his endpoint.tv webcast (http://archive.msdn.microsoft.com/wf4BatchJob). In his example, the "work branch" just counts inside a while loop. For my sample, I send a message to another workflow called SampleEngine.xamlx which does the counting. Every count, this workflow calls back to the parent (JobScheduler.xamlx) and reports progress completed. This works perfectly

How do I get last persisted workflow instance Id to reload it?

笑着哭i 提交于 2019-12-11 05:29:51
问题 Lets say I have persisted self-hosted workflows (running locally IIS express) that use WorkflowApplication programmatically by using the SqlWorkflowInstanceStore object model. app.PersistableIdle = delegate(WorkflowApplicationIdleEventArgs e) { return PersistableIdleAction.Unload; }; Then, I accidentally / deliberately stopped my web application, restarted my visual studio (local development). My questions: Restarted my application, How would I retrieve last persisted application instance

Can I loop a list in SharePoint with Visual Studio?

随声附和 提交于 2019-12-11 05:07:31
问题 (Using SharePoint 2010) Hi guys, I'll try to give enough background for this to make sense. Basically we have a list of customers with their phone numbers and other info. This list is sorted by an overdue date. We have telemarketer staff that call the customers in this list. So far we've had only one telemarketer calling the customers in the list which presents no problems. Now however we want to have two tm's calling customers in the list, and possibly more in the future. Of course the

ExceptionActiviti: unknown property used in expression

和自甴很熟 提交于 2019-12-11 05:07:27
问题 sI use activiti for my workflow on alfresco 4.2.c. I want to assign to a group from my form selection. But when I press submit task it throws an exception: org.activiti.engine.ActivitiException: Unknown property used in expression My activiti is: <userTask id="kiemtranoidungthethuc" name="Kiểm tra nội dung, thể thức VB- Chuyển cho phòng TCHC" activiti:assignee="${bpm_assignee.properties.userName}" activiti:formKey="wfdi:kiemtranoidungthethucTask_tc"> <extensionElements> <activiti:taskListener

git - should source files and repository be on the same machine?

倾然丶 夕夏残阳落幕 提交于 2019-12-11 04:34:12
问题 I plan to install a basic git server. The point is to, somehow, centralize projects development. However, the computer where I would like to do this isn't that great. I have no more then a few gigabytes available. Does this make sense? Each workstation will have their own git instalation and their own copy of project files. They connect to the repository server via ssh; The server will have only the repositoty information about the project. Is this ok? Edit: - It can be server-less if

Who propagate bugfixes across branches (corporate development)?

走远了吗. 提交于 2019-12-11 03:43:34
问题 We have many release and custom branches. When bugfix occur it MUST propagated across many branches. I have several related questions: who decide (which role) where propagate bugfix who control (which role) bugfix propagation where fix bug - in trunk/default or in selected branch? is it need test bugfix on all branches by bugfix developer or only on original and pass another branch testing to QA team? who propagate bugfix - original bugfix creator or assigned separate person (which role)? 回答1