Client security hash issue


Hi I got a issue in client security hash project. As seen in the image, in the SetTransactionStatus framework i get an error. Can someone help?

2 Likes

Hi @102018966

Can u open the workflow and show where the validation error is throwing in it ?

Hi @102018966,

Probably your SetTransactionStatus.xaml has an argument named in_TransactionItem, which type is QueueItem.

As you changed TransactionItem type to DataRow in Main.xaml, you need to change in SetTransactionStatus.xaml too.

This also applies to GetTransactionData.xaml and Process.xaml.

Also, you need to update Import Arguments of all of them.

If you have already changed and it’s still throwing an error…

Probably it’s because SetTransactionStatus activities inside Success, Business Exception and System Exception sequences (SetTransactionStatus.xaml)

So, first open Success sequence and delete “If TransactionItem is a QueueItem (Success)”

Next, open Business Exception sequence and delete “If TransactionItem is a QueueItem (Business Exception)”

Finally, open System Exception sequence and delete “If TransactionItem is a QueueItem (System Exception)”. Also, in the “Assign QueueRetry” set its value to false instead of in_TransactionItem isNot Nothing AndAlso (in_TransactionItem.GetType is GetType(Uipath.Core.QueueItem))