I can not find a working example of the new amazon service (or at least, within the last couple of years). The closest working example just comes back with a null item no matter what I put in the title. The code is:

        // Amazon ProductAdvertisingAPI client
        AWSECommerceServicePortTypeClient amazonClient = new AWSECommerceServicePortTypeClient();

        // prepare an ItemSearch request
        ItemSearchRequest request = new ItemSearchRequest();
        request.SearchIndex = "Books";
        request.Title = "C#";
        request.Condition = Condition.All;
        //request.ResponseGroup = new string[] { "Small" };

        ItemSearch itemSearch = new ItemSearch();
        itemSearch.Request = new ItemSearchRequest[] { request };
        itemSearch.AWSAccessKeyId = ConfigurationManager.AppSettings["accessKeyId"];

        // send the ItemSearch request
        ItemSearchResponse response = amazonClient.ItemSearch(itemSearch);

        // write out the results from the ItemSearch request
        foreach (var itemLst in response.Items)
        {
            if (itemLst.Item != null)
            {
                foreach (var item in response.Items[0].Item)
                {
                    Console.WriteLine(item.ItemAttributes.Title);
                }
            }
            else
                Console.WriteLine("No item info was found for this response list item.");
        }
        Console.WriteLine("<Done...press enter to continue>");
        Console.ReadLine();

What am I doing wrong?

link|improve this question
Don't know. What are you doing wrong? What errors are you getting? What exceptions? What results are you getting and what are you expecting? – Oded Nov 15 '11 at 20:48
feedback

2 Answers

I believe your problem may be lack of an Associate Tag. As of November, 2011, this is required for all requests and I noticed early on in my testing that I got null responses back (with an error code) when I didn't include it. I'm not sure if that's still the behavior but I'd definitely assume that if you aren't adding it (which I don't see in your code) that's a likely suspect.

Look at top change note here

If you don't have an Associate ID you will need to apply for one.

link|improve this answer
You might also have a look here: stackoverflow.com/a/8912276/225808 – citronas Jan 18 at 15:01
feedback

I'm assuming that you've downloaded the code from here. If this is correct then you need to replace this line:

AWSECommerceServicePortTypeClient amazonClient = new AWSECommerceServicePortTypeClient();

With these lines:

BasicHttpBinding binding = new BasicHttpBinding(BasicHttpSecurityMode.Transport);
binding.MaxReceivedMessageSize = int.MaxValue;

AWSECommerceServicePortTypeClient amazonClient = new AWSECommerceServicePortTypeClient(
            binding,
            new EndpointAddress("https://webservices.amazon.com/onca/soap?Service=AWSECommerceService"));  

// add authentication to the ECS client
amazonClient.ChannelFactory.Endpoint.Behaviors.Add(new AmazonSigningEndpointBehavior(accessKeyId, secretKey));

The problem is two fold:

  1. You are not binding the amazonClient to an HttpBinding
  2. You are not signing the request

If my assumption is incorrect then you should download the code from the above link as it is a working example of how to call the Amazon Product API.

link|improve this answer
1  
My previous code and the current code from the other example suggested throw the same error about the response.Items[0].Item being null. I look in the debugger and sure enough it is null. – user1043430 Nov 15 '11 at 21:45
I'm afraid I can't help you any more. There is something else wrong outside of this code. Perhaps one of your keys are incorrect? The code from the link in my answer works with my keys. Sorry. – Jonathan Spooner Nov 16 '11 at 10:09
feedback

Your Answer

 
or
required, but never shown

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