@page "/credentials"
@using CredentialManager.Models
@using DataConnection.CredentialManagement.Interfaces
@using DataConnection.CredentialManagement.Models
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.JSInterop
@inject IDataConnectionCredentialService CredentialService
@inject IJSRuntime JSRuntime
@inject NavigationManager Navigation
Sono state rilevate credenziali che non possono essere decrittografate. Questo può accadere quando l'applicazione viene eseguita su una macchina o con un utente diverso da quello utilizzato per creare le credenziali.
@errorMessage
| Nome | Tipo Database | Host:Porta | Database | Username | Azioni |
|---|---|---|---|---|---|
| @credential.Name | @credential.DatabaseType | @credential.Host:@credential.Port | @if (string.IsNullOrEmpty(credential.DatabaseName)) { Connessione server } else { @credential.DatabaseName } | @credential.Username |
| Nome | Tipo Servizio | Base URL | Autenticazione | Timeout (s) | Azioni |
|---|---|---|---|---|---|
| @credential.Name | @if (credential.ServiceType == RestServiceType.SapB1ServiceLayer) { SAP B1 } else if (credential.ServiceType == RestServiceType.Salesforce) { Salesforce @if (credential.IsSandbox) { Sandbox } } else { Generic REST } | @credential.BaseUrl | @GetAuthenticationType(credential) | @credential.TimeoutSeconds |