Windows patterns that use regex in filepath break "Parse File" operationsDescriptionWhen running a "Parse File" operation on a Windows device, you may observe the following error:Failed to retrieve remote data: An un-categorized system error has occurred: java.lang.NullPointerExceptionExample of filepath from "Websphere on Windows" pattern:$config_directory + "\\.*\\.*\\applications\\.*\\deployments\\.*\\META-INF\\application.xml"This is resolved by removing the regex formatting and using Windows wildcard:- From: .*- To: * Steps to Reproduce - Run "Parse File" step on filepath with regex wildcard (.*) for Windows- Note error- Test with Windows filepath wildcard (*)- Note successWorkaroundRemove dot from the "Select File" path. Specifically, for Websphere On Windows pattern - Get clusters step: Step: 17. Get clusterschange below:$config_directory + "\\.*\\.*\\applications\\.*\\deployments\\.*\\META-INF\\application.xml"to:$config_directory + "\\*\\*\\applications\\*\\deployments\\*\\META-INF\\application.xml"Related Problem: PRB1615219