I try to build a framework for serveral RPAs. Like below:
- Root\RPA01\main.xaml – Read and write database. The user name and password are get from ‘…\RPA02\getaccount.xaml’ via ‘invoke workflow’ activity.
- Root\RPA02\getaccount.xaml – Use ‘Get Credential’ to get Username and Password from OC asset.
It works on my own PC Studio. But after deploy to OC(production env.), the folder path is changed. Like below:
- Root\RPA01\1.0.1\lib\RPA01\main.xaml
- Root\RPA02\1.0.1\lib\RPA02\getaccount.xaml
In this enviroment, the relative path is not available and the invoke method is ERROR.
How to set the path to run smoothly in production and my own PC?
It’s quite difficult to me…