Working on work queue , I have successfully added data to the queue with the specified collection which will be read from a Excel, when trying to extract the data from the Queue getting the error as “The given key was not present is the dictionary”.
As per my knowledge there might be some missing items at the time of adding queue items and the same at the Retrieving end of data from the queue.
The error message itself tells that the item we are searching in not on the Queue Item.
Try and check all the input in the Add queue Item and at the other end of reading of data.
The trick is to look for the Key with Double Quotes instead of only look for the Key as a sting eg.-> if your key for the specific content in the Ochestrator is defined as -->SAP<-- you will have to look for the key -->“SAP”<-- in the Specific Items (Dictionary) of the queue items. This is different form the transaction item, where you can access the Specific Item Value by Key without the Double Quotes.