Skip to main content
February 8, 2023
Solved

Buffer cannot be null, updating workflowview.xml

  • February 8, 2023
  • 2 replies
  • 1 view

When trying to update another user's workflow view within OS, I'm seeing the following error. Replacing the current file with an updated xml works but I would like to avoid that if possible. Any ideas?

cmloperfido_1-1675866646443.png

 

 

Best answer by JackLacava

Modifying that file directly is not really a supported approach... There is a decent risk of syntax errors, among other things. If you really need to, you can manipulate it via rules using the standard System.Xml library from .Net.

2 replies

February 9, 2023

Modifying that file directly is not really a supported approach... There is a decent risk of syntax errors, among other things. If you really need to, you can manipulate it via rules using the standard System.Xml library from .Net.

February 9, 2023

Thanks for the response, Jack!