Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
7answers
2k views

Open source document approval system or framework?

I want suggestions on an issue tracking system, be it for good existing projects or frameworks. I'm not too concerned about what language it's in, and would even consider C# and .NET if it was mature ...
6
votes
13answers
476 views

Favorite programming brainstorming activity?

As an artist and musician, I often want to sit down and just let the code roll like a piece of free-form poetry, but I've found that doesn't work as well as when I have a set goal in mind. I've been ...
6
votes
4answers
8k views

In sharepoint designer's workflow editor how do I get the workflow initiators username?

In Sharepoint designer's workflow editor I wish to retrieve the username/name of the work flow initiator (i.e. who kicked it off or triggered the workflow) - this is relatively easy to do using 3rd ...
5
votes
1answer
181 views

Dynamic parameters in custom Activity?

We are re-hosting the WF-4 designer in our own app. We have something called a Filter. Now we want an activity that lets you run this filter and work with the results in a ForEach. Simple enough. ...
4
votes
3answers
11k views

android: open a pdf from my app using the built in pdf viewer

This was my original question: I want to be able to open a pdf file in my app using the android's built in pdf viewer app, but i dont know how to start other apps. I'm sure i have to call ...
3
votes
5answers
350 views

Flowchart diagrams vs. UML activity diagrams

What is the practical difference between using flowchart diagrams and UML activity diagrams? I have some thoughts, but maybe I'm missing an elephant in the room? Flowchart diagram: Widely used; ...
3
votes
3answers
158 views

Exit a workflow?

Is there a way to exit a workflow more gracefully than throwing an InvalidWorkflowException? I'm writing an activity (that interacts with an SQL database) that needs to short-circuit if an operation ...
3
votes
1answer
1k views

Scheduling runtime-specified Activity in Workflow 4 RC

so I have this requirement to kick off Activities provided to me at run-time. To facilitate this, I have set up a WorkflowService that receives Activities as Xaml, hydrates them, and kicks them off. ...
3
votes
1answer
75 views

Workflow no-code authoring

I want to use the no-code authoring in the workflow. So no code behind. Let's say I have 2 custom activities with dependency properties. How can I bind a property from activity1 to activity2 ?
2
votes
1answer
42 views

Get Workspace source control folder in the workflow as an argument

I am creating a custom activity for my build in TFS 2010, and I need to pass the activity the source control folder for the current build definition. I need this as it is defined on the Workspace ...
2
votes
2answers
33 views

Multiple instance performance issues

I am using windows workflow 4.0 version in my project to manage workflow. One project gets created in the system which has 100 documents to be approved by users and each document should follow same ...
2
votes
1answer
79 views

Saving Activity State

I have two activities A, B . Now from A i call B by pressing a button (using startActivity()) , then press Back key to go back to A . Now when i press Button again to go to B , fresh activity is ...
2
votes
1answer
124 views

Scheduling child activity that implements an interface with input parameters

