Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7192143
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T19:52:46+00:00 2026-05-28T19:52:46+00:00

im using the C# Library for Batch Data Exchange Feeds from https://mws.amazon.com/doc/en_US/bde/feeds/v20090901/cSharp.html I want

  • 0

im using the “C# Library for Batch Data Exchange Feeds” from https://mws.amazon.com/doc/en_US/bde/feeds/v20090901/cSharp.html

I want to update the quantity of a product, I get a repsonse with “SUBMITTED”
and the function “GetFeedSubmissionResult” returns also “DONE“.
If I check the “Celler Central”, nothing is happend.
How can I see what went wrong updating the quantity?

MarketplaceWebServiceConfig mwsConfig2 = new MarketplaceWebServiceConfig();
mwsConfig2.ServiceURL = AmazonEndpointUrl;
mwsConfig2.SetUserAgentHeader("AMService", "1.01", "C#", new string[] { });

MarketplaceWebServiceClient mwsclient = new MarketplaceWebServiceClient(AmazonAccessKeyID, AmazonSecretAccessKey, mwsConfig2);
SubmitFeedRequest sfrequest = new SubmitFeedRequest();
sfrequest.Merchant = AmazonMerchantID;
sfrequest.Marketplace = AmazonMarketplaceID;

System.IO.MemoryStream stre = GetInventoryFeed("15084549", "2");
sfrequest.FeedContent = stre;
sfrequest.ContentMD5 = MarketplaceWebServiceClient.CalculateContentMD5(sfrequest.FeedContent);
sfrequest.FeedContent.Position = 0;
sfrequest.FeedType = "_POST_INVENTORY_AVAILABILITY_DATA_";
InvokeSubmitFeed(mwsclient, sfrequest);

REQUEST:

POST https://mws.amazonaws.de/?Action=SubmitFeed&Marketplace=...&Merchant=...&FeedType=_POST_INVENTORY_AVAILABILITY_DATA_&AWSAccessKeyId=...&Timestamp=2011-03-29T13%3A27%3A51.891Z&Version=2009-01-01&SignatureVersion=2&SignatureMethod=HmacSHA256&Signature=94hzhCLExKOFQqoMQgVuS1jfxaE8bOXnWJBgr%2FiTd7A%3D HTTP/1.1
User-Agent: myProjectcomAMService/1.01 (Language=C#)
Content-Type: application/octet-stream
Content-MD5: lHQpXA3bHBB5bXaPlu+5/g==
Host: mws.amazonaws.de
Connection: Keep-Alive
Content-Length: 534

<?xml version="1.0"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Header>
<DocumentVersion>1.01</DocumentVersion>
<MerchantIdentifier>M_myProjectDOTC_11111</MerchantIdentifier>
</Header>
<MessageType>Inventory</MessageType>
<MarketplaceName>myProjectdotcom</MarketplaceName>
<Message>
<MessageID>1</MessageID>
<Inventory>
<SKU>15084549</SKU>
<Quantity>2</Quantity>
</Inventory>
</Message>
</AmazonEnvelope>

RESPONSE:

HTTP/1.1 200 OK
Date: Tue, 29 Mar 2011 13:27:52 GMT
Server: Server
Content-Type: text/xml
Vary: Accept-Encoding,User-Agent
Content-Length: 500

<?xml version="1.0"?>
<SubmitFeedResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
<SubmitFeedResult>
<FeedSubmissionInfo>
<FeedSubmissionId>...</FeedSubmissionId>
<FeedType>_POST_INVENTORY_AVAILABILITY_DATA_</FeedType>
<SubmittedDate>2011-03-29T13:27:52+00:00</SubmittedDate>
<FeedProcessingStatus>_SUBMITTED_</FeedProcessingStatus>
</FeedSubmissionInfo></SubmitFeedResult><ResponseMetadata>
<RequestId>65fbc17a-5f5b-4a27-b470-c8913715ef9f</RequestId>
</ResponseMetadata>
</SubmitFeedResponse>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T19:52:47+00:00Added an answer on May 28, 2026 at 7:52 pm
        Thread.Sleep(240000);
                            errorMessage = string.Empty;
                            errorArticleIDList = new SortedList<string, string>();
                            if (GetSubmitFeedReport(feedSubmissionId, out errorMessage, out errorArticleIDList))
                            {
                                if (errorMessage != string.Empty)
                                {
                                    _log.ErrorFormat("FEHLER UpdateAmazonArticleStock: {0}", errorMessage);
                                }
    
                                foreach (AmazonArticleInfo amzArticle in rcavAmzArticleList)
                                {
                                    if (errorArticleIDList.Count > 0)
                                    {
                                        if (!errorArticleIDList.ContainsKey(amzArticle.ArticleID.ToString()))
                                        {
                                            // Die Artikelbestände von den relevanten Artikel aktuallisieren, bzw deaktivierte Artikel wieder aktivieren
                                            // Bestand = 0 --> deaktiviert
                                        if (!amzArticle.StockToLow && !amzArticle.NotAmazonRelevant)
                                            {
                                                amzArticle.AmazonActive = true;
                                            }
                                            // Alle nicht mehr relevanten Artikel in amazon deaktivieren
                                            else
                                            {
                                                amzArticle.AmazonActive = false;
                                            }
                                            dlAmazon.UpdateAmazonArticleAVDB(amzArticle);
                                        }
                                    }
                                    else
                                    {
                                        if (errorMessage == string.Empty)
                                        {
                                            dlAmazon.UpdateAmazonArticleAVDB(amzArticle);
                                        }
                                    }
                                }
                            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing a php script involving parsing data from xls files. I'm using library
i am using SPWeb.ProcessBatchData() method to batch create folders inside one document library. everything
i was using Iconv library on Ruby to convert encoding from UTF-8 to UTF-32,
I have some code that creates a batch using the pyglet library. The whole
I have a desktop application using Swing library. Application is running a batch file.
I am using a library that has headers without the .h This defeats visual
I was using mysql++ library and compiling with GCC 3.3.4. That GCC version had
I am using Enterprise Library 4.0 and I can't find any documentation on creating
I am using IText library to facilitate pdf export in an applet. During the
I am using a library function called get_count_and_price which returns a 2-tuple (count,price). In

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.