Tagged Questions
The wcf-extensibility tag has no wiki summary.
10
votes
1answer
648 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
30 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 ...
0
votes
1answer
32 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
26 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
70 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
1answer
376 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
498 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 ...