User Maurice - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T21:13:13Zhttp://stackoverflow.com/feeds/user/19676http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1786154/workflow-in-existing-wcf/1788806#17888061Answer by Maurice for Workflow in existing WCFMaurice2009-11-24T09:04:21Z2009-11-24T09:04:21Z<p>When you publish a WCF service you are publishing the interface and telling it what implementation to use. You can specify only one implementation, otherwise how would WCF know where to route which request. So in short you need to use a separate interface for your workflow services. That said, if you don't want to change your public facing API there is no reason you can't create a minimal implementation that just passes request on to your worklflow service.</p>
http://stackoverflow.com/questions/1764617/is-workflow-foundation-statefinalizationactivity-blocking-a-thread/1769592#17695921Answer by Maurice for Is Workflow Foundation StateFinalizationActivity blocking a thread?Maurice2009-11-20T10:27:02Z2009-11-20T10:27:02Z<p>When using the ManualWorkflowScheduler everything that can be executed will on the current thread. So the workflow will continue and run all the way until its is in the next state and idle.</p>
http://stackoverflow.com/questions/1722857/the-communication-object-cannot-be-used-for-communication-because-it-has-been-abo/1722980#17229800Answer by Maurice for The communication object cannot be used for communication because it has been Aborted.Maurice2009-11-12T15:21:19Z2009-11-12T15:21:19Z<p>Looks like you are passing exceptions back to the client. WCF doesn't like regular exceptions, it wants fauls or a FaultException in case of errors. After and exception has been returned the channel is in a faulted state and cannot be used again. After a FaultException the channel is still usable.</p>
http://stackoverflow.com/questions/1720498/how-to-persist-the-workflow-when-server-system-is-crashed/1722945#17229451Answer by Maurice for How to persist the workflow when server system is crashedMaurice2009-11-12T15:17:42Z2009-11-12T15:17:42Z<p>If you add a SqlWorkflowPersistenceService to the workflow runtime and set unloadOnIdle to true this will persist all you workflows to disk as soon as they become idle. When the server crashes and it is restarted it is able to start the workflow as it last was saved.</p>
http://stackoverflow.com/questions/1681358/what-are-the-good-practices-for-hosting-ms-windows-workflow-runtime-for-an-asp-ne/1682870#16828702Answer by Maurice for What are the good practices for hosting MS Windows Workflow runtime for an asp.net mvc application?Maurice2009-11-05T19:11:43Z2009-11-05T20:34:27Z<p>Are you referring to WF3 or WF4 which is a completely different piece of code.</p>
<p>With WF3 there is the central WorkflowRuntime and that is usually hosted somewhere at the application or possibly session level.</p>
<p><strong>Updated</strong>
Some of the things to watch out for:</p>
<ul>
<li>IIS can recycle the AppDomain at any time it wants to when there are no incoming calls being processed. An async workflow is NOT considered part of the request as it is running on another thread.</li>
<li>To migrate workflows from the old to the new AppDomain you need a persistence service.</li>
<li>The new AppDomain might not be activated right away causing delay activities not to execute as soon as you would expect.</li>
<li>Its is generally best to use the manual workflow scheduler but that makes writing code somewhat more complex as you have to schedule the work and then start execution.</li>
</ul>
http://stackoverflow.com/questions/1680697/workflow-4-0-in-a-single-threaded-apartment/1681328#16813281Answer by Maurice for Workflow 4.0 in a single threaded apartment?Maurice2009-11-05T15:35:08Z2009-11-05T15:35:08Z<p>Have you tried using the WorkflowInvoker? This should just execute the workflow on the original thread and not schedule work on a background tread.</p>
http://stackoverflow.com/questions/1650628/windows-workflow-terminateactivity-causes-workflow-to-fault/1654124#16541240Answer by Maurice for Windows Workflow - TerminateActivity causes workflow to fault?Maurice2009-10-31T11:26:20Z2009-10-31T11:26:20Z<p>I think the easiest is to add a ThrowActivity with some custom exception and catch that custom exception at the workflow level. That way the workflow will end normally but all other activities are skipped.</p>
http://stackoverflow.com/questions/1631730/is-it-possible-to-configure-the-windows-workflow-sqlworkflowpersistanceservice-to/1643302#16433020Answer by Maurice for Is it possible to configure the Windows Workflow SqlWorkflowPersistanceService to use different table/procedure namesMaurice2009-10-29T12:16:05Z2009-10-29T12:16:05Z<p>There is no way to tell the SqlWorkflowPersistanceService to use different stored procedures. Their names are coded into the assembly. AFAIK the SqlWorkflowPersistanceService only access tables through stored procedures so you could change all those stored procedures to point to different table names. Not sure if the work, and risk, is worth the benefit though.</p>
<p>An alternative is to write tour own WorkflowPersistanceService. I wrote a SqlCeWorkflowPersistenceService using LINQ to SQL last year and you can adopt that and change the table names. It will work against SQL server as is, the only thing I left out was the workflow ownership part as that is not relevant with SQLCe. You can download the code from <a href="http://code.msdn.microsoft.com/SqlCeWFPersistence" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1627075/use-windows-workflow-foundation-to-develop-timesheet-approval-and-submit-system/1629616#16296160Answer by Maurice for Use Windows Workflow Foundation to develop timesheet approval and submit system Maurice2009-10-27T09:21:51Z2009-10-27T09:21:51Z<p>Workflow would be a good fit for all process related code you need to write. So stuff like the submission, approval or rejection and handling the fact the it is dormant for an excessive amount of time.</p>
<p>A few things to keep in mind. </p>
<ul>
<li>If you are going to use ASP.NET I presume the workflow will be hosted there. So you need to make sure the workflows can run after IIS recycles the AppDomain.</li>
<li>Think about whether to use WF4 or WF3. WF4 is a complete new animal and only in beta. WF3 was release as part of the .NET 3.0 release but has a limited future. It is sill there in .NET 4 and will still be supported bu the bulk of the work will be on WF4.</li>
</ul>
http://stackoverflow.com/questions/1618903/badimageformatexception-iis-hosted-wcf-service-win7-x86-vs2010b2/1621158#16211580Answer by Maurice for BadImageFormatException IIS hosted WCF service Win7 x86, VS2010b2Maurice2009-10-25T15:23:03Z2009-10-25T15:23:03Z<p>The most obvious cause would be that you are loading a 64 bits DLL into a 32 bits process or visa versa. However given that you are running everything on a a 32 bits development box I assume this isn't the case.</p>
<p>The other option is a .NET bug using a generic constraint like this:</p>
<pre><code>public class SpecificClass: BaseClass: where T : class { }
</code></pre>
<p>If you remove the where T : class it should work just fine.</p>
http://stackoverflow.com/questions/1592206/windows-workflow-dynamic-user-created-workflows/1620403#16204031Answer by Maurice for Windows Workflow Dynamic, User-Created WorkflowsMaurice2009-10-25T08:52:02Z2009-10-25T08:52:02Z<p>Having users be able to change workflows is supposed to be one of the stron points of WF. However with WF 3 the whole model is geared very much to code generation and not markup so it is hard to do. Not impossible as you can use pure markup workflows but it is hard. </p>
<p>With WF 4 the story is supposed to be much better as all workflows are pure markup and there is no code involved at all. All code is in predefined activities, which are compiled, and the user can change the workflows as needed. Also the WF designer is much easier to rehost in your own application.</p>
<p>PS SharePoint workflows are WF 3 workflows, even in the new SharePoint version, and WF 4 is a completely new product that shares no code whatsoever.</p>
http://stackoverflow.com/questions/1614036/passing-proxy-object-as-asyncstate-in-wcf/1614106#16141061Answer by Maurice for Passing proxy object as asyncState in WCFMaurice2009-10-23T15:10:00Z2009-10-23T20:06:50Z<p>That should work just fine. The alternative is to use a lambda expression or an anonymous delegate so you can use the same local variable in your completed code.</p>
<p>An example using a lambda expression</p>
<pre><code>client.BeginLogin(user, pass,
ar =>
{
LoginResult result = client.EndLogin(ar);
Console.WriteLine(result);
}, null);
</code></pre>
http://stackoverflow.com/questions/1608893/datacontractserializer-c-can-serialize-cannot-deserialize-why/1613859#16138590Answer by Maurice for DataContractSerializer C# Can serialize, cannot deserialize, why?Maurice2009-10-23T14:30:35Z2009-10-23T14:30:35Z<p>Possible mismatch of the types between the server and the client?</p>
<p>Maybe if you post the exception details we can be of more help.</p>
http://stackoverflow.com/questions/1612389/can-i-broadcast-a-wcf-service/1613842#16138420Answer by Maurice for Can I broadcast a WCF service?Maurice2009-10-23T14:28:32Z2009-10-23T14:28:32Z<p>WCF doesn't really care about the transport used as long as there is an appropriate channel. Take for example the NetMsmqBinding. This uses MSMQ and not some form of direct communication.</p>
<p>That said broadcasting is not really a WCF capability. The closes is the peer to peer capabilities but that is not really broadcasting.</p>
http://stackoverflow.com/questions/1605546/hosting-wcf-service-application-with-plesk-panel-9-2/1605656#16056561Answer by Maurice for Hosting WCF Service Application with Plesk Panel 9.2Maurice2009-10-22T08:03:25Z2009-10-22T08:03:25Z<p>It doesn't depend on Plesk but on the actual server you are controling using Plesk. If it has the .NET framework 3 or later installed you can host WCF services. However if you only have .NET 2 you can't. Please keep in mind that the .NET framework version reported is 2 even if 3.0 or later is installed as that is the version of the CLR which hasn't changes since.</p>
http://stackoverflow.com/questions/1561975/windows-workflow-4-0-flowswitch-not-working/1562358#15623581Answer by Maurice for Windows Workflow 4.0 FlowSwitch not workingMaurice2009-10-13T19:19:09Z2009-10-13T20:10:45Z<p>A FlowSwitch works with string values at the moment. Try converting the InArgument to a string.</p>
<p>Example XAML:</p>
<pre><code><p:Activity mc:Ignorable="" x:Class="WorkflowConsoleApplication2.Flowchart1" xmlns="http://schemas.microsoft.com/netfx/2009/xaml/activities/design" xmlns:__Flowchart1="clr-namespace:WorkflowConsoleApplication2;" xmlns:av="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:p="http://schemas.microsoft.com/netfx/2009/xaml/activities" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:sad="clr-namespace:System.Activities.Debugger;assembly=System.Activities" xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<p:Flowchart StartNode="{x:Reference __ReferenceID0}" sad:XamlDebuggerXmlReader.FileName="c:\temp\WorkflowConsoleApplication2\WorkflowConsoleApplication2\Flowchart1.xaml">
<WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, s:Object">
<av:Point x:Key="ShapeLocation">275,10</av:Point>
<av:Size x:Key="ShapeSize">50,50</av:Size>
<av:PointCollection x:Key="ConnectorLocation">300,60 300,110</av:PointCollection>
</scg:Dictionary>
</WorkflowViewStateService.ViewState>
<p:FlowSwitch x:Name="__ReferenceID0" Expression="[&quot;2&quot;]">
<p:FlowSwitch.Default>
<p:FlowStep x:Name="__ReferenceID1">
<WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, s:Object">
<av:Point x:Key="ShapeLocation">235,293</av:Point>
<av:Size x:Key="ShapeSize">200,34</av:Size>
</scg:Dictionary>
</WorkflowViewStateService.ViewState>
<p:WriteLine>["Default"]</p:WriteLine>
</p:FlowStep>
</p:FlowSwitch.Default>
<WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, s:Object">
<av:Point x:Key="ShapeLocation">270,110</av:Point>
<av:Size x:Key="ShapeSize">60,60</av:Size>
<av:PointCollection x:Key="Default">300,170 285,170 285,283 335,283 335,293</av:PointCollection>
<av:PointCollection x:Key="1Connector">300,170 300,205 330,205</av:PointCollection>
<av:PointCollection x:Key="2Connector">300,170 300,180 290,180 290,270 340,270</av:PointCollection>
</scg:Dictionary>
</WorkflowViewStateService.ViewState>
<p:FlowStep x:Name="__ReferenceID2">
<x:Key>
<x:String>1</x:String>
</x:Key>
<WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, s:Object">
<av:Point x:Key="ShapeLocation">330,188</av:Point>
<av:Size x:Key="ShapeSize">200,34</av:Size>
</scg:Dictionary>
</WorkflowViewStateService.ViewState>
<p:WriteLine>["Its 1 "]</p:WriteLine>
</p:FlowStep>
<p:FlowStep x:Name="__ReferenceID3">
<x:Key>
<x:String>2</x:String>
</x:Key>
<WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, s:Object">
<av:Point x:Key="ShapeLocation">340,253</av:Point>
<av:Size x:Key="ShapeSize">200,34</av:Size>
</scg:Dictionary>
</WorkflowViewStateService.ViewState>
<p:WriteLine>["Its 2"]</p:WriteLine>
</p:FlowStep>
</p:FlowSwitch>
<x:Reference>__ReferenceID2</x:Reference>
<x:Reference>__ReferenceID3</x:Reference>
<x:Reference>__ReferenceID1</x:Reference>
</p:Flowchart>
</p:Activity>
</code></pre>
http://stackoverflow.com/questions/1560906/wcf-security-in-a-windows-service/1561044#15610440Answer by Maurice for WCF Security in a Windows ServiceMaurice2009-10-13T15:37:01Z2009-10-13T15:37:01Z<p>Enable diagnostics on the service. That should give you a pretty good idea of whether the service is even receiving the message and where the service is throwing an exception. </p>
http://stackoverflow.com/questions/1559915/custom-certificate-validation-in-wcf-service/1560027#15600271Answer by Maurice for Custom certificate validation in WCF serviceMaurice2009-10-13T12:51:24Z2009-10-13T12:51:24Z<p>You can create a class derived from X509CertificateValidator and use it to do custom validation of the incoming certificate. Throw an SecurityTokenValidationException if you want to fail validation for some reason.</p>
<p>Set the certificateValidationMode to Custom and specify your validator in the clientCertificate service behavior section of the config file.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms733806.aspx" rel="nofollow">How to: Create a Service that Employs a Custom Certificate Validator</a></p>
http://stackoverflow.com/questions/1553723/how-complex-an-object-can-be-passed-to-silverlight-from-server-using-wcf/1554115#15541151Answer by Maurice for How complex an object can be passed to silverlight from server, using WCF?Maurice2009-10-12T11:50:24Z2009-10-12T11:50:24Z<p>As far as I know there is nothing specific to Silverlight. There are some things to keep in mind though. </p>
<ul>
<li>WCF serialization doesn´t like circular references.</li>
<li>All types need to specified in the contract. So watch out with inheritance etc. </li>
</ul>
<p>In general using DTO's (Data Transfer Objects) and not exposing your business objects is the way to go.</p>
http://stackoverflow.com/questions/1538417/wcf-using-my-custom-servicehost-in-my-app-config-web-config-for-my-wcf-service/1538449#15384490Answer by Maurice for WCF: Using my "custom" ServiceHost in my app.config/web.config for my wcf service?Maurice2009-10-08T15:09:46Z2009-10-08T15:09:46Z<p>You need to create a custom ServiceHostFactory and use that to create your UnityServiceHost. You specify the ServiceHostFactory to use in the SVC file. See the <a href="http://msdn.microsoft.com/en-us/library/aa967286.aspx" rel="nofollow">MSDN docs</a> for the SVC syntax.</p>
http://stackoverflow.com/questions/1537631/unity-and-wcf-library-where-to-load-unity-in-a-wcf-library/1537656#15376560Answer by Maurice for Unity and WCF Library: Where to load unity in a wcf library?Maurice2009-10-08T13:02:53Z2009-10-08T13:12:02Z<p>You can use an IInstanceProvider to create service objects using Unity or another IOC container. Check <a href="http://weblogs.asp.net/cibrax/archive/2007/12/13/wcf-dependency-injection-behavior.aspx" rel="nofollow">this</a> blog posts for details on how to do so.</p>
<p>Next you can use an IContractBehavior implemented as an Attribute to add the IInstanceProvider to the DispatchRuntime by setting the InstanceProvider in the ApplyDispatchBehavior method.</p>
http://stackoverflow.com/questions/1537302/subscribe-to-events-within-a-wcf-service/1537385#15373851Answer by Maurice for Subscribe to events within a WCF serviceMaurice2009-10-08T12:02:03Z2009-10-08T12:02:03Z<p>The service variable is an instance of ServiceHost not your service implementation. Try something like:</p>
<pre><code>MyService myService = new MyService();
myService.outputMessage += new MyService.MessageEventHandler(frm2_outputMessage);
host = new ServiceHost(myService);
</code></pre>
http://stackoverflow.com/questions/1524030/wcf-service-question/1524073#15240731Answer by Maurice for WCF service questionMaurice2009-10-06T07:29:49Z2009-10-06T07:29:49Z<p>Using WCF you can either use streaming or duplex messages to achieve that. Using streaming you are restricted to returning a single stream object. using duplex duplex messaging you pass a callback channel to the server and it can use that channel to make as many calls as you like to the client.</p>
http://stackoverflow.com/questions/1486227/what-are-the-conventions-for-naming-workflow-activities-in-windows-workflow-found/1514729#15147290Answer by Maurice for What are the conventions for naming workflow activities in windows workflow foundation?Maurice2009-10-03T20:15:54Z2009-10-03T20:15:54Z<p>There is no real convention. My general advise is to use meaningful names for people who look at the workflow diagram as that is all they have to see what an activity does.</p>
http://stackoverflow.com/questions/1499276/how-to-disable-activities-cloning-in-wf/1514701#15147010Answer by Maurice for How to disable Activities cloning in WF?Maurice2009-10-03T20:06:20Z2009-10-03T20:06:20Z<p>You can't disable activity cloning as it is an inherent part of how activities are executed. </p>
<p>The way to work around this is to use an dependency property in you activity to store the index value. Now in the workflow you can bind the index property to a property or field at a higher level, like the workflow itself, and the value will be stored there instead of in the cloned copy of you activity.</p>
http://stackoverflow.com/questions/1491100/prevent-wf-runtime-or-persistence-service-from-loading-wf-instances/1514693#15146931Answer by Maurice for Prevent WF Runtime or persistence service from loading WF instancesMaurice2009-10-03T20:02:14Z2009-10-03T20:02:14Z<p>As far As I know there is no real out of the box setting that will let you load workflows without starting them. The easiest approach/workaround would be to use the ManualWorkflowScheduler with activeTimer set to false. That way you can load workflows but they will not be executed until you explicitly do so. Keep in mind that you have to unload any workflow instance you load yourself because no execution means the workflow doesn't become idle and the unloadOnIdle setting doesn't kick in.</p>
http://stackoverflow.com/questions/1512216/using-windows-workflow-foundation-in-applications-with-reporting-requirements/1513638#15136380Answer by Maurice for Using Windows Workflow Foundation in applications with reporting requirementsMaurice2009-10-03T12:39:56Z2009-10-03T12:39:56Z<p>Using the SqlTrackingService in combination with tracking profiles is quite performant, specially when you enable transactional logging. Basically you want to use the tracking profile to only track events you are really interested in. You can also tell it to extract and log specific pieces of user data.</p>
<p>The main way to retrieve the data is not through SQL, although that is possible and for some queries like give all workflows executing a specific activity, but the SqlTrackingQuery class. This will also deserialize the additional user data.</p>
http://stackoverflow.com/questions/1469263/wcf-address-does-not-match-what-i-specify-in-my-web-config/1470462#14704621Answer by Maurice for WCF address does not match what I specify in my web.configMaurice2009-09-24T08:47:44Z2009-09-24T08:47:44Z<p>When you host a WCF service in IIS it is IIS and its configuration who decides the base address for your service and you can only specify relative addresses. The baseaddress only applies to self hosted services.</p>
http://stackoverflow.com/questions/1466739/can-a-wcf-service-w-basichttpbinding-without-a-mex-endpoint-be-exploited-by-abso/1467318#14673181Answer by Maurice for Can a WCF service w/ BasicHttpBinding without a MEX Endpoint be exploited by absolute strangers?Maurice2009-09-23T16:57:29Z2009-09-23T16:57:29Z<p>People (hackers) use port sniffers to find ports where there is something listening. Then they start probing it with data and see what comes back. It doesn't take much work to figure out this is a port that want a SOAP message. Basically the errors returned will tell you as much. So no security by obscurity is no security at all and you might as well publish the URL. </p>
<p>The MEX part is only there to help others create service contract and never a requirement. Take a REST or JSON service for example, there is no concept of a MEX endpoint.</p>
http://stackoverflow.com/questions/1464981/wcf-working-with-webreferences/1465110#14651101Answer by Maurice for WCF - working with WebReferencesMaurice2009-09-23T10:09:05Z2009-09-23T10:35:21Z<p>Using the WCF Add Service Reference in Visual Studio is just a wrapper around calling svcutil. So the only difference is that the dialog may not expose all options svcutil exposes. Not be be confused with Add Web Reference in Visual Studio. This option adds the ASMX style reference and does not use WCF or svcutil at all.</p>
http://stackoverflow.com/questions/1722857/the-communication-object-cannot-be-used-for-communication-because-it-has-been-abo/1722980#1722980Comment by Maurice on The communication object cannot be used for communication because it has been Aborted.Maurice2009-11-13T16:47:47Z2009-11-13T16:47:47ZThe 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.http://stackoverflow.com/questions/1680697/workflow-4-0-in-a-single-threaded-apartment/1681328#1681328Comment by Maurice on Workflow 4.0 in a single threaded apartment?Maurice2009-11-05T20:27:45Z2009-11-05T20:27:45ZWhen 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. http://stackoverflow.com/questions/1650628/windows-workflow-terminateactivity-causes-workflow-to-fault/1654124#1654124Comment by Maurice on Windows Workflow - TerminateActivity causes workflow to fault?Maurice2009-11-04T08:54:13Z2009-11-04T08:54:13ZWhich 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.http://stackoverflow.com/questions/1627075/use-windows-workflow-foundation-to-develop-timesheet-approval-and-submit-system/1629616#1629616Comment by Maurice on Use Windows Workflow Foundation to develop timesheet approval and submit system Maurice2009-10-28T10:56:53Z2009-10-28T10:56:53ZIIS 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.http://stackoverflow.com/questions/1592206/windows-workflow-dynamic-user-created-workflowsComment by Maurice on Windows Workflow Dynamic, User-Created WorkflowsMaurice2009-10-25T08:52:33Z2009-10-25T08:52:33ZSharePoint workflows are WF 3 workflows to be exact.http://stackoverflow.com/questions/1608893/datacontractserializer-c-can-serialize-cannot-deserialize-why/1613859#1613859Comment by Maurice on DataContractSerializer C# Can serialize, cannot deserialize, why?Maurice2009-10-23T20:10:32Z2009-10-23T20:10:32ZIt 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>http://stackoverflow.com/questions/1614036/passing-proxy-object-as-asyncstate-in-wcf/1614106#1614106Comment by Maurice on Passing proxy object as asyncState in WCFMaurice2009-10-23T20:07:22Z2009-10-23T20:07:22ZI added some example code to the answer.http://stackoverflow.com/questions/1561975/windows-workflow-4-0-flowswitch-not-working/1562358#1562358Comment by Maurice on Windows Workflow 4.0 FlowSwitch not workingMaurice2009-10-13T20:09:54Z2009-10-13T20:09:54ZIt works for me :-) In the FlowSwitch Expression I entered "2" (including quotes) or 2.ToString(). In the FlowStep I entered 2 (without quotes as this is a string not an expression.
If have added the XAML I use to the original post.http://stackoverflow.com/questions/1559915/custom-certificate-validation-in-wcf-service/1560027#1560027Comment by Maurice on Custom certificate validation in WCF serviceMaurice2009-10-13T14:44:01Z2009-10-13T14:44:01ZIn IIS you should not have anything checked about the client supplying certificates. The client certificate should be part of the message, if not WCF will not receive the certificate and IIS is doing the client validation. http://stackoverflow.com/questions/1559915/custom-certificate-validation-in-wcf-service/1560027#1560027Comment by Maurice on Custom certificate validation in WCF serviceMaurice2009-10-13T14:02:57Z2009-10-13T14:02:57ZDid you add <message clientCredentialType="Certificate"/> and remove the <transport clientCredentialType="Certificate"/> ?http://stackoverflow.com/questions/1559915/custom-certificate-validation-in-wcf-service/1560027#1560027Comment by Maurice on Custom certificate validation in WCF serviceMaurice2009-10-13T13:41:04Z2009-10-13T13:41:04ZYou can use TransportWithMessageCredential as the security mode. This uses a combination of HTTPS with message security.http://stackoverflow.com/questions/1559915/custom-certificate-validation-in-wcf-service/1560027#1560027Comment by Maurice on Custom certificate validation in WCF serviceMaurice2009-10-13T13:31:36Z2009-10-13T13:31:36ZJust noticed you are using transport instead if message level security. For this to work you need to use message level security instead.http://stackoverflow.com/questions/1559915/custom-certificate-validation-in-wcf-service/1560027#1560027Comment by Maurice on Custom certificate validation in WCF serviceMaurice2009-10-13T13:24:08Z2009-10-13T13:24:08ZThe part of the config you added seems correct. However you didn't add your actual service configuration. so please check if you are actually using "SomeServiceBehavior" with your service. It's happened to me quit a few times that I create a service behavior but forgot to add it to my service.http://stackoverflow.com/questions/1559915/custom-certificate-validation-in-wcf-service/1560027#1560027Comment by Maurice on Custom certificate validation in WCF serviceMaurice2009-10-13T13:00:30Z2009-10-13T13:00:30ZMake sure you add this to the <serviceBehaviors> to validate the client in the service which is what you want. The <endpointBehaviors> is used only on the client to validate the service.http://stackoverflow.com/questions/1559915/custom-certificate-validation-in-wcf-service/1560027#1560027Comment by Maurice on Custom certificate validation in WCF serviceMaurice2009-10-13T12:57:12Z2009-10-13T12:57:12ZThis can work on either the client or service side and is used to validate the incoming message certificate.