Questions tagged [custom-activity]
78 questions
1
vote
3 answers
How can a WF4 Custom Activity determine that its in design mode v. executing mode
I have a WF4 custom activity with a custom designer (WPF). I would like to have slightly different behaviour in the CacheMetaData override depending on if the Activity is in Design or Execution mode.
Edit: Reasons for requirement.
We have…

Preet Sangha
- 64,563
- 18
- 145
- 216
1
vote
1 answer
Custom UIActivity : image icon inverted color
For Custom UIActivity, activity image icon color is inverted,which is supposed to be in black and white.
Please suggest me the answer.
My code to add image:
- (UIImage *)activityImage {
return [UIImage imageNamed:@"openWith.png"];
}

rishu1992
- 1,414
- 3
- 14
- 33
1
vote
1 answer
Binding output of Custom Activity designer to activity argument
I am trying to add a custom activity designer for an activity that I have. The activity looks a little like:
public class WaitForUserInputActvitiy : NativeActivity
{
public InArgument UserInteraction { get; set; }
}
I…

gbanfill
- 2,216
- 14
- 21
1
vote
1 answer
Custom activity designers in Workflow Foundation 3.5: How do they work?
Intent of this post:
I realise that Workflow Foundation is not extremely popular on StackOverflow and that there will probably be not many answers, or none at all. This post is intended as a resource to people trying to customise workflow…

stakx - no longer contributing
- 83,039
- 20
- 168
- 268
1
vote
0 answers
Windows Workflow Foundation - how to add namespace using in custom activity
Is there a way to add a namespace using in a custom activity by the designer instead of writing directly in the xaml?
Pascal

planglais
- 11
- 2
1
vote
1 answer
Is there a workaround for not including custom activities in build controller?
I need some assistance with developing custom activities for TFS build. I have followed the steps in blog post Customize Team Build 2010 – Part 7: How is the custom assembly found?.
I have created a custom activity built into a DLL file and used in…

amateur
- 43,371
- 65
- 192
- 320
1
vote
1 answer
Get Child Activity Subtree
I'm converting a legacy workflow system to WF4 so I have to jump through a couple hoops to make it match up with the api of our application. So I'll try to keep the problem explination as simple as possible. :)
I have a custom activity that takes a…

Marcus
- 111
- 1
- 1
- 10
0
votes
2 answers
"System.Workflow.Runtime.Hosting.PersistenceException" Custom SharePoint Sequential workflow
I am getting following error in sharepoint Logs for my SharePoint Visual Studio Sequential workflow having a custom activity.
The custom activity is created through Component Class.
I am not sure why this error is coming? Please…

Pankaj
- 11
- 2
0
votes
0 answers
React native open external link on notification using Notifee
How can I open an external link by pressing the push notification without opening the app?
I want to use FCM and Notifee for this purpose.

Mohsen
- 1,415
- 1
- 13
- 26
0
votes
0 answers
How to create Custom menu and activity
How to create custom menu like image sample?(java-android-android studio)
Can use the library for this?!
enter image description here
I don't create this activity and menu!
I use fragment for activity but i can't create menu and activity !

Farzad
- 1
- 1
0
votes
0 answers
How can I load contacts and filter it out in Elsa SendEmail Activity by extended with my custom activity
I wanna build a Marketing Tool so the first module is to build up the Bulk Email through Elsa on all my database table contacts.
so Is anyone here who has built that type of workflow with bulk email on all contacts we can also filter contacts and…
0
votes
1 answer
Access denied to storage account from Azure Data Factory
My goal is to run an exe file stored in a private Azure Blob container.
The exe is simple : it creates a text file, write the current datetime in it, and then push it to the private Azure Blob container.
This has to be sent from Azure Data Factory.…

tmsagora
- 1
0
votes
1 answer
c# - elsa workflow - child workflow - how to get workflowInstanceId of parent workflow
I have an elsa workflow parent which is calling some child workflows.
Every child workflow has some custom activities (based on SendHttpRequest elsa activity).
These custom activities need to call an external api and provide the workflowInstanceId…

Octavian
- 15
- 2
0
votes
1 answer
Executing Batch service in Azure Data factory using python script
Hi i've been trying to execute a custom activity in ADF which receives csv file from the container (A) after further transformation on the data set, transformed DF stored into another csv file in a same container (A).
I've written the transformation…

Saravana Kumar
- 37
- 6
0
votes
0 answers
HttpClient.SendAsync is throwing "A task was canceled" issue
We are making a PUT call to the service layer to update an entity information
HttpClient.SendAsync method is throwing "A task was canceled" issue even though the API call is successfully made to the backend service layer. I could see the logs from…

Sujith
- 11
- 3