- Notes de publication
- Démarrage
- Pour les administrateurs
- Projets de workflow RPA
- Créer un workflow RPA à partir d'une idée
- Créer un projet
- Comment démarrer un workflow RPA
- Gestion des fichiers et dossiers du projet
- Connecter des workflows RPA à vos comptes
- Configurer les activités
- Gérer les activités d'un projet
- Transmission de valeurs entre les activités
- Naviguer dans les éléments
- Gérer les données d'un projet
- Configurer un projet pour utiliser vos données
- Utiliser des ressources de fichiers et de dossiers
- Projets d'application
- Applications dans Studio Web
- Concevoir des projets d'application
- Débogage de projets d'application
- Publier, déployer et mettre à niveau des projets d’application
- Importer et exporter des projets d'application
- Travailler avec des entités dans un projet d'application
- Créer des applications accessibles
- Ajout de descripteurs accessibles
- Le libellé Accessible
- Utilisation de la commande Onglet pour l'accessibilité
- Concevoir des listes et des en-têtes accessibles
- Conception d'application réactive
- Taux de contraste des couleurs
- Prédéfinir les styles et les mappages au niveau de l'air pour la commande En-tête
- Limites connues
- Définir un contexte externe à l'aide de paramètres de requête
- Set an external context using external events
- Utiliser des tableaux pour remplir les commandes Liste déroulante, Liste déroulante à sélection multiple et Bouton radio
- Utiliser des contrôles tabulaires avec des entités Data Service dans les projets d'application
- Activités d'application
- Processus d’agent
- Agents
- Solutions
- Workflows d’API - Aperçu

Guide de l'utilisateur Studio Web
No, solutions do not have a specific "type". A solution is simply a container that groups automations and related resources. The behavior of a solution is determined by the automations it contains. When you create a new solution, you select the automation type from which you will start building your solution.
- Define the automation in the solution by adding a new project of that specific type. You can thus fully control how the automation works.
- Import an existing project in your solution. This copies the project into the solution, so the original project remains unchanged and continues to exist independently.
- Reference a deployed process from the UiPath Platform. This copies the process definition from Orchestrator without including the source code. However, when you publish the solution, the underlying NuGet package is also included in the solution package.
You can import your existing projects into a solution. Importing does not change the original project, but creates a copy of it within the solution.
This error occurs when an automation in the solution attempts to start another automation. Let’s look at the following example featuring a solution with two projects —an agentic process (Maestro) that calls an assistant agent:
You start by debugging the agent first (the Deploy resources before debugging option in the Debug configuration window is disabled):
The agent runs successfully in debugging, as expected:
Next, you want to debug the agentic process that calls the agent (again, the Deploy resources before debugging option is disabled):
Unfortunately, an error appears in the agentic process. Why does this happen?
The error occurs because when you debug a project, it is not deployed anywhere. The project runs directly in a "Studio Web Debugging" job. In this case, since you debugged each project individually with the Deploy resources before debugging option disabled, neither project was ever deployed to any folder.
The Output panel offers this explanation:
- Enable the Deploy resources before debugging option in the Debug configuration window to deploy the latest resources to your personal workspace:
- Navigate to Debug > Deploy Project for Debugging. This will deploy all projects to your personal workspace so they can be referenced by other projects (such as the agentic process) during debugging.
You can then view these deployments in your debug solution folder in your personal workspace:
You can now see that the agentic process executes successfully after choosing one of the two options:
- Does it matter which "type" of solution I create?
- My business process requires an automation. What options do I have?
- I updated a process outside my solution. How do I update its definition in the solution?
- How do I migrate my existing projects to a solution?
- I get a "Failure to start the Orchestrator RPA job" error. What do I do?