The wcf-extensions tag has no wiki summary.
10
votes
1answer
665 views
What is WCF dispatch pipeline message flow
I'm trying to gain a better understanding of WCF's dispatch process in particular the impact and effect on the various extensibility points. From the web pages listed at the bottom, it appears that ...
3
votes
1answer
31 views
Differentiating requests from client and other services
We have a 3 tier application - winform based thick client, several WCF services hosted in windows services and sql. Some WCF services provide functionalities specific to UI in the clients but there ...
2
votes
1answer
758 views
IDispatchMessageInspector: Improving BeforeSendReply functionality
In my WCF project I need to use custom headers in responses so I implemented IDispatchMessageInspector. Honestly all works pretty fine, but I'm disturbing about one little thing.
The thing is that ...
1
vote
1answer
26 views
WCF extensions execution order
If i have few WCF extension modules of same kind (like parameter inspector) can i be sure they're executed in the order i define them in the configuration file?
<system.serviceModel>
...
1
vote
1answer
404 views
WCF service behavior extension throwing null reference exception
So, im trying to write routing service. The idea is that, every time someone calls routing service, endpoint is randomly selected by WCF behavior extension. I used slightly modified example from MSDN ...
0
votes
0answers
8 views
Add TransactionScopeRequired programatically
I want to perform
[OperationBehavior(TransactionScopeRequired = true, TransactionAutoComplete = true)]
int Add(int x, int y);
from code using custom IOperationBehavior implementation.
as ...
0
votes
1answer
23 views
WCF service code was not invoked if it's IsOneWay = true
I'm extend the WCF transport over a message bus, the request-reply mode works well to me. When I'm implementing the input-output mode I met a problem. The situation is:
1, I created the InputChannel ...
0
votes
1answer
42 views
Remove schema elements from WSDL generated by WCF
I have a Product Datacontract with a couple of Datamembers that are part of a WCF Service. I also serialise and store this Product Datacontract in my app using the DataContractSerializer.
Now, I want ...
0
votes
1answer
30 views
WCF Custom Message implementation
In the context of a WCF project, I need to handle in the same way xml and non-xml messages (eg. Standard SOAP, WS-Attachments, etc..). The normal flow of WCF creates a Message object which can handle ...
0
votes
0answers
22 views
WCF Extension is registered but ASP .NET tells it's not
I have GAC'ed a library with BehaviorExtensionElement, added it to c:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config in system.serviceModel\extensions\behaviorExtensions section, it ...
0
votes
0answers
79 views
Access MethodInfo in IOperationInvoker implementation
I have implemented IOperationInvoker to customize the WCF invokation.
In Invoke method I want to access custom attributes of the method which is invoked by OperationInvoker.
I have written the ...
0
votes
2answers
521 views
The element 'behavior' has invalid child element 'myFaultExtension' in wcf app.config
I m trying to catch regular exceptions from a wcf servie in a silverlight client application. For that I've included the respective changes in wcf service as given in
...
0
votes
1answer
382 views
WCF: Message Framing and Custom Channels
I am trying to understand how I would implement message framing with WCF. The goal is to create a server in WCF that can handle proprietary formats over Tcp. I can't use the net.Tcp binding because ...
0
votes
1answer
509 views
Obtaining ClientCredentials from WCF operation
My WCF Service uses a custom credentials validator for custom Message-based security, because I want to ensure each client calling an operation on my web service has a corresponding username and ...