public sealed class Parent : NativeActivity { public Parent() { Childrens = new Collection<Activity>(); Variables = new Collection<Variable>(); ...
2
votes
2answers
49 views

Which Activity to use to represent a long wait for a document in my WF app?

Basically, I have a point in my workflow where after a document has been sent and a number of things will/might happen. The customer has 10 days to send a response When the customer's response has ...
2
votes
0answers
293 views

WPF .NET 4 , workflow parameters and “Compiler error(s) encountered processing”

My workflow: <Activity mc:Ignorable="sap" x:Class="QCISRApplication.QCISRTest1" xmlns="http://schemas.microsoft.com/netfx/2009/xaml/activities" ...
2
votes
2answers
711 views

Use MatchPattern property of FindMatchingFiles workflow activity

I'm customizing the default workflow of build process template using TFS 2010 Team Build. There is an activity named FindMatchingFiles allows to search for specific files with a pattern defined in ...
2
votes
1answer
192 views

What is the point of a .NET 4.0 TryCatch Activity if the Finally is not guaranteed to execute?

I was designing an Activity today and I came across an issue by which rethrowing an exception within the Catch of a TryCatch block does not execute the Finally which is also associated with it. Upon ...
2
votes
2answers
627 views

How to assign an argument to the variable in Workflow Foundation 4.0?

This simple code fails with the following error: The following errors were encountered while processing the workflow tree: 'ArgumentValue': The argument named 'Parameter' could not be found on the ...
2
votes
0answers
190 views

Reference an internal class from a Windows Workflow Activity

I'm creating a custom Workflow activity for use within TFS2010. In the same assembly I have a XAML activity and a C# code activity. The XAML activity references the code activity. When the assembly ...
2
votes
1answer
342 views

How to read the Web.Config file in a Custom Activity Designer in a WF4 Workflow Service

I have a WF service with a custom activity and a custom designer (WPF). I want to add a validation that will check for the presence of some value in the web.config file. At runtime I can overload ...
2
votes
1answer
180 views

Add sub categories to a Dependency Property in a Workflow Activity

I wish to create an workflow activity that has a dependancy property structure like this Setting Wait Period Days Hours Mins At the moment the code below will show Setting with the Wait Period ...
2
votes
1answer
173 views

Workflow activities

Let's say I have a custom activity that has a dependency property of type GUID. I want in my custom designer to show like a combobox (or my own usercontrol) with possible values to select from (the ...
2
votes
2answers
720 views

Loading workflow activity dynamically from XOML

I am trying to implement an activity similar to InvokeWorkflow, which could dynamically load a XOML file, instantiate an activity tree from it, and use it as its only child. This would be similar to ...
2
votes
1answer
1k views

Add multiple Property Metadata to a Dependency Property in a Workflow Activity

I am building a number of Custom Activities in Windows Workflow and I need to add a DependencyProperty which can list a number of values for that property which the user can then select when using the ...
2
votes
1answer
254 views

WorkflowElement in Visual Studio 2010 Beta 2

I've downloaded beta 2 of visual studio and followed various tutorials (http://bloggersguides.net/media/p/188.aspx) regarding the creation of custom activities for Workflow. In all of the examples the ...
2
votes
3answers
500 views

WF — how do I use a custom activity without creating it in a separate Workflow Activity Library?

I am trying to accomplish something that seems like it should be very simple. I have a State Machine Workflow Console Application with a workflow in it. I have created a custom activity for it. This ...
2
votes
1answer
317 views

SharePoint Workflow completes prematurely when reaches the onWorkflowItemChanged event

I have a workflow running on a forms list. The workflow has an OnWorkflowItemChanged activity sitting within a While activity. I know that the workflow enters the While loop and checks the while ...
2
votes
2answers
1k views

Custom Windows Workflow activity that executes an asynchronous operation - redone using generic service

I am writing a custom Windows Workflow Foundation activity, that starts some process asynchronously, and then should wake up when an async event arrives. All the samples I’ve found (e.g. this one by ...
2
votes
1answer
2k views

How do I pass data between activities in Windows Workflow?

I'm not completely sure I understand the workflow way of doing things, but if it's a pipeline n filter style model I should be able to pass data (even strings) from one activity to another. Does ...
1
vote
3answers
35 views

Workflow Activity - Save Workflow Activity Name to a variable using the 'Assign' activity

I'm actually embarrassed to ask this question but here goes. In a workflow activity, how do I get the name of the current activity? For example, if I have a variable called "Name", how can I set ...
1
vote
1answer
90 views

How to get UserId of current user in Custom Workflows of Microsoft Dynamics CRM 2011?

I need userId of current user in Custom Workflows of Microsoft Dynamics CRM 2011. So can you suggest me how to get it?
1
vote
0answers
84 views

Change WF4 ActivityDesigner theme

I want to change my rehosted activities look to: Already tried ActivityDesignerTheme Need to do it without using WorkflowViewElement because I don't want to lose it's behaviors (breakpoint, ...
1
vote
1answer
37 views

Passing value to Switch activity

I need to pass value from my custom activity to the Switch activity without using workflow variables. Also, i dont want to create my own custom Switch activity to do this. I hope this is possible
1
vote
1answer
163 views

Custom Activity Designer(like FlowChart activity) in WF4.0

Is it possible to create a Custom activity, same as Flow Chart Activity? As Flow Chart activity is a sealed class, we can not use it directly, so is it possible to place a Panel(for holding other ...
1
vote
1answer
178 views

TFS Build 2010 with Windows Workflow Copy files

I am new to Windows Workflow but very familiar with MSbuild and TFS. For some reason I can't wrap my head around Windows Workflow, so I hope someone could help me. I'm also really familiar with XAML ...
1
vote
0answers
124 views

Windows Workflow rules engine - determine which rule is executing

SETUP We are using the Windows Workflow Rules Engine to implement a discounting system. Our rule setup is as follows: Rule Name: 10% Discount on Foo Chairs Priority: 0 Reevaluation: Never Active: ...
1
vote
0answers
84 views

Correlate a graphical recieve with another one inside a code activity

you could imagine an xaml service that exposes a receive activity. This is the first activity in my worklow. Behind this receive there are simple activities as InitializateCorrelation", "assign", ...
1
vote
1answer
124 views

Persistence inside the execute method of a nativeactivity

I need to figure out if something is possible or if there is a better solution to my issue. Below is a scenario that I have. Inside of the activity's Execute method, I need to be able to run 3 ...
1
vote
1answer
531 views

Programmatically creating an Assign in a Flowchart Workflow

I need to programmatically define a serializable flowchart Windows Workflow that accepts input arguments and returns a result. I understand how to create these workflows using a designer, but I need ...
1
vote
1answer
137 views

Deleting app_offline during TFS 2010 build

I have a custom TFS Build process for my Web Application Project, which also does a publish. To accomplish this I attempt to delete the current publish location before copying over the compiled ...
1
vote
1answer
135 views

How to get the value back from IN/OUT argument with nested activities

Hi i have 2 nested activities. Both have parameters called 'SessionID'. Child activity have an IN/OUT argument called 'SessionIDParam'. I set the SessionIDParam of the child from SessionID of the ...
1
vote
2answers
146 views

Reusable Sub Workflows?

I am in process of developing Class library of Sub workflows; I have set of Activities which I use for creating Sub workflow. I want to develop these sub workflows as reusable workflows which I can ...
1
vote
2answers
160 views

Three Activity stacks

I'm trying to figure out how to implement an interesting concept. Suppose there's a bar at the bottom of my application with 3 buttons. We'll call them A, B, C. I want you to think of these as 3 ...
1
vote
0answers
208 views

Hidden Workflow Arguments to System.Activities.ActivityBuilder

I have rehosted the Workflow designer, and the base activity that i load is the Activity Builder(workflowDesigner.Load (activityBuilder);) I basically need to add in some details to the activity, and ...
1
vote
1answer
234 views

Add InArgument of Activity to Root Activity

I have workflow designer which I use for authoring workflow; now when I drop any activity to Designer I catch that in ModelChanged event and can get the all the InArguemnt of that type now I want to ...
1
vote
1answer
128 views

How do I softcode a workflow activity in .NET?

I need to write a static method which is performing some kind of parsing on a string with signature like: string ParseMessage(string messageToParse) I would like the whole method ParseMessage to be ...
1
vote
1answer
650 views

UML activity diagram for eCommerce site

I'm trying to make an activity diagram for an eCommerce site. Most of the site has been developed already, but I find the task of making its diagram a tedious one because of the site's complexity. ...
1
vote
0answers
288 views

What could be causing a DurableInstancing.InstanceNotReadyException, and how can I fix it?

We have a business logic for managing the document life cycle. This is implemented using Workflow Foundation 4 and WF Persistence. During the execution of the workflow, certain bookmarks are created ...
1
vote
1answer
421 views

Custom Workflow activity designer - Binding expressionTextBox in code

I have a activity that I need to create, it contains two combo boxes that have the service that the activity is to call and then the method. Once the method is called I create a bunch of textboxes for ...
1
vote
0answers
293 views

scroll start point of a HorizontalScrollView

In the method onCreate, I tried to put a series of TextView in HorizontalScrollView and then I tried to set the value of the scroll to a TextView. Not working. When I find the TextView I need, i put ...

1 2 3