We are on PB2019R2 Build 2353. One of our apps has a custom export to Excel where we dump out a dw's results to a spreadsheet along with a bunch of formulas etc, and then open the built spreadsheet in Excel. It begins with code as follows:
OLEObject property_spreadsheet
long ll_result
property_spreadsheet = CREATE OLEObject
ll_result = property_spreadsheet.ConnectToNewObject("excel.application")
We are now upgrading our citrix environment to Windows Server 2019. In testing we found that the custom export was causing the pb application to become unresponsive for 1-2 minutes, and have narrowed it down to just the lines of code above, specifically the ConnectToNewObject function call.
Execution does not freeze on this line, the rest of the script continued to execute to completion, including the opening of excel. But any subsequent clicks/interaction on the pb app seem to get delayed for a upwards of a couple of minutes, queueing up and occurring after whatever is locked gets released. The issue was not observed under Server 2016, or a Windows 10 development machine.
I have attached a very simple sample application to demo. Anyone running into anything like this under Server 2019?