Improve certificate path probing with demo UNC target and remove Sonic container scan.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-29 09:14:25 +02:00
co-authored by Cursor
parent f7e9bd43e2
commit f584fd68fe
16 changed files with 1026 additions and 999 deletions
@@ -0,0 +1,15 @@
namespace ZA.CoreService.ESBCertificateManager.Models;
/// <summary>
/// Fester Demo-Pfad für den ersten Zertifikat-Austausch-Test (TEST / DE).
/// </summary>
public static class DemoCertificatePath
{
public const string Directory =
@"\\dekun-painwbdet\e$\proalpha-inwb\test\Containers\proalpha-test.ct-ZADBService\certs";
public const string FileName = "server.p12";
public static string FullPath =>
Path.Combine(Directory, FileName);
}