English 中文(简体)
Behaviour of SendResponse in theWF4
原标题:Behaviour of SendResponse in WF4

在我的模板工作流程顶端,我设置了“接待请求”/“SendReply”栏,我愿意开展同步行动,使用户能够及时应对正在开始的工作流程。 Client calls of the WF through WCF.

客户了解目前申请情况,并了解申请数据库的条目状况。

例如,我发布命令,叫作一个PorderWF,将命令的地位定在亚洲开发银行,以“接受”。 然后,客户可以做他想要做的事情,而国家武装部队正在做检查、控制等,确定命令的最终价值为“捆绑式”或“错误”。

www.un.org/Depts/DGACM/index_spanish.htm 我预计,客户将在SendResponse街区之后收到答复。 实际上,这似乎并不奏效,而是等待某种“发明”释放客户。 不幸的是,我没有证据表明发生了引起这种行为的事件。

为了测试,仅仅在SendResponde活动之后就开展了一项推迟活动,而且你应当能够照搬我所谈论的行为。

如何避免这一意外错误的任何背后?

“WF

最佳回答

The workflow will continue and execute as much as it can on the current thread and as a result doesn t return to the caller right away.If you add a Delay with a small timeout, say 1 second, to the workflow this will cause the workflow to go idle and the WCF response to be send to the client after which the workflow will continue.

问题回答

暂无回答




相关问题
How to bind a TabControl to an ObservableCollection in XAML

I have the following line of code in my code-behind class. TabControl.ItemsSource = ((MainWindowViewModel)DataContext).TabItemViewModels; I would like to move this to the XAML file. In brief, ...

Bind to ancestor of adorned element

Here is the case: <DataTemplate x:Key="ItemTemplate" DataType="local:RoutedCustomCommand"> <Button Command="{Binding}" Content="{Binding Text}" ...

FlowDocument Force a PageBreak (BreakPageBefore)

I m using C# to create a FlowDocument and fill it with data within a table. Example: FlowDocument flowDoc = new FlowDocument(); Table table1 = new Table(); flowDoc.Blocks.Add(table1); table1....

Editing a xaml icons or images

Is it possible to edit a xaml icons or images in the expression design or using other tools? Is it possible to import a xaml images (that e.g you have exported) in the expression designer for editing?...

WPF TreeView binding through XAML

So I have a class structure like this Store Owner Cashier List of Products Product Name Price List of Vendors Company Name Contact Name So there are 4 ...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签