From 5f2f9af38c0ef1007891b5f3e08e700765f76ab6 Mon Sep 17 00:00:00 2001 From: pitzm Date: Tue, 2 Sep 2025 11:19:15 +0200 Subject: [PATCH 1/2] eInvoice Web Service: 900 -> 4000 Zeichen-Grenze --- .../ZUGFeRDRESTService/Controllers/ValidationController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WEBSERVICES/ZUGFeRDRESTService/Controllers/ValidationController.cs b/WEBSERVICES/ZUGFeRDRESTService/Controllers/ValidationController.cs index 8657e0ae..c1a7e580 100644 --- a/WEBSERVICES/ZUGFeRDRESTService/Controllers/ValidationController.cs +++ b/WEBSERVICES/ZUGFeRDRESTService/Controllers/ValidationController.cs @@ -419,10 +419,10 @@ namespace ZUGFeRDRESTService.Controllers "(@REFERENCE_GUID, @ITEM_DESCRIPTION, @ITEM_VALUE, @CREATEDWHO, @SPEC_NAME, @GROUP_COUNTER, @IS_REQUIRED)"; string itemValue = string.Empty; - if (pProperty.Value.Length > 900) + if (pProperty.Value.Length > 4000) { - itemValue = pProperty.Value.Substring(1, 899); - _logger.Warn("Value for field [{0}] is longer than 900 characters, will be truncated!", pProperty.TableColumn); + itemValue = pProperty.Value.Substring(1, 4000); + _logger.Warn("Value for field [{0}] is longer than 4000 characters, will be truncated!", pProperty.TableColumn); } else { From 70ad3a8493153b7cb854e68ed07386317ebaa189 Mon Sep 17 00:00:00 2001 From: pitzm Date: Mon, 15 Sep 2025 13:52:49 +0200 Subject: [PATCH 2/2] System.IO.Compression raus --- GUIs.Test.ZUGFeRDTest/App.config | 4 ---- 1 file changed, 4 deletions(-) diff --git a/GUIs.Test.ZUGFeRDTest/App.config b/GUIs.Test.ZUGFeRDTest/App.config index c60b6a5c..69334236 100644 --- a/GUIs.Test.ZUGFeRDTest/App.config +++ b/GUIs.Test.ZUGFeRDTest/App.config @@ -83,10 +83,6 @@ - - - -