Files
DXApp/DXApp.TemplateKitProject/appsettings.json
OlgunR 1ed873fc84 Add PDF signing feature with UI and backend support
Introduced a new `PdfSigningService` for digitally signing PDFs
using a PFX certificate and DevExpress's `PdfDocumentSigner`.
Updated `Program.cs` to register the service and added a new
configuration section `PdfSigning` in `appsettings.json` for
certificate management.

Added a Razor Page `TestSignature.cshtml` and its page model
`TestSignature.cshtml.cs` to provide a user interface for testing
PDF signing. The page includes file upload, signature validation,
and result display functionality.

Implemented supporting classes `PdfSigningOptions` for signature
customization and `SignatureInformation` for extracting and
displaying signature details, including signer name, location,
and certificate validity.
2026-06-23 15:32:33 +02:00

27 lines
705 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"EcmContext": "Server=SDD-VMP04-SQL17\\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=dd;TrustServerCertificate=True;"
},
"PdfExtraction": {
"OutputDirectory": "C:\\PdfExtractions"
},
"PdfResultReports": {
"InputDirectory": "C:\\PdfResultReports"
},
"PdfResults": {
"OutputDirectory": "C:\\PdfResults"
},
"PdfSigning": {
"CertificatePath": "C:\\PdfCertificates\\dxapp-test.pfx",
"CertificatePassword": "DXAppTest123!",
"SignerName": "DXApp Test System",
"Location": "Digital Data AG"
}
}