You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dummy plugin uses no credentials at the moment to communicate afterward with the ERP.
UseCase
User can save/change the credentials via a dialog where the password is hidden by clicking in the vault toolsbar "powerGate->Credentials". Material in project EMPL for the dialog
The ERP credentials should be saved in the Vault Options
Im Plugin ist es zu erweitern, das wird für jeden Service verwendet:
using System;using System.IdentityModel.Selectors;using System.IdentityModel.Tokens;namespaceWCF_UserAuthentication{publicclassUserAuthentication:UserNamePasswordValidator{publicoverridevoidValidate(stringuserName,stringpassword){if(userName==null||null==password)thrownew ArgumentNullException();if(!(userName=="coolOrange")||!(password=="coo!Orange"))thrownew SecurityTokenException("Unknown Username or Password");}}}
The text was updated successfully, but these errors were encountered:
Details
The dummy plugin uses no credentials at the moment to communicate afterward with the ERP.
UseCase
Example for plugin read credentials
Extend powerGateServer config:
Im Plugin ist es zu erweitern, das wird für jeden Service verwendet:
The text was updated successfully, but these errors were encountered: