vote up 2 vote down star
2

As of August 15, Amazon made it compulsory to sign all requests made to their Product Advertising API. I thought I had got everything working just fine but when the 15th finally came around, my web application stopped working and pretty much ever since I have been trying to find out how to sign the SOAP requests.

Amazon has an outdated sample code for signing requests that doesn't appear to work here

Basically, I need to know how to add a signature to the my requests using the most current C# SOAP API and .NET 3.5.

I hope I have given enough details, if I haven't please feel free to ask me to elaborate.

Thank You
The_Lorax

UPDATE: I am using MVC and need to know how to add the Signature to the the ItemLookup or AWSECommerceService object. Is there an attribute that contains the signature value? How does it get attached to the request?

On this page, they say that I must include the Signature and TimeStamp parameters but the intellisense does now show any such attributes.

flag

1 Answer

vote up 3 vote down check

Check out http://flyingpies.wordpress.com/2009/08/01/17/. It has a walkthrough and a sample visual studio solution using C#, SOAP, WCF on .NET 3.5.

link|flag
I saw this article a while ago and it would work for WCF but I am using MVC and I am using "AWSECommerceService" instead of"AWSECommerceServicePortTypeClient". – The_Lorax Aug 21 at 9:50
I ended up using a modified version of this code and a Service Reference instead of a WebReference. Thanks for you help, it is must appreciated – The_Lorax Aug 23 at 4:45
+1 from me. I didn't have this issue but this is the same code that I am using for my basis to call the Amazon product advertising API. – RichardOD Aug 31 at 13:35
I'd vote this up twice if I could. Thanks for pointing to the right answer. – Jacob Proffitt Sep 8 at 20:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.