- Getting Started
- Before You Begin
- How To
- Designing your App
- Events and Rules
- Rule: If-Then-Else
- Rule: Open a Page
- Rule: Open URL
- Rule: Close Pop-Over/Bottom Sheet
- Rule: Show Message
- Rule: Show/Hide Spinner
- Rule: Set Values
- Rule: Start Process
- Rule: Upload File to Storage Bucket
- Rule: Get File From Storage Bucket
- Rule: Create/Update Entity Record
- Rule: Delete Entity Record
- Rule: Add to Queue
- Function: And, Or, Not
- Function: Concat
- Function: Contains
- Function: Count
- Function: EndsWith
- Function: If
- Function: IsBlank
- Function: Length
- Function: List
- Function: StartsWith
- Function: Sum
- Function: Sort
- Function: Now
- Function: Today
- Function: Time
- Function: Year
- Function: Month
- Function: Day
- Function: Hour
- Function: Minute
- Leveraging RPA in your App
- Leveraging Entities in Your App
- Leveraging Queues in Your App
- Application Lifecycle Management (ALM)
- Basic Troubleshooting Guide
Data Flow Between UiPath Apps and Orchestrator
UiPath Apps can be used with automation in an on-premise or self-hosted Orchestrator. The following is a summary of the data that is transferred when a client browser open a UiPath App and runs automation:
- On navigation to the app, the App definition is retrieved from the UiPath Automation Suite. This definition has no data, only the metadata used to render the application in the browser.
- When the start process rule (attended) is executed by an app, the browser contacts the local attended robot and passes input arguments. This is used to execute an automation locally on the client machine where the app is running. When the automation completes, the local robot returns the output arguments from the automation to the app in the browser. The only data that is exposed by the robot are the output arguments and any logging messages coded into the automation; no other data, screenshots, etc. seen by the automation leaves the box.
- When the start process rule (unattended) is executed by an app, the browser contacts Orchestrator via the Apps service and passes input arguments. This is used to execute an automation on an available unattended robot. When the automation completes, orchestrator sends the output arguments from the automation to the Apps service, which routes them to the app in the browser. The only data that is exposed by the robot are the output arguments and any logging messages coded into the automation; no other data, screenshots, etc. seen by the automation leaves the box.
In both the attended and unattended cases, the only data that is sent to and stored by Orchestrator are:
- The inputs + outputs of all processes that are run
- Logging messages added by the RPA developer to the process (this is opt-in)
In all cases, communication between orchestrator and Apps service is encrypted end-to-end. Input and output arguments are never stored in the Apps service.
The graphic below describes the UiPath Apps data flow for the Automation Suite environment, using unattended robots. In this case, Orchestrator is part of the same Automation Suite deployment.
- The user navigates to an app using a browser on the client machine.
- The browser calls the UiPath Apps service in Automation Suite to retrieve the Apps definition (metadata).
- The Apps definition is sent to the browser where the Apps runtime renders the app.
- The app calls the Automation Suite-hosted UiPath Orchestrator to run an unattended process, via the Apps service.
- Orchestrator reaches out to an Unattended Robot to execute the process.
- The process output is returned to Orchestrator.
-
The client app is notified of the process results.
The graphic below describes the UiPath Apps data flow for the Automation Suite environment, using attended robots. In this case, Orchestrator is part of the same Automation Suite deployment.
- The user navigates to an app using a browser on the client machine.
- The browser calls the UiPath Apps service in Automation Suite to retrieve the Apps definition (metadata).
- The Apps definition is sent to the browser where the Apps runtime renders the app.
- The app calls the local robot service on the client machine to execute a process. The results are returned locally.
-
Audit trail is logged to Orchestrator, including process output.
The sections below describes the UiPath Apps data flow when using Apps from an Automation Suite deployment with a standalone on-prem Orchestrator.
The graphic below describes the UiPath Apps data flow for hybrid, using unattended robots.
- The user navigates to an app using a browser on the client machine.
- The browser calls the UiPath Apps service in Automation Suite to retrieve the Apps definition (metadata).
- The Apps definition is sent to the browser where the Apps runtime renders the app.
- The app calls your standalone on-prem UiPath Orchestrator to run an unattended process, via the apps service.
- Orchestrator reaches out to an Unattended Robot to execute the process.
- The process output is returned to Orchestrator.
-
The client app is notified of the process results.
The graphic below describes the UiPath Apps data flow for hybrid, using attended robots.
- The user navigates to an app using a browser on the client machine.
- The browser calls the UiPath Apps service in Automation Suite to retrieve the Apps definition (metadata).
- The Apps definition is sent to the browser where the Apps runtime renders the app.
- The app calls the local robot service on the client machine to execute a process. The results are returned locally.
-
Audit trail is logged to Orchestrator, including process output.