Using WCF and SOAP to Send Amazon Product Advertising API Signed Requests

14. June 2010 23:09 by viperguynaz in .NET, WCF, Featured  //  Tags: , , ,   //   Comments (11)
This sample makes use of a WCF custom MessageInspector as described in the MSDN documentation. A message inspector is an extensibility object that can be used in the service model's client runtime and dispatch runtime programmatically or through configuration and that can inspect and alter messages after they are received or before they are sent. The sample here is derived from Oren Trutner's article “Signing Amazon Product Advertising API – C#/WCF.” Oren’s example is extended to allow all the configuration to occur in the application configuration (app.config) file. All of the Amazon helper methods have been moved to a separate library that can be used/referenced in any project. A separate console app has been included that demonstrates how to use the app.config file to configure the WCF endpoints and how to add the custom MessageInspector behavior to the endpoint. [More]

WCF Interoperability and Extensibility - Part Two

24. May 2010 20:29 by viperguynaz in .NET, WCF, Featured  //  Tags: , ,   //   Comments (1)
In this part, we examine how to use another custom text message encoder to modify the security header of a WCF message to be interoperable with a non-WCF service.
In this part, we examine how to use another custom text message encoder to modify the security header of a WCF message to be interoperable with a non-WCF service. [More]