Maurice

3,278
reputation
266 views

Registered User

name Maurice
member for 1 year
seen 1 hour ago
website
location Netherlands
age 47
Computer geek and paraglider (amongst other things)
17h
answered Out of browser Silverlight app - how to setup automatic updates?
Dec
13
answered RIA: “Use local IIS Web server”
Dec
11
accepted Is it possible to configure the Windows Workflow SqlWorkflowPersistanceService to use different table/procedure names
Dec
11
answered Workflow 4.0 custom activity to start external process
Dec
10
accepted Changing windows workflow assemblies while running?
Dec
9
answered Invoke Windows Workflow Recursively
Dec
9
answered Changing windows workflow assemblies while running?
Dec
6
awarded  Mortarboard
Dec
3
accepted Workflow Foundation Separate Schema
Dec
2
answered Workflow Foundation Separate Schema
Dec
2
answered Suspending the workflow instance in the Fault Handler
Nov
30
accepted What are the good practices for hosting MS Windows Workflow runtime for an asp.net mvc application?
Nov
25
awarded  Nice Question
Nov
24
accepted Workflow in existing WCF
Nov
24
answered Workflow in existing WCF
Nov
24
awarded  Notable Question
Nov
20
answered Is Workflow Foundation StateFinalizationActivity blocking a thread?
Nov
19
accepted Windows Workflow - TerminateActivity causes workflow to fault?
Nov
13
comment The communication object cannot be used for communication because it has been Aborted.
The first thing to do is enable full tracing in the service. This will often give you a lot of info on what the original problem is.
Nov
12
answered The communication object cannot be used for communication because it has been Aborted.
Nov
12
answered How to persist the workflow when server system is crashed
Nov
9
accepted Workflow 4.0 in a single threaded apartment?
Nov
5
revised What are the good practices for hosting MS Windows Workflow runtime for an asp.net mvc application?
added 641 characters in body
Nov
5
comment Workflow 4.0 in a single threaded apartment?
When you are using the WorkflowApplication you can set the SynchronizationContext and gain control over the threads. By default, if the SynchronizationContext isn't set, it will use the ThreadPool completion ports. But if you set the WorkflowApplication.SynchronizationContext to SynchronizationContext.Current in say WPF your activities will execute on the UI thread instead of the ThreadPool. The contents of SynchronizationContext.Current are dependend on the execution environment or you can create your own implementation if need be.
Nov
5
answered What are the good practices for hosting MS Windows Workflow runtime for an asp.net mvc application?
Nov
5
answered Workflow 4.0 in a single threaded apartment?
Nov
5
accepted Hosting WCF Service Application with Plesk Panel 9.2
Nov
4
comment Windows Workflow - TerminateActivity causes workflow to fault?
Which is why you don't throw exceptions around when it isn't needed. But if there is an unexpected issue and you want to stop processing it is the way to go. And in regular code this is no different otherwise you will be adding a lot of extra tests to your code.
Oct
31
answered Windows Workflow - TerminateActivity causes workflow to fault?
Oct
29
answered Is it possible to configure the Windows Workflow SqlWorkflowPersistanceService to use different table/procedure names
Oct
28
comment Use Windows Workflow Foundation to develop timesheet approval and submit system
IIS will recycle the AppDomain when it sees fit to do so and when there are no more external request being handled. But your workflow might still be running as the result of a request and will be killed. Provided you use persistence it can restart in another thread but the new AppDomain will have to spin up before that can be done. And depening on the version of IIS and setting that normally means then the next external request comes in.
Oct
27
accepted Use Windows Workflow Foundation to develop timesheet approval and submit system
Oct
27
accepted Silverlight 3 - dataform errorsummary with RIA validation
Oct
27
revised Run WF 4.0 as a server-side component
edited tags
Oct
27
answered Use Windows Workflow Foundation to develop timesheet approval and submit system
Oct
26
accepted Windows Workflow Dynamic, User-Created Workflows
Oct
25
answered BadImageFormatException IIS hosted WCF service Win7 x86, VS2010b2
Oct
25
comment Windows Workflow Dynamic, User-Created Workflows
SharePoint workflows are WF 3 workflows to be exact.
Oct
25
answered Windows Workflow Dynamic, User-Created Workflows
Oct
23
comment DataContractSerializer C# Can serialize, cannot deserialize, why?
It sounds like you client doesn't know about the MethodDeclaration type. is this decorated with the DataContract attribute and added as a known type to the service contract>
Oct
23
comment Passing proxy object as asyncState in WCF
I added some example code to the answer.
Oct
23
revised Passing proxy object as asyncState in WCF
Added a sample
Oct
23
accepted Passing proxy object as asyncState in WCF
Oct
23
answered Passing proxy object as asyncState in WCF
Oct
23
answered DataContractSerializer C# Can serialize, cannot deserialize, why?
Oct
23
answered Can I broadcast a WCF service?
Oct
22
answered Hosting WCF Service Application with Plesk Panel 9.2
Oct
19
accepted Windows Workflow 4.0 FlowSwitch not working
Oct
19
awarded  Fanatic
Oct
14
accepted How complex an object can be passed to silverlight from server, using WCF?