Browse by Tags
All Tags »
message (RSS)
[WCF]Exposing WCF service to raw MSMQ client via msmqIntegrationBinding WCF has provided two built-in bindings to help work with MSMQ. NetMsmqBinding and MsmqIntegrationBinding . NetMsmqBinding is good for client & services which are both built upon
Read More...
If you're interested in the underlying transfered bits of WCF messages or if you want to build a custom WCF client based on raw network programming interfaces, here are some useful resource about WCF message framing: #[MC-NMF]: .NET Message Framing Protocol
Read More...
[WCF]How to inspect and modify WCF message via custom MessageInspector Recently I received some questions about how to modify message content of WCF operation calls. By checking the WCF extensibility, it seems “ MessageInspector ” is the proper one for
Read More...
[WCF]Secure a dynamically added message header via behavior extension(part 2) This article is the continue of my previous one demonstrating how to secure a custom message header added dynamically in WCF message. In the previous part 1 , I use a custom
Read More...
[WCF]Secure a dynamically added message header via behavior extension (part 1) Recently I receive some questions about how to sign/encrypt a custom message header which is dynamically added when calling WCF service. Sure, sign/encrypt means that we’re
Read More...