The workflowservice tag has no wiki summary.
0
votes
0answers
5 views
IParameterInspector with Workflow Service (XAMLX)
I have class that I use to validate incoming request to WCF services, that derives from IParameterInspector:
public class RequestModelInspector : IParameterInspector
{
public object ...
0
votes
1answer
47 views
Workflow Services Testing and Moq
I'm trying to unit test a Workflow Service by using Microsoft.Activities.UnitTesting
The goal is to mock the service's extensions in order to ensure that all steps are executed.
The mock objects ...
1
vote
0answers
70 views
Windows workflow, TrackingParticipant and Idle vs Unloaded
I am using windows workflow service and have a need to know when a workflow instance is Idle. Using http://code.msdn.microsoft.com/Windows-Workflow-b9d5ccb7 as a resource, I have created a ...
0
votes
0answers
27 views
Reading endpoint from config file in workflow service
I know how can I read information from the config file in the activities by using C#
var servicesSection = (ClientSection)WebConfigurationManager.GetSection("system.serviceModel/client");
...
1
vote
1answer
38 views
Generic InArgument throws an exception trying to get the value
I have an Activity where I declared a InArgument without a type (because I want to know the type of the Expression at design time).
When I execute the activity I get this error in var contentTelegram ...
1
vote
1answer
52 views
How to get workflow service start/stop status [closed]
I have created one long running work flow in asp.net 4.0 and I have start this from different web application's Application_Start event like,
var LicClient = new WFService.LicWFClient();
...
0
votes
1answer
38 views
Check if client is connected to Workflow Service
I'd like to write a selfhosted .NET Workflow Service like this:
(http://i.stack.imgur.com/Hij20.png)
But how can I determine if the client is still alive? The InactivityTimeout of the WCF binding ...
1
vote
0answers
63 views
Windows workflow 4.0 stops working
I have created one long running workflow in asp.net 4.0.
This WF start once & never stop. I have start this workflow from my web application.
In Global.asax,
protected void ...
0
votes
0answers
324 views
unhandled microsoft .net framework exception in w3wp.exe
I am writing a console application which uses a workflow service.
I tried to attach the visual studio to IIS process to debug my application in two visual studio console but it didn't work and after ...
1
vote
0answers
43 views
Microsoft.Activities.UnitTesting not cater Workflow Service with DefinitionIdentity
I am using WF4.5 and Microsoft.Activities.UnitTesting. I defined DefinitionIdentity for my workflow service. When WorkflowServiceTestHost.Open is called, it will give the following exception:
...
1
vote
0answers
53 views
Extending WorkflowServiceHost with custom endpoints
Is it possible to extend the WorkflowServiceHost with custom endpoints in the same way endpoints are added to the ServiceHost class? For instance, an endpoint implementing the interface ...
0
votes
1answer
99 views
Call a wcf service from a WCF-workflow-service code activity
I have a WCF Workflow Service (xamlx) in which code activities are called by a flowchart.
I added a service reference to a WCF Service I need to call. But the client for this WCF service is not ...
2
votes
1answer
104 views
WF4 WCF Send Message at wrong time
I am hosting a workflow service (xamlx) in IIS. It has some Receive Activities, e.g. MethodA and MethodB. I wrote a MVC pplication as client to call these methods. In PageA, user submits the form will ...
2
votes
1answer
202 views
Accessing Infopath form over the internet
We are a worldwide charitable organisation. We have a problem with one of our SharePoint applications and we are a bit desperate here due to the unavailability of solutions.
A description of the ...
0
votes
1answer
64 views
wcf config setup issue, endpoint defaults to mex
I'm trying to set up my service with wsHttpBinding. The service page loads up just fine in firefox but when using WCFTestClient to make a request, a fault exception is fired because it is apparently ...
0
votes
0answers
26 views
.net workflow. private memebr is shared between instances
I'm using .net 4.5 workflow services with appfabric.
in my workflow I have a custom code activity that contains a private member of type Dictionary.
the data that this member contains is shared ...
1
vote
2answers
230 views
Workflow Service custom tracking participant that talks to a client-side endpoint(s)?
I'm at the investigative stage for Workflow Service and WPF.
Having State Machine WF Service hosted in IIS and one or more WPF clients talking to the WF Service sounds reasonable choice so far.
...
0
votes
1answer
109 views
AppFabric Resume command failure
In AppFabric we see some suspended workflows. When we try manually to resume them we get error:
There was no endpoint listening at ...
0
votes
1answer
236 views
Windows Workflow Services - custom service host. Handling workflow events
I have veeeery simple workflow hosted as a service. I just want is to handle exceptions from this workflow.
My workflow gets 'string' as a parameter and tries to cast it to int. So whenever I send ...
0
votes
1answer
89 views
Unable to get WF Service metadata when BufferedReceive is enabled for Net.Msmq
I have a WF service hosted in AppFabric IIS 7/WAS. It is configured for Net.Msmq - this works fine. The client consumes the service fine. If I change the WorkflowService to allow BufferedReceive, then ...
0
votes
1answer
95 views
How to get workflowservicehost workflow status
I have workflow say WF1 hosted in workflowservicehost.
Now at client side I want to fetch the status of the WF1.
Is there any way to get the status.
I don't want to use the Workflow tracking to get ...
0
votes
1answer
77 views
Workflow correlation on collection
I have below workflow
Receive activity
1a. Create collection of the documents
Send activity (send the collection of document ids)
Receive activity (CorrelationHandle-single document Id)
...
1
vote
0answers
96 views
Workflow services scalability issue
I'm currently experiencing some issues with workflow services.
They work fine if I start 4, 5 in short sequence, but if I increase this value (starting from ~10) then I get the following exception:
...
0
votes
1answer
74 views
Embed a XAML Workflow into another XAML Workflow
We have a situation where there are two XAML workflows (WF1 and WF2). WF1 is a superset of WF2. Thus while WF2 executes independently of WF1 within the system, we want WF2 to execute within the scope ...
2
votes
1answer
303 views
.NET Workflow 4 Create a Custom Persistence Store that is used by a WCF-enabled Workflow
I am wanting to use WF 4 to as the workflow engine for my project. The activity that I'm using WF for is long-running (could happen over weeks or months), so I want it to use a persistence store. I ...
0
votes
1answer
559 views
WCF Workflow Service REST interface [duplicate]
Possible Duplicate:
RESTful Workflow Service Endpoints in WF4 / WCF
I am trying to make Windows Workflow Services 4.0 work with a REST interface. I have a very simple workflow service ...
0
votes
1answer
171 views
Why put activities between Receive and SendReply instead of after them in Workflow Service
Most of the examples that I've seen on Workflow Services put activities between the Receive and SendReply activities. However, if the activities take a long time to complete the service timesout. I ...
1
vote
1answer
544 views
Workflow Foundation 4, Best way to execute Workflow
Before asking a question, and before you all get mad because there are a couple of similar questions, I would like to explain a bit what are project requirements. You will see that question differs ...
0
votes
1answer
129 views
How do I define a workflow that is triggered automatically once a form is submitted in the form library?
I need to submit a form which triggers a workflow that goes through different stages.
How do I start first, is there a simple procedure to make it happen?
please help me.
2
votes
1answer
136 views
Workflow Service to guide client with next possible steps
Workflow Service consumes user input using Receive activities. Workflow does some work upon getting data from caller using business logic embedded in Workflow. This sounds great with one exception. ...
0
votes
0answers
202 views
how to return a string from code activity
I have a custom Code Acitvity which has a method called Execute which returns
OutArgument<T> Value. When I add this code activity WorkFlow it's giving me option of choosing
return any data ...
0
votes
1answer
185 views
Workflow service as a service reference on WCF service
I have added workflow service as reference to wcf service, and it created web.config file with client endpoint. while creating the proxy object its running into issue. Its not able to recognize the ...
1
vote
1answer
372 views
c# Call Workflow Service by HttpRequest without Add Service Reference
I am trying to call a Workflow Service from an ASP .NET project without adding a Service Reference to my asp .net project. I found an example on how to call a web service without adding it as a ...
0
votes
0answers
161 views
Workflow Foundation Service with JSON endpoint
Can we call Workflow service Receive activity method from JavaScript json call? I am trying to define the json endpoint same as WCF service (As WF service is WCF + WF, thought it should be same as ...
1
vote
1answer
180 views
Call workflow service without adding it as Service to the solution
I am working on an asp .net net project which calls a workflow service. I want to call the service without adding it as a service to the solution. I am using the following code
XNamespace ns = ...
0
votes
1answer
280 views
Workflow Service Error
I am trying to call a workflow service from an asp .net application and i am getting the following error. Any ideas or help pleasE?
System.ServiceModel.FaultException: The operation could not be ...
0
votes
1answer
347 views
WCF WorkFlow Service
I am working on WCF WorkFlow Service Application. i have two ReceiveAndSendReply Activity in sequence. i have set CanCreateInstance to true in both the activities Now i am not able to access the ...
0
votes
1answer
61 views
WorkFlow Host Error
i have MVC application as client application for WCF workflow service. i sent email from Workflow which is having workflow instance id along with approve and decline link. Clicking on approve and ...
1
vote
1answer
129 views
Retry period after an unhandled exception in a Workflow
Currently in our workflow application if it encounters an unhandled exception it will reload the workflow from the most recently persisted state and try again. Are there any ways to configure how this ...
0
votes
2answers
217 views
Workflow 4 service to spawn (send & receive) multiple workflow services in parallel
Suppose there exists a workflow service A. WF A may have more than a single instance (using CanCreateInstance).
Now, suppose there exists WF B, which is different (in content), but with the same ...
0
votes
1answer
427 views
Enabling Persistence of WCF Workflow Service
how to Enable Persistence of WCF Workflow Service from the MVC Web application ?
1
vote
0answers
119 views
Get Response From External App in Windows Workflow
i am working on one small app i.e workflow wcf service which takes input of array of email and parallelforeach is sending email to each email id. in email i am sending two links for approval and ...
0
votes
1answer
174 views
Correlation in Windows Workflow
I am new to WF and i am working on the correlation on WF.i am not finding any step by step guide which explains correlation in easy language. please suggest me some step by step and easy to implement ...
0
votes
1answer
113 views
Start/Finish Workflow service from two different actions
I have workflow (attached image) with two Recieve Actions (Start and Finish).
Both Actions correlate on WorkflowId parameter. I also have FinishWorkflow (bool) parameter.
I wanted to start workflow ...
2
votes
1answer
490 views
Define a different default ServiceHostFactory foreach workflow
Is it possible to define a standard ServiceHostFactory foreach 'workflow' service (xamlx)
Our customers can make there own workflows (xamlx) using a custom workflow designer. We force the ...
1
vote
1answer
578 views
Invoke Child Workflow Activity Asynchronously
Team:
I need to invoke a WF activity (XAML) from a WF service (XAMLX) asynchronously. I am already referencing the Microsoft.Activities.Extensions framework and I'm running on the Platform Update 1 ...
2
votes
1answer
417 views
Workflow Service stops responding after 464 messages
I am having a peculiar issue while executing workflows.
I have tried everything I could think of and now need ideas.
Here is my configuration:
1. A WF4 Workflow Service (xamlx) hosted in IIS 7 and ...
0
votes
1answer
169 views
Get Current Path of IIS Hosted AppFabric Workflow Service
In an IIS hosted workflow service, how do I get the current path of the workflow?
For example, my workflow is deployed in the following directory:
/Site/WebApp/SubDir/MyWorkflowService.xamlx
If ...
0
votes
1answer
407 views
web.config inheritance/merge/scoping of appSettings not working in IIS Hosted WCF/Workflow Service in sub-folder
I am currently testing the following structure in IIS for my AppFabric Workflow Services and WCF Services:
/WebApp/ <-- IIS Application here
/WebApp/bin/ <-- binaries here
/WebApp/web.config ...
0
votes
1answer
54 views
Define a void two-way operation using Receive activity
How do I configure a workflow to expose a two-way void operation?
So that:
1) caller is blocked until operation completes and
2) caller is notified on exceptions (faults)
Using Receive + SendReply ...


