I have a XAML which has a Build DataTable activity. One of the columns in the Build DataTable is of DataType System.Net.Mail.MailMessage. It was working fine until yesterday after which my Windows Server 2016 was recently updated with the Microsoft security patch (KB4565511 & KB4565912)
After this patch update it is not working anymore. The same code in another server without this patch is working as expected. Can anyone try the same? Will there be any update to the package to fix this issue?
@mbalaji1985
we can confirm that there was a change and this type of DataType is not longer allowed. Let us know what is handled and what is targeted. In some cases it can be changed to:
storing the mails on filesystem
handling the filepath to it in the datatable
But as mentioned lets start with your summary of the requirements
HI @ppr, thanks for your response and confirmation. I am having this data table with a column type as MailMessage to send response to the email once they are processed. I am thinking like we can do some work around like having a dictionary collection of emails with incremental values as key and have the key to replace the column with MailMessage datatype.
But I am checking to see whether a solution is possible without a code change as I might end up changing a lot of files plus a lot of effort. Is there a possibility of any updates to these activities from UIPath or any other suggestions so that I can do this without code changes?