diff --git a/API_NetFramework/Controllers/DocumentController.cs b/API_NetFramework/Controllers/DocumentController.cs index d977d6a16..53dbd2647 100644 --- a/API_NetFramework/Controllers/DocumentController.cs +++ b/API_NetFramework/Controllers/DocumentController.cs @@ -347,7 +347,7 @@ namespace API_NetFramework.Controllers try { - guid = Guid.NewGuid().ToString(); + // guid = Guid.NewGuid().ToString(); Logging.APIDocLog.Info("CreateDoks Start", "CreateDoks", guid, ""); bool hasattachment = false; if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false) @@ -575,8 +575,8 @@ namespace API_NetFramework.Controllers { if (dokumennt.DokumentID.Contains("ATT")) { - - vsdoc = vs.check_pdf_pages(dokumennt.PDFDoc); + bool rotatepage= System.Configuration.ConfigurationManager.AppSettings["rotatepage"].ToString() == "true"; + vsdoc = vs.check_pdf_pages(dokumennt.PDFDoc,rotatepage); } else { @@ -757,7 +757,7 @@ namespace API_NetFramework.Controllers string mailbody = ""; try { - string guid = Guid.NewGuid().ToString(); + //guid = Guid.NewGuid().ToString(); Logging.APIDocLog.Info("Start CreateDoc", "CreateDoc", guid, ""); if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false) { @@ -1148,13 +1148,40 @@ namespace API_NetFramework.Controllers switch (vergleichsart) { case "=": - if (fieldvalue == vergleichswert) { returnvalue = updatestring(returnwert, fieldvalue); return true; } else { return true; } + if (fieldvalue == vergleichswert) + { + if (returnwert.Substring(0, 2) == "$.") + { + returnwert = get_item_value(returnwert, ref clmdocitemlist); + } + returnvalue = updatestring(returnwert, fieldvalue); return true; + } else + { + return true; + } break; case "!=": - if (fieldvalue != vergleichswert) { returnvalue = updatestring(returnwert, fieldvalue); return true; } + if (fieldvalue != vergleichswert) + { + if (returnwert.Substring(0, 2) == "$.") + { + returnwert = get_item_value(returnwert, ref clmdocitemlist); + } + returnvalue = updatestring(returnwert, fieldvalue); + return true; + } break; case "contains": - if (fieldvalue.Contains(vergleichswert)) { returnvalue = updatestring(returnwert, fieldvalue); return true; } + if (fieldvalue.Contains(vergleichswert)) + { + if (returnwert.Substring(0, 2) == "$.") + { + returnwert = get_item_value(returnwert, ref clmdocitemlist); + } + + returnvalue = updatestring(returnwert, fieldvalue); + return true; + } break; default: @@ -1206,6 +1233,7 @@ namespace API_NetFramework.Controllers string[] parameters = rule.Split('|'); return parameters[1].Replace("'", ""); } + return inputvalue; @@ -1247,7 +1275,7 @@ namespace API_NetFramework.Controllers dynamic dataj = null; try { - string guid = Guid.NewGuid().ToString(); + //guid = Guid.NewGuid().ToString(); Logging.APIDocLog.Info("Start CreateCLM", "CreateESS", guid, ""); if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false) { @@ -1318,7 +1346,10 @@ namespace API_NetFramework.Controllers foreach (DataRow dr in db.dsdaten.Tables[0].Rows) { CLMDocItem d = new CLMDocItem(); - + if (dr["feldname"].ToString() == "ZGaga") + { + int a = 1; + } d.itemname = ""; d.itemtag = ""; @@ -1778,8 +1809,41 @@ namespace API_NetFramework.Controllers break; case "profil": db.Get_Tabledata("SELECT isnull(dbo.profil.team,0) as team FROM dbo.mitarbeiter INNER JOIN dbo.profil ON dbo.mitarbeiter.mitarbeiternr = dbo.profil.mitarbeiternr WHERE (dbo.mitarbeiter.aktiv=1 and dbo.profil.aktiv=1 and dbo.profil.standard=1 and dbo.mitarbeiter.tgnummer = '" + ParamValue + "')", false, true); - if (db.dsdaten.Tables[0].Rows.Count == 0) { return false; } - if (db.dsdaten.Tables[0].Rows[0][0].ToString() == "0") { return false; } + bool result = true; + if (db.dsdaten.Tables[0].Rows.Count == 0) { result= false; } + if (db.dsdaten.Tables[0].Rows[0][0].ToString() == "0") { result = false; } + try + { + if (result == false) + { + if (System.Configuration.ConfigurationManager.AppSettings["UpdateProfilTeam_when_na"].ToString() == "true") + { + db.clear_parameter(); + db.add_parameter("@tgnummer", ParamValue); + db.Get_Tabledata("ondoc_sp_update_profilteam", true, false); + if (Convert.ToInt32(db.dsdaten.Tables[0].Rows[0][0]) == 1) + { + mailInhalt m0 = new mailInhalt(); + m0.typ = 3; + m0.subject = "ONDOC- Team automtatisch zugewiesen "; + m0.message = "Team automatisch zugewiesen: TG:" + ParamValue+ ":
" + db.dsdaten.Tables[0].Rows[0][1].ToString() + "
"; + m0.guid = guid; + m0.dokumentid = ""; + m0.empfaenger = ""; + m0.bezeichnung = ""; + m0.partnernr = ""; + m0.sendmail = true; + m0.forceadminmail = true; + m0.Herkunftsapplikation = "OnDoc-API"; + Send_Confirmation(ref m0); + m0 = null; + result = true; + } + } + } + } + catch { } + return result; break; default: return false; @@ -2513,6 +2577,7 @@ namespace API_NetFramework.Controllers { result = inhalt; string[] inhalte = inhalt.Split(' '); + //result = ""; foreach (string s in inhalte) { if (s.Contains("$")) @@ -2536,6 +2601,7 @@ namespace API_NetFramework.Controllers result = result.Replace("$.", ""); } + if (result == inhalt.Replace("$.","")) { result = ""; } return result; } catch @@ -2771,7 +2837,7 @@ namespace API_NetFramework.Controllers body = body + "Meldung:  " + inhalt.message + "
"; body = body + "Dokument:  " + inhalt.bezeichnung + "
"; body = body + "Dok-ID:  " + inhalt.dokumentid + "
"; - body = body + "Parnter:  " + inhalt.partnernr + "
"; + body = body + "Partner:  " + inhalt.partnernr + "
"; body = body + "GUID:  " + inhalt.guid + "
"; body = body + "Herkunfts-Appl: " + inhalt.Herkunftsapplikation; @@ -2782,12 +2848,12 @@ namespace API_NetFramework.Controllers body = body + "Meldung:  " + inhalt.message + "
"; body = body + "Dokument:  " + inhalt.bezeichnung + "
"; body = body + "Dok-ID:  " + inhalt.dokumentid + "
"; - body = body + "Parnter:  " + inhalt.partnernr + "
"; + body = body + "Partner:  " + inhalt.partnernr + "
"; body = body + "GUID:  " + inhalt.guid + "
"; body = body + "Herkunfts-Appl: " + inhalt.Herkunftsapplikation; } - + mail.Body = body + "


------------------------------------------------------------------------------------------------
OnDoc"; SmtpServer.Host = "smtp.tgcorp.ch"; SmtpServer.Port = 25; diff --git a/API_NetFramework/Properties/PublishProfiles/FolderProfile1.pubxml.user b/API_NetFramework/Properties/PublishProfiles/FolderProfile1.pubxml.user index b29964e05..dd0eedac9 100644 --- a/API_NetFramework/Properties/PublishProfiles/FolderProfile1.pubxml.user +++ b/API_NetFramework/Properties/PublishProfiles/FolderProfile1.pubxml.user @@ -5,7 +5,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. <_PublishTargetUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc - True|2026-04-20T07:19:29.7327180Z||;True|2026-04-17T12:53:09.6866425+02:00||;True|2026-04-17T12:36:00.7292052+02:00||;True|2026-04-17T10:14:43.2460807+02:00||;True|2026-04-16T09:52:35.3555487+02:00||;True|2026-04-16T09:48:12.9673890+02:00||;True|2026-04-16T09:36:25.4647803+02:00||;True|2026-04-16T09:18:23.6715906+02:00||;True|2026-04-15T12:41:42.7039426+02:00||;True|2026-04-15T09:35:17.1390603+02:00||;True|2026-04-13T12:15:21.5302680+02:00||;True|2026-04-12T08:08:44.1463714+02:00||;True|2026-04-07T10:22:57.7224308+02:00||;True|2026-04-07T09:20:01.6630821+02:00||;True|2026-04-06T08:17:37.5337584+02:00||;True|2026-04-05T08:53:42.1753435+02:00||;True|2026-04-02T17:43:40.0268875+02:00||;True|2026-03-31T12:35:33.9827919+02:00||;True|2026-03-31T12:29:13.8708772+02:00||;True|2026-03-31T12:18:19.9872382+02:00||;True|2026-03-31T10:39:08.0352645+02:00||;True|2026-03-31T10:37:10.5663757+02:00||;True|2026-03-31T10:24:06.1437798+02:00||;True|2026-03-29T18:46:00.5859706+02:00||;True|2026-03-29T17:43:36.5421725+02:00||;True|2026-03-28T11:22:17.8973116+01:00||;True|2026-03-27T16:18:48.9978212+01:00||;True|2026-03-27T07:14:41.6874122+01:00||;True|2026-03-26T15:26:02.2751561+01:00||;True|2026-03-25T21:25:11.0646560+01:00||;True|2026-03-25T17:13:28.1157629+01:00||;True|2026-03-25T17:05:35.8912458+01:00||;True|2026-03-25T17:00:55.0064754+01:00||;True|2026-03-24T14:39:42.8828134+01:00||;True|2026-03-23T15:07:18.4892650+01:00||;True|2026-03-23T10:20:19.1623589+01:00||;True|2026-03-22T13:25:52.6279375+01:00||;True|2026-03-20T07:24:37.8861696+01:00||;True|2026-03-19T21:38:10.9526034+01:00||;True|2026-03-18T17:41:36.3493613+01:00||;True|2026-03-18T14:58:36.6641588+01:00||;True|2026-03-18T13:36:39.6754082+01:00||;True|2026-03-18T13:28:13.3767791+01:00||;True|2026-03-18T12:39:58.8696214+01:00||;True|2026-03-18T10:12:19.4421254+01:00||;True|2026-03-18T09:23:32.7324650+01:00||;True|2026-03-18T08:30:31.0127326+01:00||;True|2026-03-17T16:29:03.7106180+01:00||;True|2026-03-17T16:11:10.6005495+01:00||;True|2026-03-17T15:59:13.2348406+01:00||;True|2026-03-17T15:31:12.0317447+01:00||;True|2026-03-17T14:48:40.3877203+01:00||;True|2026-03-17T14:11:25.3562261+01:00||;True|2026-03-17T13:47:11.1326741+01:00||;True|2026-03-16T15:31:10.2555705+01:00||;True|2026-03-16T14:12:19.6773991+01:00||;True|2026-03-16T13:55:53.2937690+01:00||;True|2026-03-16T13:49:40.9223505+01:00||;True|2026-03-16T13:45:46.5476155+01:00||;True|2026-03-16T10:05:17.8849739+01:00||;True|2026-03-16T09:50:03.0002779+01:00||;True|2026-03-15T17:59:21.9961152+01:00||;True|2026-03-15T17:55:23.9254472+01:00||;False|2026-03-15T17:55:17.4934783+01:00||;True|2026-03-15T17:30:56.4581787+01:00||;True|2026-03-15T17:27:23.6999475+01:00||;True|2026-03-15T17:06:43.4082140+01:00||;True|2026-03-15T16:47:00.3514115+01:00||;True|2026-03-15T15:08:09.6821523+01:00||;True|2026-03-12T16:06:53.7395894+01:00||;True|2026-03-11T18:52:45.1428118+01:00||;True|2026-03-11T18:28:35.8258686+01:00||;True|2026-03-11T18:28:14.0116992+01:00||;True|2026-03-11T18:19:41.2917598+01:00||;True|2026-03-11T18:16:14.3982080+01:00||;True|2026-03-11T17:58:30.8611742+01:00||;True|2026-03-09T15:02:39.2942135+01:00||;True|2026-03-09T13:40:46.3543575+01:00||;True|2026-03-09T10:31:33.7382200+01:00||;True|2026-03-08T08:13:35.2118387+01:00||;True|2026-03-07T21:30:15.7021682+01:00||;True|2026-03-07T16:04:27.6676302+01:00||;True|2026-03-03T07:42:58.6695248+01:00||;True|2026-03-02T18:56:44.9083635+01:00||;True|2026-03-02T15:22:04.7632771+01:00||;True|2026-03-02T15:17:19.5888051+01:00||;True|2026-03-02T14:44:15.1850254+01:00||;False|2026-03-02T14:43:43.8750165+01:00||;True|2026-03-02T13:00:06.4813259+01:00||;True|2026-03-02T09:00:14.6639978+01:00||;True|2026-02-26T14:00:46.9137562+01:00||;True|2026-02-26T10:52:44.7996454+01:00||;True|2026-02-26T10:20:38.9297393+01:00||;True|2026-02-26T08:17:22.1709972+01:00||;True|2026-02-26T08:01:54.5490566+01:00||;True|2026-02-26T07:56:47.9173498+01:00||;True|2026-02-26T05:50:34.4180646+01:00||;True|2026-02-25T16:00:31.8051644+01:00||;True|2026-02-25T15:40:22.6200444+01:00||;True|2026-02-25T15:32:39.6209326+01:00||; + True|2026-04-26T05:46:17.4664888Z||;True|2026-04-24T06:24:40.7783022+02:00||;True|2026-04-23T11:21:20.3704464+02:00||;True|2026-04-23T10:31:57.1547227+02:00||;True|2026-04-23T09:53:44.7739372+02:00||;True|2026-04-23T09:53:32.6495578+02:00||;True|2026-04-23T09:47:39.5698157+02:00||;True|2026-04-21T18:33:32.1288240+02:00||;True|2026-04-21T12:42:16.0067525+02:00||;True|2026-04-20T09:19:29.7327180+02:00||;True|2026-04-17T12:53:09.6866425+02:00||;True|2026-04-17T12:36:00.7292052+02:00||;True|2026-04-17T10:14:43.2460807+02:00||;True|2026-04-16T09:52:35.3555487+02:00||;True|2026-04-16T09:48:12.9673890+02:00||;True|2026-04-16T09:36:25.4647803+02:00||;True|2026-04-16T09:18:23.6715906+02:00||;True|2026-04-15T12:41:42.7039426+02:00||;True|2026-04-15T09:35:17.1390603+02:00||;True|2026-04-13T12:15:21.5302680+02:00||;True|2026-04-12T08:08:44.1463714+02:00||;True|2026-04-07T10:22:57.7224308+02:00||;True|2026-04-07T09:20:01.6630821+02:00||;True|2026-04-06T08:17:37.5337584+02:00||;True|2026-04-05T08:53:42.1753435+02:00||;True|2026-04-02T17:43:40.0268875+02:00||;True|2026-03-31T12:35:33.9827919+02:00||;True|2026-03-31T12:29:13.8708772+02:00||;True|2026-03-31T12:18:19.9872382+02:00||;True|2026-03-31T10:39:08.0352645+02:00||;True|2026-03-31T10:37:10.5663757+02:00||;True|2026-03-31T10:24:06.1437798+02:00||;True|2026-03-29T18:46:00.5859706+02:00||;True|2026-03-29T17:43:36.5421725+02:00||;True|2026-03-28T11:22:17.8973116+01:00||;True|2026-03-27T16:18:48.9978212+01:00||;True|2026-03-27T07:14:41.6874122+01:00||;True|2026-03-26T15:26:02.2751561+01:00||;True|2026-03-25T21:25:11.0646560+01:00||;True|2026-03-25T17:13:28.1157629+01:00||;True|2026-03-25T17:05:35.8912458+01:00||;True|2026-03-25T17:00:55.0064754+01:00||;True|2026-03-24T14:39:42.8828134+01:00||;True|2026-03-23T15:07:18.4892650+01:00||;True|2026-03-23T10:20:19.1623589+01:00||;True|2026-03-22T13:25:52.6279375+01:00||;True|2026-03-20T07:24:37.8861696+01:00||;True|2026-03-19T21:38:10.9526034+01:00||;True|2026-03-18T17:41:36.3493613+01:00||;True|2026-03-18T14:58:36.6641588+01:00||;True|2026-03-18T13:36:39.6754082+01:00||;True|2026-03-18T13:28:13.3767791+01:00||;True|2026-03-18T12:39:58.8696214+01:00||;True|2026-03-18T10:12:19.4421254+01:00||;True|2026-03-18T09:23:32.7324650+01:00||;True|2026-03-18T08:30:31.0127326+01:00||;True|2026-03-17T16:29:03.7106180+01:00||;True|2026-03-17T16:11:10.6005495+01:00||;True|2026-03-17T15:59:13.2348406+01:00||;True|2026-03-17T15:31:12.0317447+01:00||;True|2026-03-17T14:48:40.3877203+01:00||;True|2026-03-17T14:11:25.3562261+01:00||;True|2026-03-17T13:47:11.1326741+01:00||;True|2026-03-16T15:31:10.2555705+01:00||;True|2026-03-16T14:12:19.6773991+01:00||;True|2026-03-16T13:55:53.2937690+01:00||;True|2026-03-16T13:49:40.9223505+01:00||;True|2026-03-16T13:45:46.5476155+01:00||;True|2026-03-16T10:05:17.8849739+01:00||;True|2026-03-16T09:50:03.0002779+01:00||;True|2026-03-15T17:59:21.9961152+01:00||;True|2026-03-15T17:55:23.9254472+01:00||;False|2026-03-15T17:55:17.4934783+01:00||;True|2026-03-15T17:30:56.4581787+01:00||;True|2026-03-15T17:27:23.6999475+01:00||;True|2026-03-15T17:06:43.4082140+01:00||;True|2026-03-15T16:47:00.3514115+01:00||;True|2026-03-15T15:08:09.6821523+01:00||;True|2026-03-12T16:06:53.7395894+01:00||;True|2026-03-11T18:52:45.1428118+01:00||;True|2026-03-11T18:28:35.8258686+01:00||;True|2026-03-11T18:28:14.0116992+01:00||;True|2026-03-11T18:19:41.2917598+01:00||;True|2026-03-11T18:16:14.3982080+01:00||;True|2026-03-11T17:58:30.8611742+01:00||;True|2026-03-09T15:02:39.2942135+01:00||;True|2026-03-09T13:40:46.3543575+01:00||;True|2026-03-09T10:31:33.7382200+01:00||;True|2026-03-08T08:13:35.2118387+01:00||;True|2026-03-07T21:30:15.7021682+01:00||;True|2026-03-07T16:04:27.6676302+01:00||;True|2026-03-03T07:42:58.6695248+01:00||;True|2026-03-02T18:56:44.9083635+01:00||;True|2026-03-02T15:22:04.7632771+01:00||;True|2026-03-02T15:17:19.5888051+01:00||;True|2026-03-02T14:44:15.1850254+01:00||;False|2026-03-02T14:43:43.8750165+01:00||;True|2026-03-02T13:00:06.4813259+01:00||;True|2026-03-02T09:00:14.6639978+01:00||;True|2026-02-26T14:00:46.9137562+01:00||; @@ -88,10 +88,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 06/02/2026 17:20:00 - 04/20/2026 09:05:17 + 04/23/2026 10:30:52 - 04/20/2026 09:05:17 + 04/23/2026 10:30:52 02/03/2026 12:58:54 @@ -100,13 +100,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 02/03/2026 12:58:54 - 04/17/2026 10:09:57 + 04/23/2026 09:53:22 09/18/2025 08:15:15 - 04/17/2026 10:09:57 + 04/23/2026 09:53:22 02/03/2026 12:58:54 @@ -145,13 +145,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 10/20/2023 22:35:04 - 04/20/2026 09:30:30 + 04/26/2026 07:46:15 03/11/2026 15:59:42 - 04/20/2026 09:30:30 + 04/26/2026 07:46:15 11/27/2023 09:49:58 @@ -268,16 +268,16 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 02/03/2026 12:58:53 - 04/20/2026 09:30:30 + 04/26/2026 07:46:15 - 04/20/2026 09:30:30 + 04/26/2026 07:46:15 - 04/20/2026 09:30:30 + 04/26/2026 07:46:16 - 04/20/2026 09:30:30 + 04/26/2026 07:46:16 11/13/2012 13:19:34 @@ -496,10 +496,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 03/31/2026 10:28:22 - 04/20/2026 09:30:29 + 04/26/2026 07:46:15 - 04/20/2026 09:30:29 + 04/26/2026 07:46:15 05/10/2016 15:11:52 @@ -715,7 +715,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. 03/06/2024 08:11:55 - 04/16/2026 09:18:22 + 04/24/2026 06:24:39 \ No newline at end of file diff --git a/API_NetFramework/Web.config b/API_NetFramework/Web.config index d234feccf..c95dd08bf 100644 --- a/API_NetFramework/Web.config +++ b/API_NetFramework/Web.config @@ -49,6 +49,8 @@ + + diff --git a/API_NetFramework/bin/DOCGEN.dll b/API_NetFramework/bin/DOCGEN.dll index bfbe6c6de..1e943a650 100644 Binary files a/API_NetFramework/bin/DOCGEN.dll and b/API_NetFramework/bin/DOCGEN.dll differ diff --git a/API_NetFramework/bin/DOCGEN.pdb b/API_NetFramework/bin/DOCGEN.pdb index fce9152b9..6f3254fad 100644 Binary files a/API_NetFramework/bin/DOCGEN.pdb and b/API_NetFramework/bin/DOCGEN.pdb differ diff --git a/API_NetFramework/bin/Database.dll b/API_NetFramework/bin/Database.dll index 837d17c03..49f252634 100644 Binary files a/API_NetFramework/bin/Database.dll and b/API_NetFramework/bin/Database.dll differ diff --git a/API_NetFramework/bin/Database.pdb b/API_NetFramework/bin/Database.pdb index 46eefaa70..7360e4b13 100644 Binary files a/API_NetFramework/bin/Database.pdb and b/API_NetFramework/bin/Database.pdb differ diff --git a/API_NetFramework/bin/OnDoc_NetFramework.dll b/API_NetFramework/bin/OnDoc_NetFramework.dll index adf5ab02c..1da68231a 100644 Binary files a/API_NetFramework/bin/OnDoc_NetFramework.dll and b/API_NetFramework/bin/OnDoc_NetFramework.dll differ diff --git a/API_NetFramework/bin/OnDoc_NetFramework.dll.config b/API_NetFramework/bin/OnDoc_NetFramework.dll.config index d234feccf..c95dd08bf 100644 --- a/API_NetFramework/bin/OnDoc_NetFramework.dll.config +++ b/API_NetFramework/bin/OnDoc_NetFramework.dll.config @@ -49,6 +49,8 @@ + + diff --git a/API_NetFramework/bin/OnDoc_NetFramework.pdb b/API_NetFramework/bin/OnDoc_NetFramework.pdb index c471d68a3..5ab4a7bb7 100644 Binary files a/API_NetFramework/bin/OnDoc_NetFramework.pdb and b/API_NetFramework/bin/OnDoc_NetFramework.pdb differ diff --git a/API_NetFramework/bin/Versandstrasse.dll b/API_NetFramework/bin/Versandstrasse.dll index 195fc9387..672c6b571 100644 Binary files a/API_NetFramework/bin/Versandstrasse.dll and b/API_NetFramework/bin/Versandstrasse.dll differ diff --git a/API_NetFramework/bin/Versandstrasse.pdb b/API_NetFramework/bin/Versandstrasse.pdb index cdb33aaa3..1419cd19a 100644 Binary files a/API_NetFramework/bin/Versandstrasse.pdb and b/API_NetFramework/bin/Versandstrasse.pdb differ diff --git a/API_NetFramework/log.txt b/API_NetFramework/log.txt index a21ead9db..1e7846ebc 100644 --- a/API_NetFramework/log.txt +++ b/API_NetFramework/log.txt @@ -167354,3 +167354,11018 @@ Der mehrteilige Bezeichner "dbo.ondoc_clm_dokumente.clmdokumentid.id" konnte nic 2026-04-20 09:07:16.6344|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023295 2026-04-20 09:07:16.6344|INFO|DocLog|Dokument über API erstellt 2026-04-20 09:07:16.6344|INFO|APIDocLog|Dokument abgeschlossen +2026-04-21 12:13:06.1964|DEBUG|OnDoc| +2026-04-21 12:13:06.3122|DEBUG|OnDoc| +2026-04-21 12:13:06.3122|DEBUG|OnDoc| +2026-04-21 12:13:06.3122|DEBUG|OnDoc| +2026-04-21 12:13:06.7917|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 12:13:07.1276|INFO|APIDocLog|Start CreateCLM +2026-04-21 12:13:07.1980|INFO|APIDocLog|Input JSON +2026-04-21 12:13:07.2321|DEBUG|APIDocLog|Create CLMDocItem +2026-04-21 12:13:07.4243|DEBUG|OnDoc| +2026-04-21 12:13:07.4333|DEBUG|OnDoc| +2026-04-21 12:13:07.4463|DEBUG|OnDoc| +2026-04-21 12:13:07.4624|DEBUG|OnDoc| +2026-04-21 12:13:07.4804|DEBUG|OnDoc| +2026-04-21 12:13:07.4804|DEBUG|OnDoc| +2026-04-21 12:13:07.5165|DEBUG|APIDocLog|Start GenDocCLM +2026-04-21 12:13:07.5375|DEBUG|OnDoc| +2026-04-21 12:13:07.5375|DEBUG|OnDoc| +2026-04-21 12:13:07.5375|DEBUG|OnDoc| +2026-04-21 12:13:07.5375|DEBUG|OnDoc| +2026-04-21 12:13:07.5375|DEBUG|OnDoc| +2026-04-21 12:13:07.5375|DEBUG|OnDoc| +2026-04-21 12:13:07.5375|DEBUG|OnDoc| +2026-04-21 12:13:07.5375|DEBUG|OnDoc| +2026-04-21 12:13:07.6698|DEBUG|OnDoc| +2026-04-21 12:13:07.6698|DEBUG|OnDoc| +2026-04-21 12:13:07.7390|DEBUG|OnDoc| +2026-04-21 12:13:07.7435|DEBUG|OnDoc| +2026-04-21 12:13:07.7711|DEBUG|APIDocLog|DocGenerator +2026-04-21 12:13:07.7818|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 12:13:07.7818|DEBUG|OnDoc| +2026-04-21 12:13:07.8029|DEBUG|OnDoc| +2026-04-21 12:13:07.8029|DEBUG|OnDoc| +2026-04-21 12:13:07.8029|DEBUG|OnDoc| +2026-04-21 12:13:07.8029|DEBUG|OnDoc| +2026-04-21 12:13:07.8189|DEBUG|OnDoc| +2026-04-21 12:13:07.8189|DEBUG|OnDoc| +2026-04-21 12:13:07.8189|DEBUG|OnDoc| +2026-04-21 12:13:07.8349|DEBUG|OnDoc|Generate_Word +2026-04-21 12:13:08.7845|DEBUG|OnDoc|Word2013 +2026-04-21 12:13:08.7945|DEBUG|OnDoc|Word2013 +2026-04-21 12:13:30.5894|DEBUG|OnDoc|Generate_Word +2026-04-21 12:13:30.6561|DEBUG|OnDoc| +2026-04-21 12:13:30.6561|DEBUG|OnDoc| +2026-04-21 12:13:31.8312|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023305 +2026-04-21 12:13:31.8312|INFO|DocLog|Dokument über API erstellt +2026-04-21 12:13:31.8312|INFO|APIDocLog|Dokument abgeschlossen +2026-04-21 12:15:58.8810|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 12:15:58.9753|INFO|APIDocLog|Start CreateCLM +2026-04-21 12:15:58.9990|INFO|APIDocLog|Input JSON +2026-04-21 12:15:58.9990|DEBUG|APIDocLog|Create CLMDocItem +2026-04-21 12:15:58.9990|DEBUG|OnDoc| +2026-04-21 12:15:59.0101|DEBUG|OnDoc| +2026-04-21 12:15:59.0101|DEBUG|OnDoc| +2026-04-21 12:15:59.0294|DEBUG|OnDoc| +2026-04-21 12:15:59.0294|INFO|OnDoc|Image-Bezug: 4 +2026-04-21 12:15:59.3767|DEBUG|OnDoc| +2026-04-21 12:15:59.3868|DEBUG|OnDoc| +2026-04-21 12:15:59.3868|DEBUG|APIDocLog|Start GenDocCLM +2026-04-21 12:15:59.3868|DEBUG|OnDoc| +2026-04-21 12:15:59.3868|DEBUG|OnDoc| +2026-04-21 12:15:59.3868|DEBUG|OnDoc| +2026-04-21 12:15:59.3868|DEBUG|OnDoc| +2026-04-21 12:15:59.3868|DEBUG|OnDoc| +2026-04-21 12:15:59.3868|DEBUG|OnDoc| +2026-04-21 12:15:59.3868|DEBUG|OnDoc| +2026-04-21 12:15:59.3868|DEBUG|OnDoc| +2026-04-21 12:15:59.4066|DEBUG|OnDoc| +2026-04-21 12:15:59.4066|DEBUG|OnDoc| +2026-04-21 12:15:59.4431|DEBUG|OnDoc| +2026-04-21 12:15:59.4456|DEBUG|OnDoc| +2026-04-21 12:15:59.4595|DEBUG|APIDocLog|DocGenerator +2026-04-21 12:15:59.4595|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 12:15:59.4595|DEBUG|OnDoc| +2026-04-21 12:15:59.4922|DEBUG|OnDoc| +2026-04-21 12:15:59.4922|DEBUG|OnDoc| +2026-04-21 12:15:59.4922|DEBUG|OnDoc| +2026-04-21 12:15:59.4922|DEBUG|OnDoc| +2026-04-21 12:15:59.5122|DEBUG|OnDoc| +2026-04-21 12:15:59.5122|DEBUG|OnDoc| +2026-04-21 12:15:59.5243|DEBUG|OnDoc| +2026-04-21 12:15:59.5243|DEBUG|OnDoc|Generate_Word +2026-04-21 12:15:59.5919|DEBUG|OnDoc|Word2013 +2026-04-21 12:15:59.5919|DEBUG|OnDoc|Word2013 +2026-04-21 12:15:59.9473|DEBUG|OnDoc|Generate_Word +2026-04-21 12:16:00.0088|DEBUG|OnDoc| +2026-04-21 12:16:00.0088|DEBUG|OnDoc| +2026-04-21 12:16:00.2946|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023310 +2026-04-21 12:16:00.2946|INFO|DocLog|Dokument über API erstellt +2026-04-21 12:16:00.2946|INFO|APIDocLog|Dokument abgeschlossen +2026-04-21 12:16:43.0165|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 12:16:43.0772|INFO|APIDocLog|Start CreateCLM +2026-04-21 12:16:43.1039|INFO|APIDocLog|Input JSON +2026-04-21 12:16:43.1039|DEBUG|APIDocLog|Create CLMDocItem +2026-04-21 12:16:43.1039|DEBUG|OnDoc| +2026-04-21 12:16:43.1039|DEBUG|OnDoc| +2026-04-21 12:16:43.1039|DEBUG|OnDoc| +2026-04-21 12:16:43.1039|DEBUG|OnDoc| +2026-04-21 12:16:43.1164|INFO|OnDoc|Image-Bezug: 4 +2026-04-21 12:16:43.1847|DEBUG|OnDoc| +2026-04-21 12:16:43.1947|DEBUG|OnDoc| +2026-04-21 12:16:43.1947|DEBUG|APIDocLog|Start GenDocCLM +2026-04-21 12:16:43.1947|DEBUG|OnDoc| +2026-04-21 12:16:43.1947|DEBUG|OnDoc| +2026-04-21 12:16:43.1947|DEBUG|OnDoc| +2026-04-21 12:16:43.1947|DEBUG|OnDoc| +2026-04-21 12:16:43.1947|DEBUG|OnDoc| +2026-04-21 12:16:43.1947|DEBUG|OnDoc| +2026-04-21 12:16:43.1947|DEBUG|OnDoc| +2026-04-21 12:16:43.1947|DEBUG|OnDoc| +2026-04-21 12:16:43.2198|DEBUG|OnDoc| +2026-04-21 12:16:43.2198|DEBUG|OnDoc| +2026-04-21 12:16:43.2488|DEBUG|OnDoc| +2026-04-21 12:16:43.2488|DEBUG|OnDoc| +2026-04-21 12:16:43.2653|DEBUG|APIDocLog|DocGenerator +2026-04-21 12:16:43.2653|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 12:16:43.2653|DEBUG|OnDoc| +2026-04-21 12:16:43.2852|DEBUG|OnDoc| +2026-04-21 12:16:43.2872|DEBUG|OnDoc| +2026-04-21 12:16:43.2872|DEBUG|OnDoc| +2026-04-21 12:16:43.2872|DEBUG|OnDoc| +2026-04-21 12:16:43.2872|DEBUG|OnDoc| +2026-04-21 12:16:43.2872|DEBUG|OnDoc| +2026-04-21 12:16:43.2872|DEBUG|OnDoc| +2026-04-21 12:16:43.3025|DEBUG|OnDoc|Generate_Word +2026-04-21 12:16:43.4106|DEBUG|OnDoc|Word2013 +2026-04-21 12:16:43.4206|DEBUG|OnDoc|Word2013 +2026-04-21 12:16:43.7700|DEBUG|OnDoc|Generate_Word +2026-04-21 12:16:43.8258|DEBUG|OnDoc| +2026-04-21 12:16:43.8258|DEBUG|OnDoc| +2026-04-21 12:16:44.1333|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023321 +2026-04-21 12:16:44.1333|INFO|DocLog|Dokument über API erstellt +2026-04-21 12:16:44.1333|INFO|APIDocLog|Dokument abgeschlossen +2026-04-21 12:19:29.9347|DEBUG|OnDoc| +2026-04-21 12:19:30.0300|DEBUG|OnDoc| +2026-04-21 12:19:30.0300|DEBUG|OnDoc| +2026-04-21 12:19:30.0300|DEBUG|OnDoc| +2026-04-21 12:19:30.3774|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 12:19:30.5755|INFO|APIDocLog|Start CreateCLM +2026-04-21 12:19:30.6053|INFO|APIDocLog|Input JSON +2026-04-21 12:19:30.6253|DEBUG|APIDocLog|Create CLMDocItem +2026-04-21 12:19:30.7304|DEBUG|OnDoc| +2026-04-21 12:19:30.7406|DEBUG|OnDoc| +2026-04-21 12:19:30.7406|DEBUG|OnDoc| +2026-04-21 12:19:30.7581|DEBUG|OnDoc| +2026-04-21 12:19:30.7581|INFO|OnDoc|Image-Bezug: 4 +2026-04-21 12:19:30.9677|DEBUG|OnDoc| +2026-04-21 12:19:30.9773|DEBUG|OnDoc| +2026-04-21 12:19:30.9949|DEBUG|APIDocLog|Start GenDocCLM +2026-04-21 12:19:31.0081|DEBUG|OnDoc| +2026-04-21 12:19:31.0081|DEBUG|OnDoc| +2026-04-21 12:19:31.0081|DEBUG|OnDoc| +2026-04-21 12:19:31.0081|DEBUG|OnDoc| +2026-04-21 12:19:31.0081|DEBUG|OnDoc| +2026-04-21 12:19:31.0081|DEBUG|OnDoc| +2026-04-21 12:19:31.0081|DEBUG|OnDoc| +2026-04-21 12:19:31.0081|DEBUG|OnDoc| +2026-04-21 12:19:31.0631|DEBUG|OnDoc| +2026-04-21 12:19:31.0631|DEBUG|OnDoc| +2026-04-21 12:19:31.1014|DEBUG|OnDoc| +2026-04-21 12:19:31.1014|DEBUG|OnDoc| +2026-04-21 12:19:31.1240|DEBUG|APIDocLog|DocGenerator +2026-04-21 12:19:31.1311|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 12:19:31.1311|DEBUG|OnDoc| +2026-04-21 12:19:31.1488|DEBUG|OnDoc| +2026-04-21 12:19:31.1488|DEBUG|OnDoc| +2026-04-21 12:19:31.1488|DEBUG|OnDoc| +2026-04-21 12:19:31.1488|DEBUG|OnDoc| +2026-04-21 12:19:31.1488|DEBUG|OnDoc| +2026-04-21 12:19:31.1629|DEBUG|OnDoc| +2026-04-21 12:19:31.1629|DEBUG|OnDoc| +2026-04-21 12:19:31.1629|DEBUG|OnDoc|Generate_Word +2026-04-21 12:19:31.6925|DEBUG|OnDoc|Word2013 +2026-04-21 12:19:31.7020|DEBUG|OnDoc|Word2013 +2026-04-21 12:19:32.3143|DEBUG|OnDoc|Generate_Word +2026-04-21 12:19:32.3607|DEBUG|OnDoc| +2026-04-21 12:19:32.3607|DEBUG|OnDoc| +2026-04-21 12:19:33.7256|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023336 +2026-04-21 12:19:33.7256|INFO|DocLog|Dokument über API erstellt +2026-04-21 12:19:33.7256|INFO|APIDocLog|Dokument abgeschlossen +2026-04-21 12:25:54.6216|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 12:25:54.6726|INFO|APIDocLog|Start CreateCLM +2026-04-21 12:25:54.6937|INFO|APIDocLog|Input JSON +2026-04-21 12:25:54.6937|DEBUG|APIDocLog|Create CLMDocItem +2026-04-21 12:25:54.6937|DEBUG|OnDoc| +2026-04-21 12:25:54.6937|DEBUG|OnDoc| +2026-04-21 12:25:54.6937|DEBUG|OnDoc| +2026-04-21 12:25:54.7118|DEBUG|OnDoc| +2026-04-21 12:25:54.7278|INFO|OnDoc|Image-Bezug: 4 +2026-04-21 12:25:54.7744|DEBUG|OnDoc| +2026-04-21 12:25:54.7744|DEBUG|OnDoc| +2026-04-21 12:25:54.7744|DEBUG|APIDocLog|Start GenDocCLM +2026-04-21 12:25:54.7744|DEBUG|OnDoc| +2026-04-21 12:25:54.7744|DEBUG|OnDoc| +2026-04-21 12:25:54.7744|DEBUG|OnDoc| +2026-04-21 12:25:54.7744|DEBUG|OnDoc| +2026-04-21 12:25:54.7744|DEBUG|OnDoc| +2026-04-21 12:25:54.7744|DEBUG|OnDoc| +2026-04-21 12:25:54.7744|DEBUG|OnDoc| +2026-04-21 12:25:54.7872|DEBUG|OnDoc| +2026-04-21 12:25:54.7872|DEBUG|OnDoc| +2026-04-21 12:25:54.8076|DEBUG|OnDoc| +2026-04-21 12:25:54.8465|DEBUG|OnDoc| +2026-04-21 12:25:54.8465|DEBUG|OnDoc| +2026-04-21 12:25:54.8619|DEBUG|APIDocLog|DocGenerator +2026-04-21 12:25:54.8619|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 12:25:54.8659|DEBUG|OnDoc| +2026-04-21 12:25:54.8921|DEBUG|OnDoc| +2026-04-21 12:25:54.8921|DEBUG|OnDoc| +2026-04-21 12:25:54.8966|DEBUG|OnDoc| +2026-04-21 12:25:54.8966|DEBUG|OnDoc| +2026-04-21 12:25:54.8966|DEBUG|OnDoc| +2026-04-21 12:25:54.8966|DEBUG|OnDoc| +2026-04-21 12:25:54.9159|DEBUG|OnDoc| +2026-04-21 12:25:54.9159|DEBUG|OnDoc|Generate_Word +2026-04-21 12:25:54.9722|DEBUG|OnDoc|Word2013 +2026-04-21 12:25:54.9754|DEBUG|OnDoc|Word2013 +2026-04-21 12:25:55.2438|DEBUG|OnDoc|Generate_Word +2026-04-21 12:25:55.2859|DEBUG|OnDoc| +2026-04-21 12:25:55.2895|DEBUG|OnDoc| +2026-04-21 12:25:55.5437|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023344 +2026-04-21 12:25:55.5437|INFO|DocLog|Dokument über API erstellt +2026-04-21 12:25:55.5437|INFO|APIDocLog|Dokument abgeschlossen +2026-04-21 12:26:47.7365|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 12:26:47.8194|INFO|APIDocLog|Start CreateCLM +2026-04-21 12:26:47.8479|INFO|APIDocLog|Input JSON +2026-04-21 12:26:47.8530|DEBUG|APIDocLog|Create CLMDocItem +2026-04-21 12:26:47.8530|DEBUG|OnDoc| +2026-04-21 12:26:47.8530|DEBUG|OnDoc| +2026-04-21 12:26:47.8530|DEBUG|OnDoc| +2026-04-21 12:26:47.8530|DEBUG|OnDoc| +2026-04-21 12:26:47.8530|INFO|OnDoc|Image-Bezug: 4 +2026-04-21 12:26:47.9071|DEBUG|OnDoc| +2026-04-21 12:26:47.9071|DEBUG|OnDoc| +2026-04-21 12:26:47.9122|DEBUG|APIDocLog|Start GenDocCLM +2026-04-21 12:26:47.9122|DEBUG|OnDoc| +2026-04-21 12:26:47.9122|DEBUG|OnDoc| +2026-04-21 12:26:47.9122|DEBUG|OnDoc| +2026-04-21 12:26:47.9122|DEBUG|OnDoc| +2026-04-21 12:26:47.9122|DEBUG|OnDoc| +2026-04-21 12:26:47.9122|DEBUG|OnDoc| +2026-04-21 12:26:47.9122|DEBUG|OnDoc| +2026-04-21 12:26:47.9122|DEBUG|OnDoc| +2026-04-21 12:26:47.9335|DEBUG|OnDoc| +2026-04-21 12:26:47.9335|DEBUG|OnDoc| +2026-04-21 12:26:47.9595|DEBUG|OnDoc| +2026-04-21 12:26:47.9595|DEBUG|OnDoc| +2026-04-21 12:26:47.9750|DEBUG|APIDocLog|DocGenerator +2026-04-21 12:26:47.9750|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 12:26:47.9750|DEBUG|OnDoc| +2026-04-21 12:26:47.9915|DEBUG|OnDoc| +2026-04-21 12:26:47.9915|DEBUG|OnDoc| +2026-04-21 12:26:47.9915|DEBUG|OnDoc| +2026-04-21 12:26:47.9915|DEBUG|OnDoc| +2026-04-21 12:26:47.9915|DEBUG|OnDoc| +2026-04-21 12:26:47.9915|DEBUG|OnDoc| +2026-04-21 12:26:48.0081|DEBUG|OnDoc| +2026-04-21 12:26:48.0081|DEBUG|OnDoc|Generate_Word +2026-04-21 12:26:48.0503|DEBUG|OnDoc|Word2013 +2026-04-21 12:26:48.0533|DEBUG|OnDoc|Word2013 +2026-04-21 12:26:48.2987|DEBUG|OnDoc|Generate_Word +2026-04-21 12:26:48.3410|DEBUG|OnDoc| +2026-04-21 12:26:48.3410|DEBUG|OnDoc| +2026-04-21 12:26:48.6391|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023352 +2026-04-21 12:26:48.6391|INFO|DocLog|Dokument über API erstellt +2026-04-21 12:26:48.6391|INFO|APIDocLog|Dokument abgeschlossen +2026-04-21 12:26:51.3810|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 12:26:51.4318|INFO|APIDocLog|Start CreateCLM +2026-04-21 12:26:51.4529|INFO|APIDocLog|Input JSON +2026-04-21 12:26:51.4529|DEBUG|APIDocLog|Create CLMDocItem +2026-04-21 12:26:51.4529|DEBUG|OnDoc| +2026-04-21 12:26:51.4608|DEBUG|OnDoc| +2026-04-21 12:26:51.4608|DEBUG|OnDoc| +2026-04-21 12:26:51.4608|DEBUG|OnDoc| +2026-04-21 12:26:51.4608|INFO|OnDoc|Image-Bezug: 4 +2026-04-21 12:26:51.5187|DEBUG|OnDoc| +2026-04-21 12:26:51.5215|DEBUG|OnDoc| +2026-04-21 12:26:51.5215|DEBUG|APIDocLog|Start GenDocCLM +2026-04-21 12:26:51.5215|DEBUG|OnDoc| +2026-04-21 12:26:51.5215|DEBUG|OnDoc| +2026-04-21 12:26:51.5215|DEBUG|OnDoc| +2026-04-21 12:26:51.5215|DEBUG|OnDoc| +2026-04-21 12:26:51.5215|DEBUG|OnDoc| +2026-04-21 12:26:51.5215|DEBUG|OnDoc| +2026-04-21 12:26:51.5215|DEBUG|OnDoc| +2026-04-21 12:26:51.5215|DEBUG|OnDoc| +2026-04-21 12:26:51.5488|DEBUG|OnDoc| +2026-04-21 12:26:51.5488|DEBUG|OnDoc| +2026-04-21 12:26:51.5926|DEBUG|OnDoc| +2026-04-21 12:26:51.5926|DEBUG|OnDoc| +2026-04-21 12:26:51.6078|DEBUG|APIDocLog|DocGenerator +2026-04-21 12:26:51.6078|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 12:26:51.6078|DEBUG|OnDoc| +2026-04-21 12:26:51.6343|DEBUG|OnDoc| +2026-04-21 12:26:51.6343|DEBUG|OnDoc| +2026-04-21 12:26:51.6343|DEBUG|OnDoc| +2026-04-21 12:26:51.6343|DEBUG|OnDoc| +2026-04-21 12:26:51.6574|DEBUG|OnDoc| +2026-04-21 12:26:51.6574|DEBUG|OnDoc| +2026-04-21 12:26:51.6674|DEBUG|OnDoc| +2026-04-21 12:26:51.6674|DEBUG|OnDoc|Generate_Word +2026-04-21 12:26:51.7079|DEBUG|OnDoc|Word2013 +2026-04-21 12:26:51.7100|DEBUG|OnDoc|Word2013 +2026-04-21 12:26:51.9408|DEBUG|OnDoc|Generate_Word +2026-04-21 12:26:51.9825|DEBUG|OnDoc| +2026-04-21 12:26:51.9825|DEBUG|OnDoc| +2026-04-21 12:26:52.2755|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023368 +2026-04-21 12:26:52.2755|INFO|DocLog|Dokument über API erstellt +2026-04-21 12:26:52.2755|INFO|APIDocLog|Dokument abgeschlossen +2026-04-21 12:28:08.9715|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 12:28:09.0515|INFO|APIDocLog|Start CreateCLM +2026-04-21 12:28:09.0746|INFO|APIDocLog|Input JSON +2026-04-21 12:28:09.0746|DEBUG|APIDocLog|Create CLMDocItem +2026-04-21 12:28:09.0746|DEBUG|OnDoc| +2026-04-21 12:28:09.0746|DEBUG|OnDoc| +2026-04-21 12:28:09.0746|DEBUG|OnDoc| +2026-04-21 12:28:09.0746|DEBUG|OnDoc| +2026-04-21 12:28:09.0746|INFO|OnDoc|Image-Bezug: 4 +2026-04-21 12:28:09.1398|DEBUG|OnDoc| +2026-04-21 12:28:09.1398|DEBUG|OnDoc| +2026-04-21 12:28:09.1398|DEBUG|APIDocLog|Start GenDocCLM +2026-04-21 12:28:09.1398|DEBUG|OnDoc| +2026-04-21 12:28:09.1398|DEBUG|OnDoc| +2026-04-21 12:28:09.1398|DEBUG|OnDoc| +2026-04-21 12:28:09.1398|DEBUG|OnDoc| +2026-04-21 12:28:09.1398|DEBUG|OnDoc| +2026-04-21 12:28:09.1398|DEBUG|OnDoc| +2026-04-21 12:28:09.1398|DEBUG|OnDoc| +2026-04-21 12:28:09.1467|DEBUG|OnDoc| +2026-04-21 12:28:09.1467|DEBUG|OnDoc| +2026-04-21 12:28:09.1622|DEBUG|OnDoc| +2026-04-21 12:28:09.1847|DEBUG|OnDoc| +2026-04-21 12:28:09.1847|DEBUG|OnDoc| +2026-04-21 12:28:09.1994|DEBUG|APIDocLog|DocGenerator +2026-04-21 12:28:09.1994|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 12:28:09.1994|DEBUG|OnDoc| +2026-04-21 12:28:09.2127|DEBUG|OnDoc| +2026-04-21 12:28:09.2127|DEBUG|OnDoc| +2026-04-21 12:28:09.2127|DEBUG|OnDoc| +2026-04-21 12:28:09.2127|DEBUG|OnDoc| +2026-04-21 12:28:09.2127|DEBUG|OnDoc| +2026-04-21 12:28:09.2127|DEBUG|OnDoc| +2026-04-21 12:28:09.2127|DEBUG|OnDoc| +2026-04-21 12:28:09.2127|DEBUG|OnDoc|Generate_Word +2026-04-21 12:28:09.2655|DEBUG|OnDoc|Word2013 +2026-04-21 12:28:09.2655|DEBUG|OnDoc|Word2013 +2026-04-21 12:28:09.5639|DEBUG|OnDoc|Generate_Word +2026-04-21 12:28:09.6023|DEBUG|OnDoc| +2026-04-21 12:28:09.6023|DEBUG|OnDoc| +2026-04-21 12:28:09.8284|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023373 +2026-04-21 12:28:09.8284|INFO|DocLog|Dokument über API erstellt +2026-04-21 12:28:09.8284|INFO|APIDocLog|Dokument abgeschlossen +2026-04-21 12:41:48.6390|DEBUG|OnDoc| +2026-04-21 12:41:48.7055|DEBUG|OnDoc| +2026-04-21 12:41:48.7055|DEBUG|OnDoc| +2026-04-21 12:41:48.7120|DEBUG|OnDoc| +2026-04-21 14:56:51.0403|DEBUG|OnDoc| +2026-04-21 14:56:51.1281|DEBUG|OnDoc| +2026-04-21 14:56:51.1281|DEBUG|OnDoc| +2026-04-21 14:56:51.1338|DEBUG|OnDoc| +2026-04-21 14:58:56.8015|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 14:58:57.0005|INFO|APIDocLog|CreateDoks Start +2026-04-21 14:58:57.0916|INFO|APIDocLog|Input Json +2026-04-21 14:58:57.1066|DEBUG|OnDoc|Start GenDoc +2026-04-21 14:58:57.1066|DEBUG|OnDoc| +2026-04-21 14:58:57.1066|DEBUG|OnDoc| +2026-04-21 14:58:57.1066|DEBUG|OnDoc| +2026-04-21 14:58:57.1066|DEBUG|OnDoc| +2026-04-21 14:58:57.1066|DEBUG|OnDoc| +2026-04-21 14:58:57.1172|DEBUG|OnDoc| +2026-04-21 14:58:57.1172|DEBUG|OnDoc| +2026-04-21 14:58:57.1172|DEBUG|OnDoc| +2026-04-21 14:58:57.1172|DEBUG|OnDoc| +2026-04-21 14:58:57.1172|DEBUG|OnDoc| +2026-04-21 14:58:57.1172|DEBUG|OnDoc| +2026-04-21 14:58:57.1172|DEBUG|OnDoc| +2026-04-21 14:58:57.1172|DEBUG|OnDoc| +2026-04-21 14:58:57.1172|DEBUG|OnDoc| +2026-04-21 14:58:57.1172|DEBUG|OnDoc| +2026-04-21 14:58:57.1329|DEBUG|OnDoc| +2026-04-21 14:58:57.1329|DEBUG|OnDoc| +2026-04-21 14:58:57.1329|DEBUG|OnDoc| +2026-04-21 14:58:57.1329|DEBUG|OnDoc| +2026-04-21 14:58:57.1329|DEBUG|OnDoc| +2026-04-21 14:58:57.1329|DEBUG|OnDoc| +2026-04-21 14:58:57.1329|DEBUG|OnDoc| +2026-04-21 14:58:57.1482|DEBUG|OnDoc| +2026-04-21 14:58:57.1482|DEBUG|OnDoc| +2026-04-21 14:58:57.1482|DEBUG|OnDoc| +2026-04-21 14:58:57.1482|DEBUG|OnDoc| +2026-04-21 14:58:57.2034|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:58:57.2103|DEBUG|OnDoc| +2026-04-21 14:59:01.3768|DEBUG|OnDoc| +2026-04-21 14:59:01.3808|DEBUG|OnDoc| +2026-04-21 14:59:01.4145|DEBUG|OnDoc| +2026-04-21 14:59:01.4439|DEBUG|OnDoc| +2026-04-21 14:59:01.4439|DEBUG|OnDoc| +2026-04-21 14:59:01.4439|DEBUG|OnDoc| +2026-04-21 14:59:01.4682|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 14:59:01.4682|DEBUG|OnDoc| +2026-04-21 14:59:01.4892|DEBUG|OnDoc| +2026-04-21 14:59:01.4902|DEBUG|OnDoc| +2026-04-21 14:59:01.4902|DEBUG|OnDoc| +2026-04-21 14:59:01.4902|DEBUG|OnDoc| +2026-04-21 14:59:01.5594|DEBUG|OnDoc| +2026-04-21 14:59:01.5594|DEBUG|OnDoc| +2026-04-21 14:59:01.5731|DEBUG|OnDoc| +2026-04-21 14:59:01.5731|DEBUG|OnDoc|Generate_Word +2026-04-21 14:59:01.9937|DEBUG|OnDoc|Word2013 +2026-04-21 14:59:01.9937|DEBUG|OnDoc|Word2013 +2026-04-21 14:59:03.0761|DEBUG|OnDoc|Generate_Word +2026-04-21 14:59:03.1226|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023389 +2026-04-21 14:59:03.1226|INFO|DocLog|Dokument über API erstellt +2026-04-21 14:59:03.1226|INFO|APIDocLog|Dok erstellt +2026-04-21 14:59:03.1226|INFO|APIDocLog|Attachment angefügt +2026-04-21 14:59:03.1309|DEBUG|OnDoc| +2026-04-21 14:59:03.1309|DEBUG|OnDoc| +2026-04-21 14:59:03.1309|DEBUG|OnDoc| +2026-04-21 14:59:03.1902|DEBUG|OnDoc| +2026-04-21 14:59:03.1937|DEBUG|OnDoc| +2026-04-21 14:59:03.1937|DEBUG|OnDoc| +2026-04-21 14:59:03.1937|DEBUG|OnDoc| +2026-04-21 14:59:03.1937|DEBUG|OnDoc| +2026-04-21 14:59:03.1937|DEBUG|OnDoc| +2026-04-21 14:59:03.1937|DEBUG|OnDoc| +2026-04-21 14:59:03.1937|DEBUG|OnDoc| +2026-04-21 14:59:03.2362|DEBUG|OnDoc| +2026-04-21 14:59:03.6443|DEBUG|OnDoc| +2026-04-21 14:59:03.6725|DEBUG|OnDoc| +2026-04-21 14:59:10.7713|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 14:59:10.8006|INFO|APIDocLog|CreateDoks Start +2026-04-21 14:59:10.8193|INFO|APIDocLog|Input Json +2026-04-21 14:59:10.8193|DEBUG|OnDoc|Start GenDoc +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8193|DEBUG|OnDoc| +2026-04-21 14:59:10.8345|DEBUG|OnDoc| +2026-04-21 14:59:10.8345|DEBUG|OnDoc| +2026-04-21 14:59:10.8345|DEBUG|OnDoc| +2026-04-21 14:59:10.8345|DEBUG|OnDoc| +2026-04-21 14:59:10.8345|DEBUG|OnDoc| +2026-04-21 14:59:10.8345|DEBUG|OnDoc| +2026-04-21 14:59:10.8345|DEBUG|OnDoc| +2026-04-21 14:59:10.8345|DEBUG|OnDoc| +2026-04-21 14:59:10.8345|DEBUG|OnDoc| +2026-04-21 14:59:14.6876|DEBUG|OnDoc| +2026-04-21 14:59:14.6876|DEBUG|OnDoc| +2026-04-21 14:59:14.6987|DEBUG|OnDoc| +2026-04-21 14:59:14.6987|DEBUG|OnDoc| +2026-04-21 14:59:14.6987|DEBUG|OnDoc| +2026-04-21 14:59:14.6987|DEBUG|OnDoc| +2026-04-21 14:59:14.7113|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 14:59:14.7113|DEBUG|OnDoc| +2026-04-21 14:59:14.7113|DEBUG|OnDoc| +2026-04-21 14:59:14.7113|DEBUG|OnDoc| +2026-04-21 14:59:14.7113|DEBUG|OnDoc| +2026-04-21 14:59:14.7113|DEBUG|OnDoc| +2026-04-21 14:59:14.7113|DEBUG|OnDoc| +2026-04-21 14:59:14.7113|DEBUG|OnDoc| +2026-04-21 14:59:14.7282|DEBUG|OnDoc| +2026-04-21 14:59:14.7282|DEBUG|OnDoc|Generate_Word +2026-04-21 14:59:14.7282|DEBUG|OnDoc|Word2013 +2026-04-21 14:59:14.7282|DEBUG|OnDoc|Word2013 +2026-04-21 14:59:15.0104|DEBUG|OnDoc|Generate_Word +2026-04-21 14:59:15.0217|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023397 +2026-04-21 14:59:15.0217|INFO|DocLog|Dokument über API erstellt +2026-04-21 14:59:15.0217|INFO|APIDocLog|Dok erstellt +2026-04-21 14:59:15.0217|INFO|APIDocLog|Attachment angefügt +2026-04-21 14:59:15.0217|DEBUG|OnDoc| +2026-04-21 14:59:15.0217|DEBUG|OnDoc| +2026-04-21 14:59:15.0217|DEBUG|OnDoc| +2026-04-21 14:59:15.0526|DEBUG|OnDoc| +2026-04-21 14:59:15.0526|DEBUG|OnDoc| +2026-04-21 14:59:15.0526|DEBUG|OnDoc| +2026-04-21 14:59:15.0526|DEBUG|OnDoc| +2026-04-21 14:59:15.0526|DEBUG|OnDoc| +2026-04-21 14:59:15.0526|DEBUG|OnDoc| +2026-04-21 14:59:15.0526|DEBUG|OnDoc| +2026-04-21 14:59:15.0526|DEBUG|OnDoc| +2026-04-21 14:59:15.0918|DEBUG|OnDoc| +2026-04-21 14:59:15.1375|DEBUG|OnDoc| +2026-04-21 14:59:15.1375|DEBUG|OnDoc| +2026-04-21 14:59:58.3991|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 14:59:58.4547|INFO|APIDocLog|CreateDoks Start +2026-04-21 14:59:58.4766|INFO|APIDocLog|Input Json +2026-04-21 14:59:58.4766|DEBUG|OnDoc|Start GenDoc +2026-04-21 14:59:58.4766|DEBUG|OnDoc| +2026-04-21 14:59:58.4766|DEBUG|OnDoc| +2026-04-21 14:59:58.4766|DEBUG|OnDoc| +2026-04-21 14:59:58.4766|DEBUG|OnDoc| +2026-04-21 14:59:58.4766|DEBUG|OnDoc| +2026-04-21 14:59:58.4766|DEBUG|OnDoc| +2026-04-21 14:59:58.4766|DEBUG|OnDoc| +2026-04-21 14:59:58.4766|DEBUG|OnDoc| +2026-04-21 14:59:58.4766|DEBUG|OnDoc| +2026-04-21 14:59:58.4766|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.4904|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 14:59:58.5068|DEBUG|OnDoc| +2026-04-21 15:00:04.1254|DEBUG|OnDoc| +2026-04-21 15:00:04.1254|DEBUG|OnDoc| +2026-04-21 15:00:04.1407|DEBUG|OnDoc| +2026-04-21 15:00:04.1407|DEBUG|OnDoc| +2026-04-21 15:00:04.1407|DEBUG|OnDoc| +2026-04-21 15:00:04.1407|DEBUG|OnDoc| +2026-04-21 15:00:04.1672|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 15:00:04.1672|DEBUG|OnDoc| +2026-04-21 15:00:04.1672|DEBUG|OnDoc| +2026-04-21 15:00:04.1672|DEBUG|OnDoc| +2026-04-21 15:00:04.1672|DEBUG|OnDoc| +2026-04-21 15:00:04.1672|DEBUG|OnDoc| +2026-04-21 15:00:04.1794|DEBUG|OnDoc| +2026-04-21 15:00:04.1794|DEBUG|OnDoc| +2026-04-21 15:00:04.1794|DEBUG|OnDoc| +2026-04-21 15:00:04.1794|DEBUG|OnDoc|Generate_Word +2026-04-21 15:00:04.1936|DEBUG|OnDoc|Word2013 +2026-04-21 15:00:04.1936|DEBUG|OnDoc|Word2013 +2026-04-21 15:00:04.4674|DEBUG|OnDoc|Generate_Word +2026-04-21 15:00:04.4785|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023402 +2026-04-21 15:00:04.4785|INFO|DocLog|Dokument über API erstellt +2026-04-21 15:00:04.4785|INFO|APIDocLog|Dok erstellt +2026-04-21 15:00:04.4785|INFO|APIDocLog|Attachment angefügt +2026-04-21 15:00:04.4785|DEBUG|OnDoc| +2026-04-21 15:00:04.4785|DEBUG|OnDoc| +2026-04-21 15:00:04.4785|DEBUG|OnDoc| +2026-04-21 15:00:04.5133|DEBUG|OnDoc| +2026-04-21 15:00:04.5133|DEBUG|OnDoc| +2026-04-21 15:00:04.5133|DEBUG|OnDoc| +2026-04-21 15:00:04.5133|DEBUG|OnDoc| +2026-04-21 15:00:04.5133|DEBUG|OnDoc| +2026-04-21 15:00:04.5133|DEBUG|OnDoc| +2026-04-21 15:00:04.5133|DEBUG|OnDoc| +2026-04-21 15:00:04.5133|DEBUG|OnDoc| +2026-04-21 15:00:04.5510|DEBUG|OnDoc| +2026-04-21 15:00:04.6060|DEBUG|OnDoc| +2026-04-21 15:00:04.6060|DEBUG|OnDoc| +2026-04-21 15:00:12.6463|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 15:00:12.6753|INFO|APIDocLog|CreateDoks Start +2026-04-21 15:00:12.6968|INFO|APIDocLog|Input Json +2026-04-21 15:00:12.6968|DEBUG|OnDoc|Start GenDoc +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.6968|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7101|DEBUG|OnDoc| +2026-04-21 15:00:12.7374|DEBUG|OnDoc| +2026-04-21 15:00:12.7374|DEBUG|OnDoc| +2026-04-21 15:00:12.7494|DEBUG|OnDoc| +2026-04-21 15:00:12.7494|DEBUG|OnDoc| +2026-04-21 15:00:12.7494|DEBUG|OnDoc| +2026-04-21 15:00:12.7494|DEBUG|OnDoc| +2026-04-21 15:00:12.7755|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 15:00:12.7755|DEBUG|OnDoc| +2026-04-21 15:00:12.7755|DEBUG|OnDoc| +2026-04-21 15:00:12.7755|DEBUG|OnDoc| +2026-04-21 15:00:12.7755|DEBUG|OnDoc| +2026-04-21 15:00:12.7755|DEBUG|OnDoc| +2026-04-21 15:00:12.7900|DEBUG|OnDoc| +2026-04-21 15:00:12.7900|DEBUG|OnDoc| +2026-04-21 15:00:12.7900|DEBUG|OnDoc| +2026-04-21 15:00:12.7900|DEBUG|OnDoc|Generate_Word +2026-04-21 15:00:12.8110|DEBUG|OnDoc|Word2013 +2026-04-21 15:00:12.8110|DEBUG|OnDoc|Word2013 +2026-04-21 15:00:13.1144|DEBUG|OnDoc|Generate_Word +2026-04-21 15:00:13.1259|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023418 +2026-04-21 15:00:13.1259|INFO|DocLog|Dokument über API erstellt +2026-04-21 15:00:13.1259|INFO|APIDocLog|Dok erstellt +2026-04-21 15:00:13.1259|INFO|APIDocLog|Attachment angefügt +2026-04-21 15:00:13.1259|DEBUG|OnDoc| +2026-04-21 15:00:13.1309|DEBUG|OnDoc| +2026-04-21 15:00:13.1309|DEBUG|OnDoc| +2026-04-21 15:00:13.1538|DEBUG|OnDoc| +2026-04-21 15:00:13.1538|DEBUG|OnDoc| +2026-04-21 15:00:13.1538|DEBUG|OnDoc| +2026-04-21 15:00:13.1538|DEBUG|OnDoc| +2026-04-21 15:00:13.1538|DEBUG|OnDoc| +2026-04-21 15:00:13.1538|DEBUG|OnDoc| +2026-04-21 15:00:13.1538|DEBUG|OnDoc| +2026-04-21 15:00:13.1538|DEBUG|OnDoc| +2026-04-21 15:00:13.1886|DEBUG|OnDoc| +2026-04-21 15:00:13.2367|DEBUG|OnDoc| +2026-04-21 15:00:13.2427|DEBUG|OnDoc| +2026-04-21 15:13:16.5071|DEBUG|OnDoc| +2026-04-21 15:13:16.5962|DEBUG|OnDoc| +2026-04-21 15:13:16.5962|DEBUG|OnDoc| +2026-04-21 15:13:16.6012|DEBUG|OnDoc| +2026-04-21 15:13:16.8344|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 15:13:17.2732|INFO|APIDocLog|CreateDoks Start +2026-04-21 15:13:17.4118|INFO|APIDocLog|Input Json +2026-04-21 15:13:17.4293|DEBUG|OnDoc|Start GenDoc +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4293|DEBUG|OnDoc| +2026-04-21 15:13:17.4438|DEBUG|OnDoc| +2026-04-21 15:13:17.4438|DEBUG|OnDoc| +2026-04-21 15:13:17.4438|DEBUG|OnDoc| +2026-04-21 15:13:17.4438|DEBUG|OnDoc| +2026-04-21 15:13:17.4438|DEBUG|OnDoc| +2026-04-21 15:13:17.4438|DEBUG|OnDoc| +2026-04-21 15:13:17.4438|DEBUG|OnDoc| +2026-04-21 15:13:17.4438|DEBUG|OnDoc| +2026-04-21 15:13:17.4438|DEBUG|OnDoc| +2026-04-21 15:13:17.4625|DEBUG|OnDoc| +2026-04-21 15:13:17.4625|DEBUG|OnDoc| +2026-04-21 15:13:17.4625|DEBUG|OnDoc| +2026-04-21 15:13:17.4625|DEBUG|OnDoc| +2026-04-21 15:13:17.4625|DEBUG|OnDoc| +2026-04-21 15:13:17.4625|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.4795|DEBUG|OnDoc| +2026-04-21 15:13:17.5265|DEBUG|OnDoc| +2026-04-21 15:13:17.5265|DEBUG|OnDoc| +2026-04-21 15:13:17.5696|DEBUG|OnDoc| +2026-04-21 15:13:17.5696|DEBUG|OnDoc| +2026-04-21 15:13:17.5696|DEBUG|OnDoc| +2026-04-21 15:13:17.5696|DEBUG|OnDoc| +2026-04-21 15:13:17.5902|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 15:13:17.5902|DEBUG|OnDoc| +2026-04-21 15:13:17.6007|DEBUG|OnDoc| +2026-04-21 15:13:17.6007|DEBUG|OnDoc| +2026-04-21 15:13:17.6007|DEBUG|OnDoc| +2026-04-21 15:13:17.6007|DEBUG|OnDoc| +2026-04-21 15:13:17.6007|DEBUG|OnDoc| +2026-04-21 15:13:17.6167|DEBUG|OnDoc| +2026-04-21 15:13:17.6167|DEBUG|OnDoc| +2026-04-21 15:13:17.6167|DEBUG|OnDoc|Generate_Word +2026-04-21 15:13:18.1636|DEBUG|OnDoc|Word2013 +2026-04-21 15:13:18.1636|DEBUG|OnDoc|Word2013 +2026-04-21 15:13:19.3254|DEBUG|OnDoc|Generate_Word +2026-04-21 15:13:19.3729|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023423 +2026-04-21 15:13:19.3729|INFO|DocLog|Dokument über API erstellt +2026-04-21 15:13:19.3729|INFO|APIDocLog|Dok erstellt +2026-04-21 15:13:19.3729|INFO|APIDocLog|Attachment angefügt +2026-04-21 15:13:19.3729|DEBUG|OnDoc| +2026-04-21 15:13:19.3814|DEBUG|OnDoc| +2026-04-21 15:13:19.3814|DEBUG|OnDoc| +2026-04-21 15:13:19.4207|DEBUG|OnDoc| +2026-04-21 15:13:19.4207|DEBUG|OnDoc| +2026-04-21 15:13:19.4207|DEBUG|OnDoc| +2026-04-21 15:13:19.4207|DEBUG|OnDoc| +2026-04-21 15:13:19.4207|DEBUG|OnDoc| +2026-04-21 15:13:19.4278|DEBUG|OnDoc| +2026-04-21 15:13:19.4278|DEBUG|OnDoc| +2026-04-21 15:13:19.4278|DEBUG|OnDoc| +2026-04-21 15:13:19.4541|DEBUG|OnDoc| +2026-04-21 15:13:19.8666|DEBUG|OnDoc| +2026-04-21 15:13:19.8666|DEBUG|OnDoc| +2026-04-21 15:15:44.1430|DEBUG|OnDoc| +2026-04-21 15:15:44.2388|DEBUG|OnDoc| +2026-04-21 15:15:44.2418|DEBUG|OnDoc| +2026-04-21 15:15:44.2418|DEBUG|OnDoc| +2026-04-21 15:15:44.4805|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 15:15:44.8266|INFO|APIDocLog|Start CreateCLM +2026-04-21 15:15:44.8804|INFO|APIDocLog|Input JSON +2026-04-21 15:15:44.9080|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-21 15:15:55.9956|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 15:15:56.1601|INFO|APIDocLog|CreateDoks Start +2026-04-21 15:15:56.2138|INFO|APIDocLog|Input Json +2026-04-21 15:15:56.2138|DEBUG|OnDoc|Start GenDoc +2026-04-21 15:15:56.2138|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2247|DEBUG|OnDoc| +2026-04-21 15:15:56.2404|DEBUG|OnDoc| +2026-04-21 15:15:56.2404|DEBUG|OnDoc| +2026-04-21 15:15:56.2404|DEBUG|OnDoc| +2026-04-21 15:15:56.2404|DEBUG|OnDoc| +2026-04-21 15:15:56.2404|DEBUG|OnDoc| +2026-04-21 15:15:56.2404|DEBUG|OnDoc| +2026-04-21 15:15:56.2404|DEBUG|OnDoc| +2026-04-21 15:15:56.2404|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.2603|DEBUG|OnDoc| +2026-04-21 15:15:56.3075|DEBUG|OnDoc| +2026-04-21 15:15:56.3075|DEBUG|OnDoc| +2026-04-21 15:15:56.3343|DEBUG|OnDoc| +2026-04-21 15:15:56.3343|DEBUG|OnDoc| +2026-04-21 15:15:56.3343|DEBUG|OnDoc| +2026-04-21 15:15:56.3343|DEBUG|OnDoc| +2026-04-21 15:15:56.3567|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 15:15:56.3567|DEBUG|OnDoc| +2026-04-21 15:15:56.3689|DEBUG|OnDoc| +2026-04-21 15:15:56.3689|DEBUG|OnDoc| +2026-04-21 15:15:56.3689|DEBUG|OnDoc| +2026-04-21 15:15:56.3689|DEBUG|OnDoc| +2026-04-21 15:15:56.3689|DEBUG|OnDoc| +2026-04-21 15:15:56.3814|DEBUG|OnDoc| +2026-04-21 15:15:56.3814|DEBUG|OnDoc| +2026-04-21 15:15:56.3814|DEBUG|OnDoc|Generate_Word +2026-04-21 15:15:56.8049|DEBUG|OnDoc|Word2013 +2026-04-21 15:15:56.8049|DEBUG|OnDoc|Word2013 +2026-04-21 15:15:57.8857|DEBUG|OnDoc|Generate_Word +2026-04-21 15:15:57.9347|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023439 +2026-04-21 15:15:57.9347|INFO|DocLog|Dokument über API erstellt +2026-04-21 15:15:57.9347|INFO|APIDocLog|Dok erstellt +2026-04-21 15:15:57.9347|INFO|APIDocLog|Attachment angefügt +2026-04-21 15:15:57.9448|DEBUG|OnDoc| +2026-04-21 15:15:57.9448|DEBUG|OnDoc| +2026-04-21 15:15:57.9448|DEBUG|OnDoc| +2026-04-21 15:15:57.9810|DEBUG|OnDoc| +2026-04-21 15:15:57.9810|DEBUG|OnDoc| +2026-04-21 15:15:57.9810|DEBUG|OnDoc| +2026-04-21 15:15:57.9930|DEBUG|OnDoc| +2026-04-21 15:15:57.9930|DEBUG|OnDoc| +2026-04-21 15:15:57.9930|DEBUG|OnDoc| +2026-04-21 15:15:57.9930|DEBUG|OnDoc| +2026-04-21 15:15:57.9930|DEBUG|OnDoc| +2026-04-21 15:15:58.0343|DEBUG|OnDoc| +2026-04-21 15:15:58.4199|DEBUG|OnDoc| +2026-04-21 15:15:58.4310|DEBUG|OnDoc| +2026-04-21 15:32:02.0137|DEBUG|OnDoc| +2026-04-21 15:32:02.1056|DEBUG|OnDoc| +2026-04-21 15:32:02.1056|DEBUG|OnDoc| +2026-04-21 15:32:02.1056|DEBUG|OnDoc| +2026-04-21 15:32:02.4625|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 15:32:02.7380|INFO|APIDocLog|CreateDoks Start +2026-04-21 15:32:02.8492|INFO|APIDocLog|Input Json +2026-04-21 15:32:02.8693|DEBUG|OnDoc|Start GenDoc +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8693|DEBUG|OnDoc| +2026-04-21 15:32:02.8808|DEBUG|OnDoc| +2026-04-21 15:32:02.8808|DEBUG|OnDoc| +2026-04-21 15:32:02.8808|DEBUG|OnDoc| +2026-04-21 15:32:02.8808|DEBUG|OnDoc| +2026-04-21 15:32:02.8808|DEBUG|OnDoc| +2026-04-21 15:32:02.8808|DEBUG|OnDoc| +2026-04-21 15:32:02.8808|DEBUG|OnDoc| +2026-04-21 15:32:02.8808|DEBUG|OnDoc| +2026-04-21 15:32:02.8994|DEBUG|OnDoc| +2026-04-21 15:32:02.8994|DEBUG|OnDoc| +2026-04-21 15:32:02.8994|DEBUG|OnDoc| +2026-04-21 15:32:02.8994|DEBUG|OnDoc| +2026-04-21 15:32:02.8994|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9134|DEBUG|OnDoc| +2026-04-21 15:32:02.9677|DEBUG|OnDoc| +2026-04-21 15:32:02.9677|DEBUG|OnDoc| +2026-04-21 15:32:03.0017|DEBUG|OnDoc| +2026-04-21 15:32:03.0017|DEBUG|OnDoc| +2026-04-21 15:32:03.0017|DEBUG|OnDoc| +2026-04-21 15:32:03.0057|DEBUG|OnDoc| +2026-04-21 15:32:03.0242|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 15:32:03.0242|DEBUG|OnDoc| +2026-04-21 15:32:03.0242|DEBUG|OnDoc| +2026-04-21 15:32:03.0379|DEBUG|OnDoc| +2026-04-21 15:32:03.0379|DEBUG|OnDoc| +2026-04-21 15:32:03.0379|DEBUG|OnDoc| +2026-04-21 15:32:03.0379|DEBUG|OnDoc| +2026-04-21 15:32:03.0540|DEBUG|OnDoc| +2026-04-21 15:32:03.0540|DEBUG|OnDoc| +2026-04-21 15:32:03.0540|DEBUG|OnDoc|Generate_Word +2026-04-21 15:32:03.5840|DEBUG|OnDoc|Word2013 +2026-04-21 15:32:03.5840|DEBUG|OnDoc|Word2013 +2026-04-21 15:32:04.7256|DEBUG|OnDoc|Generate_Word +2026-04-21 15:32:04.7713|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023447 +2026-04-21 15:32:04.7713|INFO|DocLog|Dokument über API erstellt +2026-04-21 15:32:04.7713|INFO|APIDocLog|Dok erstellt +2026-04-21 15:32:04.7713|INFO|APIDocLog|Attachment angefügt +2026-04-21 15:32:04.7713|DEBUG|OnDoc| +2026-04-21 15:32:04.7713|DEBUG|OnDoc| +2026-04-21 15:32:04.7713|DEBUG|OnDoc| +2026-04-21 15:32:04.8114|DEBUG|OnDoc| +2026-04-21 15:32:04.8114|DEBUG|OnDoc| +2026-04-21 15:32:04.8114|DEBUG|OnDoc| +2026-04-21 15:32:04.8114|DEBUG|OnDoc| +2026-04-21 15:32:04.8189|DEBUG|OnDoc| +2026-04-21 15:32:04.8189|DEBUG|OnDoc| +2026-04-21 15:32:04.8189|DEBUG|OnDoc| +2026-04-21 15:32:04.8189|DEBUG|OnDoc| +2026-04-21 15:32:04.8445|DEBUG|OnDoc| +2026-04-21 15:32:05.2243|DEBUG|OnDoc| +2026-04-21 15:32:05.2343|DEBUG|OnDoc| +2026-04-21 15:48:18.9606|DEBUG|OnDoc| +2026-04-21 15:48:19.0289|DEBUG|OnDoc| +2026-04-21 15:48:19.0289|DEBUG|OnDoc| +2026-04-21 15:48:19.0289|DEBUG|OnDoc| +2026-04-21 15:48:19.3556|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 15:48:19.5804|INFO|APIDocLog|CreateDoks Start +2026-04-21 15:48:19.6720|INFO|APIDocLog|Input Json +2026-04-21 15:48:19.6851|DEBUG|OnDoc|Start GenDoc +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6851|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.6934|DEBUG|OnDoc| +2026-04-21 15:48:19.7101|DEBUG|OnDoc| +2026-04-21 15:48:19.7101|DEBUG|OnDoc| +2026-04-21 15:48:19.7101|DEBUG|OnDoc| +2026-04-21 15:48:19.7101|DEBUG|OnDoc| +2026-04-21 15:48:19.7101|DEBUG|OnDoc| +2026-04-21 15:48:19.7101|DEBUG|OnDoc| +2026-04-21 15:48:19.7101|DEBUG|OnDoc| +2026-04-21 15:48:19.7101|DEBUG|OnDoc| +2026-04-21 15:48:19.7101|DEBUG|OnDoc| +2026-04-21 15:48:19.7101|DEBUG|OnDoc| +2026-04-21 15:48:19.7487|DEBUG|OnDoc| +2026-04-21 15:48:19.7487|DEBUG|OnDoc| +2026-04-21 15:48:19.7487|DEBUG|OnDoc| +2026-04-21 15:48:19.7487|DEBUG|OnDoc| +2026-04-21 15:48:19.7487|DEBUG|OnDoc| +2026-04-21 15:48:19.7487|DEBUG|OnDoc| +2026-04-21 15:48:19.8270|DEBUG|OnDoc| +2026-04-21 15:48:19.8270|DEBUG|OnDoc| +2026-04-21 15:48:19.8555|DEBUG|OnDoc| +2026-04-21 15:48:19.8555|DEBUG|OnDoc| +2026-04-21 15:48:19.8555|DEBUG|OnDoc| +2026-04-21 15:48:19.8555|DEBUG|OnDoc| +2026-04-21 15:48:19.8806|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 15:48:19.8826|DEBUG|OnDoc| +2026-04-21 15:48:19.8826|DEBUG|OnDoc| +2026-04-21 15:48:19.8826|DEBUG|OnDoc| +2026-04-21 15:48:19.8826|DEBUG|OnDoc| +2026-04-21 15:48:19.8826|DEBUG|OnDoc| +2026-04-21 15:48:19.9001|DEBUG|OnDoc| +2026-04-21 15:48:19.9001|DEBUG|OnDoc| +2026-04-21 15:48:19.9001|DEBUG|OnDoc| +2026-04-21 15:48:19.9001|DEBUG|OnDoc|Generate_Word +2026-04-21 15:48:20.4268|DEBUG|OnDoc|Word2013 +2026-04-21 15:48:20.4371|DEBUG|OnDoc|Word2013 +2026-04-21 15:48:21.5815|DEBUG|OnDoc|Generate_Word +2026-04-21 15:48:21.6254|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023455 +2026-04-21 15:48:21.6254|INFO|DocLog|Dokument über API erstellt +2026-04-21 15:48:21.6254|INFO|APIDocLog|Dok erstellt +2026-04-21 15:48:21.6254|INFO|APIDocLog|Attachment angefügt +2026-04-21 15:48:21.6309|DEBUG|OnDoc| +2026-04-21 15:48:21.6309|DEBUG|OnDoc| +2026-04-21 15:48:21.6309|DEBUG|OnDoc| +2026-04-21 15:48:21.6692|DEBUG|OnDoc| +2026-04-21 15:48:21.6692|DEBUG|OnDoc| +2026-04-21 15:48:21.6692|DEBUG|OnDoc| +2026-04-21 15:48:21.6782|DEBUG|OnDoc| +2026-04-21 15:48:21.6782|DEBUG|OnDoc| +2026-04-21 15:48:21.6782|DEBUG|OnDoc| +2026-04-21 15:48:21.6782|DEBUG|OnDoc| +2026-04-21 15:48:21.6782|DEBUG|OnDoc| +2026-04-21 15:48:21.7132|DEBUG|OnDoc| +2026-04-21 15:48:22.1213|DEBUG|OnDoc| +2026-04-21 15:48:22.1341|DEBUG|OnDoc| +2026-04-21 15:49:59.4230|DEBUG|OnDoc| +2026-04-21 15:49:59.5173|DEBUG|OnDoc| +2026-04-21 15:49:59.5173|DEBUG|OnDoc| +2026-04-21 15:49:59.5173|DEBUG|OnDoc| +2026-04-21 15:49:59.8579|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 15:50:00.1688|INFO|APIDocLog|CreateDoks Start +2026-04-21 15:50:00.2797|INFO|APIDocLog|Input Json +2026-04-21 15:50:00.2956|DEBUG|OnDoc|Start GenDoc +2026-04-21 15:50:00.2956|DEBUG|OnDoc| +2026-04-21 15:50:00.2956|DEBUG|OnDoc| +2026-04-21 15:50:00.2956|DEBUG|OnDoc| +2026-04-21 15:50:00.2956|DEBUG|OnDoc| +2026-04-21 15:50:00.2956|DEBUG|OnDoc| +2026-04-21 15:50:00.2956|DEBUG|OnDoc| +2026-04-21 15:50:00.2956|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3034|DEBUG|OnDoc| +2026-04-21 15:50:00.3238|DEBUG|OnDoc| +2026-04-21 15:50:00.3238|DEBUG|OnDoc| +2026-04-21 15:50:00.3238|DEBUG|OnDoc| +2026-04-21 15:50:00.3238|DEBUG|OnDoc| +2026-04-21 15:50:00.3238|DEBUG|OnDoc| +2026-04-21 15:50:00.3376|DEBUG|OnDoc| +2026-04-21 15:50:00.3376|DEBUG|OnDoc| +2026-04-21 15:50:00.3376|DEBUG|OnDoc| +2026-04-21 15:50:00.3376|DEBUG|OnDoc| +2026-04-21 15:50:00.3376|DEBUG|OnDoc| +2026-04-21 15:50:00.3376|DEBUG|OnDoc| +2026-04-21 15:50:00.3376|DEBUG|OnDoc| +2026-04-21 15:50:00.3376|DEBUG|OnDoc| +2026-04-21 15:50:00.3376|DEBUG|OnDoc| +2026-04-21 15:50:00.3496|DEBUG|OnDoc| +2026-04-21 15:50:00.3496|DEBUG|OnDoc| +2026-04-21 15:50:00.3496|DEBUG|OnDoc| +2026-04-21 15:50:00.3901|DEBUG|OnDoc| +2026-04-21 15:50:00.3901|DEBUG|OnDoc| +2026-04-21 15:50:00.4362|DEBUG|OnDoc| +2026-04-21 15:50:00.4362|DEBUG|OnDoc| +2026-04-21 15:50:00.4362|DEBUG|OnDoc| +2026-04-21 15:50:00.4362|DEBUG|OnDoc| +2026-04-21 15:50:00.4608|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 15:50:00.4608|DEBUG|OnDoc| +2026-04-21 15:50:00.4753|DEBUG|OnDoc| +2026-04-21 15:50:00.4753|DEBUG|OnDoc| +2026-04-21 15:50:00.4753|DEBUG|OnDoc| +2026-04-21 15:50:00.4753|DEBUG|OnDoc| +2026-04-21 15:50:00.4753|DEBUG|OnDoc| +2026-04-21 15:50:00.4907|DEBUG|OnDoc| +2026-04-21 15:50:00.4907|DEBUG|OnDoc| +2026-04-21 15:50:00.4907|DEBUG|OnDoc|Generate_Word +2026-04-21 15:50:00.9734|DEBUG|OnDoc|Word2013 +2026-04-21 15:50:00.9830|DEBUG|OnDoc|Word2013 +2026-04-21 15:50:02.0721|DEBUG|OnDoc|Generate_Word +2026-04-21 15:50:02.1199|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023460 +2026-04-21 15:50:02.1199|INFO|DocLog|Dokument über API erstellt +2026-04-21 15:50:02.1199|INFO|APIDocLog|Dok erstellt +2026-04-21 15:50:02.1199|INFO|APIDocLog|Attachment angefügt +2026-04-21 15:50:02.1199|DEBUG|OnDoc| +2026-04-21 15:50:02.1334|DEBUG|OnDoc| +2026-04-21 15:50:02.1334|DEBUG|OnDoc| +2026-04-21 15:50:02.1721|DEBUG|OnDoc| +2026-04-21 15:50:02.1721|DEBUG|OnDoc| +2026-04-21 15:50:02.1801|DEBUG|OnDoc| +2026-04-21 15:50:02.1801|DEBUG|OnDoc| +2026-04-21 15:50:02.1801|DEBUG|OnDoc| +2026-04-21 15:50:02.1801|DEBUG|OnDoc| +2026-04-21 15:50:02.1801|DEBUG|OnDoc| +2026-04-21 15:50:02.1801|DEBUG|OnDoc| +2026-04-21 15:50:02.2118|DEBUG|OnDoc| +2026-04-21 15:50:02.6246|DEBUG|OnDoc| +2026-04-21 15:50:02.6351|DEBUG|OnDoc| +2026-04-21 15:52:17.2194|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 15:52:17.2761|INFO|APIDocLog|CreateDoks Start +2026-04-21 15:52:17.2976|INFO|APIDocLog|Input Json +2026-04-21 15:52:17.2976|DEBUG|OnDoc|Start GenDoc +2026-04-21 15:52:17.2976|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3026|DEBUG|OnDoc| +2026-04-21 15:52:17.3188|DEBUG|OnDoc| +2026-04-21 15:52:17.3188|DEBUG|OnDoc| +2026-04-21 15:52:17.3188|DEBUG|OnDoc| +2026-04-21 15:52:17.3188|DEBUG|OnDoc| +2026-04-21 15:52:17.3188|DEBUG|OnDoc| +2026-04-21 15:52:17.3426|DEBUG|OnDoc| +2026-04-21 15:52:17.3426|DEBUG|OnDoc| +2026-04-21 15:52:17.3426|DEBUG|OnDoc| +2026-04-21 15:52:17.3426|DEBUG|OnDoc| +2026-04-21 15:52:17.3692|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 15:52:17.3692|DEBUG|OnDoc| +2026-04-21 15:52:17.3692|DEBUG|OnDoc| +2026-04-21 15:52:17.3692|DEBUG|OnDoc| +2026-04-21 15:52:17.3807|DEBUG|OnDoc| +2026-04-21 15:52:17.3807|DEBUG|OnDoc| +2026-04-21 15:52:17.3807|DEBUG|OnDoc| +2026-04-21 15:52:17.3807|DEBUG|OnDoc| +2026-04-21 15:52:17.3972|DEBUG|OnDoc| +2026-04-21 15:52:17.3972|DEBUG|OnDoc|Generate_Word +2026-04-21 15:52:17.3972|DEBUG|OnDoc|Word2013 +2026-04-21 15:52:17.3972|DEBUG|OnDoc|Word2013 +2026-04-21 15:52:17.6986|DEBUG|OnDoc|Generate_Word +2026-04-21 15:52:17.7097|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023471 +2026-04-21 15:52:17.7097|INFO|DocLog|Dokument über API erstellt +2026-04-21 15:52:17.7097|INFO|APIDocLog|Dok erstellt +2026-04-21 15:52:17.7097|INFO|APIDocLog|Attachment angefügt +2026-04-21 15:52:17.7097|DEBUG|OnDoc| +2026-04-21 15:52:17.7097|DEBUG|OnDoc| +2026-04-21 15:52:17.7097|DEBUG|OnDoc| +2026-04-21 15:52:17.7434|DEBUG|OnDoc| +2026-04-21 15:52:17.7434|DEBUG|OnDoc| +2026-04-21 15:52:17.7434|DEBUG|OnDoc| +2026-04-21 15:52:17.7434|DEBUG|OnDoc| +2026-04-21 15:52:17.7434|DEBUG|OnDoc| +2026-04-21 15:52:17.7434|DEBUG|OnDoc| +2026-04-21 15:52:17.7434|DEBUG|OnDoc| +2026-04-21 15:52:17.7434|DEBUG|OnDoc| +2026-04-21 15:52:17.7795|DEBUG|OnDoc| +2026-04-21 15:52:17.8457|DEBUG|OnDoc| +2026-04-21 15:52:17.8532|DEBUG|OnDoc| +2026-04-21 15:53:10.3511|DEBUG|OnDoc| +2026-04-21 15:53:10.4415|DEBUG|OnDoc| +2026-04-21 15:53:10.4457|DEBUG|OnDoc| +2026-04-21 15:53:10.4457|DEBUG|OnDoc| +2026-04-21 15:53:10.7787|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 15:53:11.0338|INFO|APIDocLog|CreateDoks Start +2026-04-21 15:53:11.1630|INFO|APIDocLog|Input Json +2026-04-21 15:53:11.1794|DEBUG|OnDoc|Start GenDoc +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1794|DEBUG|OnDoc| +2026-04-21 15:53:11.1950|DEBUG|OnDoc| +2026-04-21 15:53:11.1950|DEBUG|OnDoc| +2026-04-21 15:53:11.1950|DEBUG|OnDoc| +2026-04-21 15:53:11.1950|DEBUG|OnDoc| +2026-04-21 15:53:11.1950|DEBUG|OnDoc| +2026-04-21 15:53:11.1950|DEBUG|OnDoc| +2026-04-21 15:53:11.1950|DEBUG|OnDoc| +2026-04-21 15:53:11.1950|DEBUG|OnDoc| +2026-04-21 15:53:11.2127|DEBUG|OnDoc| +2026-04-21 15:53:11.2127|DEBUG|OnDoc| +2026-04-21 15:53:11.2127|DEBUG|OnDoc| +2026-04-21 15:53:11.2127|DEBUG|OnDoc| +2026-04-21 15:53:11.2127|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.2272|DEBUG|OnDoc| +2026-04-21 15:53:11.3001|DEBUG|OnDoc| +2026-04-21 15:53:11.3036|DEBUG|OnDoc| +2026-04-21 15:53:11.3296|DEBUG|OnDoc| +2026-04-21 15:53:11.3296|DEBUG|OnDoc| +2026-04-21 15:53:11.3296|DEBUG|OnDoc| +2026-04-21 15:53:11.3296|DEBUG|OnDoc| +2026-04-21 15:53:11.3482|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 15:53:11.3502|DEBUG|OnDoc| +2026-04-21 15:53:11.3502|DEBUG|OnDoc| +2026-04-21 15:53:11.3502|DEBUG|OnDoc| +2026-04-21 15:53:11.3502|DEBUG|OnDoc| +2026-04-21 15:53:11.3711|DEBUG|OnDoc| +2026-04-21 15:53:11.3827|DEBUG|OnDoc| +2026-04-21 15:53:11.3827|DEBUG|OnDoc| +2026-04-21 15:53:11.3827|DEBUG|OnDoc| +2026-04-21 15:53:11.3827|DEBUG|OnDoc|Generate_Word +2026-04-21 15:53:11.8762|DEBUG|OnDoc|Word2013 +2026-04-21 15:53:11.8858|DEBUG|OnDoc|Word2013 +2026-04-21 15:53:13.1071|DEBUG|OnDoc|Generate_Word +2026-04-21 15:53:13.1581|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023486 +2026-04-21 15:53:13.1581|INFO|DocLog|Dokument über API erstellt +2026-04-21 15:53:13.1581|INFO|APIDocLog|Dok erstellt +2026-04-21 15:53:13.1581|INFO|APIDocLog|Attachment angefügt +2026-04-21 15:53:13.1646|DEBUG|OnDoc| +2026-04-21 15:53:13.1646|DEBUG|OnDoc| +2026-04-21 15:53:13.1646|DEBUG|OnDoc| +2026-04-21 15:53:13.1997|DEBUG|OnDoc| +2026-04-21 15:53:13.1997|DEBUG|OnDoc| +2026-04-21 15:53:13.1997|DEBUG|OnDoc| +2026-04-21 15:53:13.2098|DEBUG|OnDoc| +2026-04-21 15:53:13.2098|DEBUG|OnDoc| +2026-04-21 15:53:13.2098|DEBUG|OnDoc| +2026-04-21 15:53:13.2098|DEBUG|OnDoc| +2026-04-21 15:53:13.2098|DEBUG|OnDoc| +2026-04-21 15:53:13.2419|DEBUG|OnDoc| +2026-04-21 15:53:13.6803|DEBUG|OnDoc| +2026-04-21 15:53:13.6803|DEBUG|OnDoc| +2026-04-21 15:53:44.3675|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 15:53:44.4246|INFO|APIDocLog|CreateDoks Start +2026-04-21 15:53:44.4457|INFO|APIDocLog|Input Json +2026-04-21 15:53:44.4457|DEBUG|OnDoc|Start GenDoc +2026-04-21 15:53:44.4457|DEBUG|OnDoc| +2026-04-21 15:53:44.4457|DEBUG|OnDoc| +2026-04-21 15:53:44.4457|DEBUG|OnDoc| +2026-04-21 15:53:44.4457|DEBUG|OnDoc| +2026-04-21 15:53:44.4457|DEBUG|OnDoc| +2026-04-21 15:53:44.4457|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4591|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4748|DEBUG|OnDoc| +2026-04-21 15:53:44.4968|DEBUG|OnDoc| +2026-04-21 15:53:44.4968|DEBUG|OnDoc| +2026-04-21 15:53:44.5125|DEBUG|OnDoc| +2026-04-21 15:53:44.5125|DEBUG|OnDoc| +2026-04-21 15:53:44.5125|DEBUG|OnDoc| +2026-04-21 15:53:44.5125|DEBUG|OnDoc| +2026-04-21 15:53:44.5274|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 15:53:44.5274|DEBUG|OnDoc| +2026-04-21 15:53:44.5274|DEBUG|OnDoc| +2026-04-21 15:53:44.5375|DEBUG|OnDoc| +2026-04-21 15:53:44.5375|DEBUG|OnDoc| +2026-04-21 15:53:44.5375|DEBUG|OnDoc| +2026-04-21 15:53:44.5375|DEBUG|OnDoc| +2026-04-21 15:53:44.5375|DEBUG|OnDoc| +2026-04-21 15:53:44.5533|DEBUG|OnDoc| +2026-04-21 15:53:44.5533|DEBUG|OnDoc|Generate_Word +2026-04-21 15:53:44.5533|DEBUG|OnDoc|Word2013 +2026-04-21 15:53:44.5691|DEBUG|OnDoc|Word2013 +2026-04-21 15:53:44.8440|DEBUG|OnDoc|Generate_Word +2026-04-21 15:53:44.8566|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023494 +2026-04-21 15:53:44.8566|INFO|DocLog|Dokument über API erstellt +2026-04-21 15:53:44.8566|INFO|APIDocLog|Dok erstellt +2026-04-21 15:53:44.8566|INFO|APIDocLog|Attachment angefügt +2026-04-21 15:53:44.8566|DEBUG|OnDoc| +2026-04-21 15:53:44.8663|DEBUG|OnDoc| +2026-04-21 15:53:44.8663|DEBUG|OnDoc| +2026-04-21 15:53:44.8961|DEBUG|OnDoc| +2026-04-21 15:53:44.8991|DEBUG|OnDoc| +2026-04-21 15:53:44.8991|DEBUG|OnDoc| +2026-04-21 15:53:44.8991|DEBUG|OnDoc| +2026-04-21 15:53:44.8991|DEBUG|OnDoc| +2026-04-21 15:53:44.8991|DEBUG|OnDoc| +2026-04-21 15:53:44.8991|DEBUG|OnDoc| +2026-04-21 15:53:44.8991|DEBUG|OnDoc| +2026-04-21 15:53:44.9397|DEBUG|OnDoc| +2026-04-21 15:53:44.9944|DEBUG|OnDoc| +2026-04-21 15:53:44.9944|DEBUG|OnDoc| +2026-04-21 16:06:04.4140|DEBUG|OnDoc| +2026-04-21 16:06:04.5088|DEBUG|OnDoc| +2026-04-21 16:06:04.5088|DEBUG|OnDoc| +2026-04-21 16:06:04.5088|DEBUG|OnDoc| +2026-04-21 16:06:16.6624|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 16:06:16.8856|INFO|APIDocLog|Start CreateDoc +2026-04-21 16:06:16.9741|INFO|APIDocLog|Input JSON +2026-04-21 16:06:16.9953|DEBUG|OnDoc|Start GenDoc +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:16.9953|DEBUG|OnDoc| +2026-04-21 16:06:17.0073|DEBUG|OnDoc| +2026-04-21 16:06:17.0073|DEBUG|OnDoc| +2026-04-21 16:06:17.0073|DEBUG|OnDoc| +2026-04-21 16:06:17.0073|DEBUG|OnDoc| +2026-04-21 16:06:17.0073|DEBUG|OnDoc| +2026-04-21 16:06:17.0073|DEBUG|OnDoc| +2026-04-21 16:06:17.0073|DEBUG|OnDoc| +2026-04-21 16:06:17.0073|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0258|DEBUG|OnDoc| +2026-04-21 16:06:17.0571|DEBUG|OnDoc| +2026-04-21 16:06:17.0571|DEBUG|OnDoc| +2026-04-21 16:06:17.0727|INFO|OnDoc|Image-Bezug: 4 +2026-04-21 16:06:17.2715|DEBUG|OnDoc| +2026-04-21 16:06:17.2715|DEBUG|OnDoc| +2026-04-21 16:06:19.4085|DEBUG|OnDoc| +2026-04-21 16:06:19.4085|DEBUG|OnDoc| +2026-04-21 16:06:19.4334|DEBUG|OnDoc| +2026-04-21 16:06:19.4334|DEBUG|OnDoc| +2026-04-21 16:06:19.4334|DEBUG|OnDoc| +2026-04-21 16:06:19.4334|DEBUG|OnDoc| +2026-04-21 16:06:19.4526|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 16:06:19.4526|DEBUG|OnDoc| +2026-04-21 16:06:19.4651|DEBUG|OnDoc| +2026-04-21 16:06:19.4651|DEBUG|OnDoc| +2026-04-21 16:06:19.4651|DEBUG|OnDoc| +2026-04-21 16:06:19.4651|DEBUG|OnDoc| +2026-04-21 16:06:19.4756|DEBUG|OnDoc| +2026-04-21 16:06:19.4756|DEBUG|OnDoc| +2026-04-21 16:06:19.4756|DEBUG|OnDoc| +2026-04-21 16:06:19.4756|DEBUG|OnDoc|Generate_Word +2026-04-21 16:06:20.0571|DEBUG|OnDoc|Word2013 +2026-04-21 16:06:20.0571|DEBUG|OnDoc|Word2013 +2026-04-21 16:06:22.1545|DEBUG|OnDoc|Generate_Word +2026-04-21 16:06:22.2034|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023503 +2026-04-21 16:06:22.2034|INFO|DocLog|Dokument über API erstellt +2026-04-21 16:06:22.2034|INFO|APIDocLog|Dokument return to sender +2026-04-21 16:06:22.2034|DEBUG|OnDoc| +2026-04-21 16:06:22.2197|DEBUG|OnDoc| +2026-04-21 16:06:22.2197|DEBUG|OnDoc| +2026-04-21 16:06:22.2197|DEBUG|OnDoc| +2026-04-21 16:06:22.2197|DEBUG|OnDoc| +2026-04-21 16:06:22.2197|DEBUG|OnDoc| +2026-04-21 16:07:24.2822|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 16:07:24.3477|INFO|APIDocLog|Start CreateDoc +2026-04-21 16:07:24.3661|INFO|APIDocLog|Input JSON +2026-04-21 16:07:24.3661|DEBUG|OnDoc|Start GenDoc +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3661|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.3812|DEBUG|OnDoc| +2026-04-21 16:07:24.4065|DEBUG|OnDoc| +2026-04-21 16:07:24.4065|DEBUG|OnDoc| +2026-04-21 16:07:24.4157|INFO|OnDoc|Image-Bezug: 4 +2026-04-21 16:07:24.4580|DEBUG|OnDoc| +2026-04-21 16:07:24.4605|DEBUG|OnDoc| +2026-04-21 16:07:28.6141|DEBUG|OnDoc| +2026-04-21 16:07:28.6156|DEBUG|OnDoc| +2026-04-21 16:07:28.6156|DEBUG|OnDoc| +2026-04-21 16:07:28.6156|DEBUG|OnDoc| +2026-04-21 16:07:28.6156|DEBUG|OnDoc| +2026-04-21 16:07:28.6156|DEBUG|OnDoc| +2026-04-21 16:07:28.6359|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 16:07:28.6359|DEBUG|OnDoc| +2026-04-21 16:07:28.6359|DEBUG|OnDoc| +2026-04-21 16:07:28.6359|DEBUG|OnDoc| +2026-04-21 16:07:28.6359|DEBUG|OnDoc| +2026-04-21 16:07:28.6359|DEBUG|OnDoc| +2026-04-21 16:07:28.6479|DEBUG|OnDoc| +2026-04-21 16:07:28.6479|DEBUG|OnDoc| +2026-04-21 16:07:28.6479|DEBUG|OnDoc| +2026-04-21 16:07:28.6479|DEBUG|OnDoc|Generate_Word +2026-04-21 16:07:28.6623|DEBUG|OnDoc|Word2013 +2026-04-21 16:07:28.6623|DEBUG|OnDoc|Word2013 +2026-04-21 16:07:29.3682|DEBUG|OnDoc|Generate_Word +2026-04-21 16:07:29.3682|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023519 +2026-04-21 16:07:29.3682|INFO|DocLog|Dokument über API erstellt +2026-04-21 16:07:29.3682|INFO|APIDocLog|Dokument return to sender +2026-04-21 16:07:29.3682|DEBUG|OnDoc| +2026-04-21 16:07:29.3907|DEBUG|OnDoc| +2026-04-21 16:07:29.3907|DEBUG|OnDoc| +2026-04-21 16:07:29.3907|DEBUG|OnDoc| +2026-04-21 16:07:29.3907|DEBUG|OnDoc| +2026-04-21 16:07:29.3907|DEBUG|OnDoc| +2026-04-21 17:38:17.7663|DEBUG|OnDoc| +2026-04-21 17:38:17.8382|DEBUG|OnDoc| +2026-04-21 17:38:17.8382|DEBUG|OnDoc| +2026-04-21 17:38:17.8382|DEBUG|OnDoc| +2026-04-21 17:38:18.2104|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 17:38:18.5029|INFO|APIDocLog|CreateDoks Start +2026-04-21 17:38:18.6548|INFO|APIDocLog|Input Json +2026-04-21 17:38:18.6719|DEBUG|OnDoc|Start GenDoc +2026-04-21 17:38:18.6719|DEBUG|OnDoc| +2026-04-21 17:38:18.6719|DEBUG|OnDoc| +2026-04-21 17:38:18.6719|DEBUG|OnDoc| +2026-04-21 17:38:18.6719|DEBUG|OnDoc| +2026-04-21 17:38:18.6719|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6781|DEBUG|OnDoc| +2026-04-21 17:38:18.6937|DEBUG|OnDoc| +2026-04-21 17:38:18.6937|DEBUG|OnDoc| +2026-04-21 17:38:18.6937|DEBUG|OnDoc| +2026-04-21 17:38:18.6937|DEBUG|OnDoc| +2026-04-21 17:38:18.6937|DEBUG|OnDoc| +2026-04-21 17:38:18.6937|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7092|DEBUG|OnDoc| +2026-04-21 17:38:18.7665|DEBUG|OnDoc| +2026-04-21 17:38:18.7665|DEBUG|OnDoc| +2026-04-21 17:38:18.7991|DEBUG|OnDoc| +2026-04-21 17:38:18.7991|DEBUG|OnDoc| +2026-04-21 17:38:18.7991|DEBUG|OnDoc| +2026-04-21 17:38:18.8031|DEBUG|OnDoc| +2026-04-21 17:38:18.8251|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 17:38:18.8251|DEBUG|OnDoc| +2026-04-21 17:38:18.8377|DEBUG|OnDoc| +2026-04-21 17:38:18.8377|DEBUG|OnDoc| +2026-04-21 17:38:18.8377|DEBUG|OnDoc| +2026-04-21 17:38:18.8377|DEBUG|OnDoc| +2026-04-21 17:38:18.8377|DEBUG|OnDoc| +2026-04-21 17:38:18.8377|DEBUG|OnDoc| +2026-04-21 17:38:18.8560|DEBUG|OnDoc| +2026-04-21 17:38:18.8560|DEBUG|OnDoc|Generate_Word +2026-04-21 17:38:19.3598|DEBUG|OnDoc|Word2013 +2026-04-21 17:38:19.3700|DEBUG|OnDoc|Word2013 +2026-04-21 17:38:20.5239|DEBUG|OnDoc|Generate_Word +2026-04-21 17:38:20.5709|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023527 +2026-04-21 17:38:20.5709|INFO|DocLog|Dokument über API erstellt +2026-04-21 17:38:20.5709|INFO|APIDocLog|Dok erstellt +2026-04-21 17:38:20.5709|INFO|APIDocLog|Attachment angefügt +2026-04-21 17:38:20.5709|DEBUG|OnDoc| +2026-04-21 17:38:20.5709|DEBUG|OnDoc| +2026-04-21 17:38:20.5841|DEBUG|OnDoc| +2026-04-21 17:38:20.6144|DEBUG|OnDoc| +2026-04-21 17:38:20.6174|DEBUG|OnDoc| +2026-04-21 17:38:20.6174|DEBUG|OnDoc| +2026-04-21 17:38:20.6174|DEBUG|OnDoc| +2026-04-21 17:38:20.6174|DEBUG|OnDoc| +2026-04-21 17:38:20.6174|DEBUG|OnDoc| +2026-04-21 17:38:20.6174|DEBUG|OnDoc| +2026-04-21 17:38:20.6174|DEBUG|OnDoc| +2026-04-21 17:38:20.6586|DEBUG|OnDoc| +2026-04-21 17:38:21.0559|DEBUG|OnDoc| +2026-04-21 17:38:21.0559|DEBUG|OnDoc| +2026-04-21 17:39:13.5936|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 17:39:13.6568|INFO|APIDocLog|CreateDoks Start +2026-04-21 17:39:13.6768|INFO|APIDocLog|Input Json +2026-04-21 17:39:13.6804|DEBUG|OnDoc|Start GenDoc +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6804|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.6936|DEBUG|OnDoc| +2026-04-21 17:39:13.7195|DEBUG|OnDoc| +2026-04-21 17:39:13.7195|DEBUG|OnDoc| +2026-04-21 17:39:13.7285|DEBUG|OnDoc| +2026-04-21 17:39:13.7285|DEBUG|OnDoc| +2026-04-21 17:39:13.7285|DEBUG|OnDoc| +2026-04-21 17:39:13.7285|DEBUG|OnDoc| +2026-04-21 17:39:13.7413|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 17:39:13.7413|DEBUG|OnDoc| +2026-04-21 17:39:13.7413|DEBUG|OnDoc| +2026-04-21 17:39:13.7413|DEBUG|OnDoc| +2026-04-21 17:39:13.7413|DEBUG|OnDoc| +2026-04-21 17:39:13.7413|DEBUG|OnDoc| +2026-04-21 17:39:13.7413|DEBUG|OnDoc| +2026-04-21 17:39:13.7413|DEBUG|OnDoc| +2026-04-21 17:39:13.7592|DEBUG|OnDoc| +2026-04-21 17:39:13.7592|DEBUG|OnDoc|Generate_Word +2026-04-21 17:39:13.7592|DEBUG|OnDoc|Word2013 +2026-04-21 17:39:13.7592|DEBUG|OnDoc|Word2013 +2026-04-21 17:39:14.0600|DEBUG|OnDoc|Generate_Word +2026-04-21 17:39:14.0710|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023535 +2026-04-21 17:39:14.0710|INFO|DocLog|Dokument über API erstellt +2026-04-21 17:39:14.0710|INFO|APIDocLog|Dok erstellt +2026-04-21 17:39:14.0710|INFO|APIDocLog|Attachment angefügt +2026-04-21 17:39:14.0710|DEBUG|OnDoc| +2026-04-21 17:39:14.0710|DEBUG|OnDoc| +2026-04-21 17:39:14.0710|DEBUG|OnDoc| +2026-04-21 17:39:14.1043|DEBUG|OnDoc| +2026-04-21 17:39:14.1043|DEBUG|OnDoc| +2026-04-21 17:39:14.1043|DEBUG|OnDoc| +2026-04-21 17:39:14.1043|DEBUG|OnDoc| +2026-04-21 17:39:14.1043|DEBUG|OnDoc| +2026-04-21 17:39:14.1043|DEBUG|OnDoc| +2026-04-21 17:39:14.1043|DEBUG|OnDoc| +2026-04-21 17:39:14.1043|DEBUG|OnDoc| +2026-04-21 17:39:14.1415|DEBUG|OnDoc| +2026-04-21 17:39:14.1995|DEBUG|OnDoc| +2026-04-21 17:39:14.1995|DEBUG|OnDoc| +2026-04-21 17:39:22.6234|DEBUG|OnDoc| +2026-04-21 17:39:22.6585|DEBUG|OnDoc| +2026-04-21 17:45:35.1472|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 17:45:35.2172|INFO|APIDocLog|CreateDoks Start +2026-04-21 17:45:35.2415|INFO|APIDocLog|Input Json +2026-04-21 17:45:35.2415|DEBUG|OnDoc|Start GenDoc +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2415|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2570|DEBUG|OnDoc| +2026-04-21 17:45:35.2841|DEBUG|OnDoc| +2026-04-21 17:45:35.2871|DEBUG|OnDoc| +2026-04-21 17:45:35.2871|DEBUG|OnDoc| +2026-04-21 17:45:35.2871|DEBUG|OnDoc| +2026-04-21 17:45:35.2871|DEBUG|OnDoc| +2026-04-21 17:45:35.2871|DEBUG|OnDoc| +2026-04-21 17:45:35.3174|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 17:45:35.3174|DEBUG|OnDoc| +2026-04-21 17:45:35.3245|DEBUG|OnDoc| +2026-04-21 17:45:35.3245|DEBUG|OnDoc| +2026-04-21 17:45:35.3245|DEBUG|OnDoc| +2026-04-21 17:45:35.3245|DEBUG|OnDoc| +2026-04-21 17:45:35.3345|DEBUG|OnDoc| +2026-04-21 17:45:35.3345|DEBUG|OnDoc| +2026-04-21 17:45:35.3345|DEBUG|OnDoc| +2026-04-21 17:45:35.3345|DEBUG|OnDoc|Generate_Word +2026-04-21 17:45:35.3507|DEBUG|OnDoc|Word2013 +2026-04-21 17:45:35.3507|DEBUG|OnDoc|Word2013 +2026-04-21 17:45:35.6879|DEBUG|OnDoc|Generate_Word +2026-04-21 17:45:35.6999|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023540 +2026-04-21 17:45:35.6999|INFO|DocLog|Dokument über API erstellt +2026-04-21 17:45:35.6999|INFO|APIDocLog|Dok erstellt +2026-04-21 17:45:35.6999|INFO|APIDocLog|Attachment angefügt +2026-04-21 17:45:35.6999|DEBUG|OnDoc| +2026-04-21 17:45:35.7099|DEBUG|OnDoc| +2026-04-21 17:45:35.7099|DEBUG|OnDoc| +2026-04-21 17:45:35.7394|DEBUG|OnDoc| +2026-04-21 17:45:35.7419|DEBUG|OnDoc| +2026-04-21 17:45:35.7419|DEBUG|OnDoc| +2026-04-21 17:45:35.7419|DEBUG|OnDoc| +2026-04-21 17:45:35.7419|DEBUG|OnDoc| +2026-04-21 17:45:35.7419|DEBUG|OnDoc| +2026-04-21 17:45:35.7419|DEBUG|OnDoc| +2026-04-21 17:45:35.7419|DEBUG|OnDoc| +2026-04-21 17:45:35.7801|DEBUG|OnDoc| +2026-04-21 17:45:35.8361|DEBUG|OnDoc| +2026-04-21 17:45:35.8361|DEBUG|OnDoc| +2026-04-21 17:45:54.0104|DEBUG|OnDoc| +2026-04-21 17:45:54.0478|DEBUG|OnDoc| +2026-04-21 17:47:18.9757|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 17:47:19.0163|INFO|APIDocLog|CreateDoks Start +2026-04-21 17:47:19.0464|INFO|APIDocLog|Input Json +2026-04-21 17:47:19.0464|DEBUG|OnDoc|Start GenDoc +2026-04-21 17:47:19.0464|DEBUG|OnDoc| +2026-04-21 17:47:19.0464|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0527|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0691|DEBUG|OnDoc| +2026-04-21 17:47:19.0844|DEBUG|OnDoc| +2026-04-21 17:47:19.0844|DEBUG|OnDoc| +2026-04-21 17:47:19.0844|DEBUG|OnDoc| +2026-04-21 17:47:19.0844|DEBUG|OnDoc| +2026-04-21 17:47:19.1054|DEBUG|OnDoc| +2026-04-21 17:47:19.1054|DEBUG|OnDoc| +2026-04-21 17:47:19.1160|DEBUG|OnDoc| +2026-04-21 17:47:19.1160|DEBUG|OnDoc| +2026-04-21 17:47:19.1160|DEBUG|OnDoc| +2026-04-21 17:47:19.1160|DEBUG|OnDoc| +2026-04-21 17:47:19.1334|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 17:47:19.1334|DEBUG|OnDoc| +2026-04-21 17:47:19.1334|DEBUG|OnDoc| +2026-04-21 17:47:19.1334|DEBUG|OnDoc| +2026-04-21 17:47:19.1334|DEBUG|OnDoc| +2026-04-21 17:47:19.1334|DEBUG|OnDoc| +2026-04-21 17:47:19.1475|DEBUG|OnDoc| +2026-04-21 17:47:19.1475|DEBUG|OnDoc| +2026-04-21 17:47:19.1475|DEBUG|OnDoc| +2026-04-21 17:47:19.1475|DEBUG|OnDoc|Generate_Word +2026-04-21 17:47:19.1475|DEBUG|OnDoc|Word2013 +2026-04-21 17:47:19.1475|DEBUG|OnDoc|Word2013 +2026-04-21 17:47:19.4863|DEBUG|OnDoc|Generate_Word +2026-04-21 17:47:19.4967|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023551 +2026-04-21 17:47:19.4967|INFO|DocLog|Dokument über API erstellt +2026-04-21 17:47:19.4967|INFO|APIDocLog|Dok erstellt +2026-04-21 17:47:19.4967|INFO|APIDocLog|Attachment angefügt +2026-04-21 17:47:19.4967|DEBUG|OnDoc| +2026-04-21 17:47:19.4967|DEBUG|OnDoc| +2026-04-21 17:47:19.4967|DEBUG|OnDoc| +2026-04-21 17:47:19.5287|DEBUG|OnDoc| +2026-04-21 17:47:19.5287|DEBUG|OnDoc| +2026-04-21 17:47:19.5287|DEBUG|OnDoc| +2026-04-21 17:47:19.5287|DEBUG|OnDoc| +2026-04-21 17:47:19.5287|DEBUG|OnDoc| +2026-04-21 17:47:19.5287|DEBUG|OnDoc| +2026-04-21 17:47:19.5369|DEBUG|OnDoc| +2026-04-21 17:47:19.5369|DEBUG|OnDoc| +2026-04-21 17:47:19.5677|DEBUG|OnDoc| +2026-04-21 17:47:19.6196|DEBUG|OnDoc| +2026-04-21 17:47:19.6196|DEBUG|OnDoc| +2026-04-21 17:47:38.0392|DEBUG|OnDoc| +2026-04-21 17:47:38.0761|DEBUG|OnDoc| +2026-04-21 17:47:58.1775|INFO|APIDocLog|DokumentGegnerator Start +2026-04-21 17:47:58.2422|INFO|APIDocLog|CreateDoks Start +2026-04-21 17:47:58.2716|INFO|APIDocLog|Input Json +2026-04-21 17:47:58.2716|DEBUG|OnDoc|Start GenDoc +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2716|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.2876|DEBUG|OnDoc| +2026-04-21 17:47:58.3235|DEBUG|OnDoc| +2026-04-21 17:47:58.3235|DEBUG|OnDoc| +2026-04-21 17:47:58.3377|DEBUG|OnDoc| +2026-04-21 17:47:58.3377|DEBUG|OnDoc| +2026-04-21 17:47:58.3377|DEBUG|OnDoc| +2026-04-21 17:47:58.3377|DEBUG|OnDoc| +2026-04-21 17:47:58.3604|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-21 17:47:58.3604|DEBUG|OnDoc| +2026-04-21 17:47:58.3731|DEBUG|OnDoc| +2026-04-21 17:47:58.3731|DEBUG|OnDoc| +2026-04-21 17:47:58.3731|DEBUG|OnDoc| +2026-04-21 17:47:58.3731|DEBUG|OnDoc| +2026-04-21 17:47:58.3842|DEBUG|OnDoc| +2026-04-21 17:47:58.3842|DEBUG|OnDoc| +2026-04-21 17:47:58.3842|DEBUG|OnDoc| +2026-04-21 17:47:58.3842|DEBUG|OnDoc|Generate_Word +2026-04-21 17:47:58.4107|DEBUG|OnDoc|Word2013 +2026-04-21 17:47:58.4148|DEBUG|OnDoc|Word2013 +2026-04-21 17:47:58.7724|DEBUG|OnDoc|Generate_Word +2026-04-21 17:47:58.7724|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023566 +2026-04-21 17:47:58.7724|INFO|DocLog|Dokument über API erstellt +2026-04-21 17:47:58.7724|INFO|APIDocLog|Dok erstellt +2026-04-21 17:47:58.7724|INFO|APIDocLog|Attachment angefügt +2026-04-21 17:47:58.7877|DEBUG|OnDoc| +2026-04-21 17:47:58.7877|DEBUG|OnDoc| +2026-04-21 17:47:58.7877|DEBUG|OnDoc| +2026-04-21 17:47:58.8158|DEBUG|OnDoc| +2026-04-21 17:47:58.8158|DEBUG|OnDoc| +2026-04-21 17:47:58.8193|DEBUG|OnDoc| +2026-04-21 17:47:58.8193|DEBUG|OnDoc| +2026-04-21 17:47:58.8193|DEBUG|OnDoc| +2026-04-21 17:47:58.8193|DEBUG|OnDoc| +2026-04-21 17:47:58.8193|DEBUG|OnDoc| +2026-04-21 17:47:58.8193|DEBUG|OnDoc| +2026-04-21 17:47:58.8483|DEBUG|OnDoc| +2026-04-21 17:47:58.8929|DEBUG|OnDoc| +2026-04-21 17:47:58.8985|DEBUG|OnDoc| +2026-04-21 17:48:06.6277|DEBUG|OnDoc| +2026-04-21 17:48:06.6648|DEBUG|OnDoc| +2026-04-22 08:27:02.0689|DEBUG|OnDoc| +2026-04-22 08:27:02.1700|DEBUG|OnDoc| +2026-04-22 08:27:02.1700|DEBUG|OnDoc| +2026-04-22 08:27:02.1700|DEBUG|OnDoc| +2026-04-22 08:27:04.9124|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 08:27:05.1138|INFO|APIDocLog|CreateDoks Start +2026-04-22 08:27:05.2034|INFO|APIDocLog|Input Json +2026-04-22 08:27:05.2164|DEBUG|OnDoc|Start GenDoc +2026-04-22 08:27:05.2164|DEBUG|OnDoc| +2026-04-22 08:27:05.2164|DEBUG|OnDoc| +2026-04-22 08:27:05.2164|DEBUG|OnDoc| +2026-04-22 08:27:05.2164|DEBUG|OnDoc| +2026-04-22 08:27:05.2164|DEBUG|OnDoc| +2026-04-22 08:27:05.2164|DEBUG|OnDoc| +2026-04-22 08:27:05.2164|DEBUG|OnDoc| +2026-04-22 08:27:05.2164|DEBUG|OnDoc| +2026-04-22 08:27:05.2164|DEBUG|OnDoc| +2026-04-22 08:27:05.2164|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2249|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2400|DEBUG|OnDoc| +2026-04-22 08:27:05.2962|DEBUG|OnDoc| +2026-04-22 08:27:05.2962|DEBUG|OnDoc| +2026-04-22 08:27:05.3251|DEBUG|OnDoc| +2026-04-22 08:27:05.3251|DEBUG|OnDoc| +2026-04-22 08:27:05.3251|DEBUG|OnDoc| +2026-04-22 08:27:05.3251|DEBUG|OnDoc| +2026-04-22 08:27:05.3472|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 08:27:05.3502|DEBUG|OnDoc| +2026-04-22 08:27:05.3502|DEBUG|OnDoc| +2026-04-22 08:27:05.3502|DEBUG|OnDoc| +2026-04-22 08:27:05.3502|DEBUG|OnDoc| +2026-04-22 08:27:05.3502|DEBUG|OnDoc| +2026-04-22 08:27:05.3697|DEBUG|OnDoc| +2026-04-22 08:27:05.3697|DEBUG|OnDoc| +2026-04-22 08:27:05.3697|DEBUG|OnDoc| +2026-04-22 08:27:05.3697|DEBUG|OnDoc|Generate_Word +2026-04-22 08:27:05.8473|DEBUG|OnDoc|Word2013 +2026-04-22 08:27:05.8563|DEBUG|OnDoc|Word2013 +2026-04-22 08:27:06.9614|DEBUG|OnDoc|Generate_Word +2026-04-22 08:27:07.0056|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023574 +2026-04-22 08:27:07.0056|INFO|DocLog|Dokument über API erstellt +2026-04-22 08:27:07.0056|INFO|APIDocLog|Dok erstellt +2026-04-22 08:27:07.0056|INFO|APIDocLog|Attachment angefügt +2026-04-22 08:27:07.0056|DEBUG|OnDoc| +2026-04-22 08:27:07.0056|DEBUG|OnDoc| +2026-04-22 08:27:07.0056|DEBUG|OnDoc| +2026-04-22 08:27:07.0448|DEBUG|OnDoc| +2026-04-22 08:27:07.0448|DEBUG|OnDoc| +2026-04-22 08:27:07.0538|DEBUG|OnDoc| +2026-04-22 08:27:07.0538|DEBUG|OnDoc| +2026-04-22 08:27:07.0538|DEBUG|OnDoc| +2026-04-22 08:27:07.0538|DEBUG|OnDoc| +2026-04-22 08:27:07.0538|DEBUG|OnDoc| +2026-04-22 08:27:07.0538|DEBUG|OnDoc| +2026-04-22 08:27:07.0825|DEBUG|OnDoc| +2026-04-22 08:27:07.4878|DEBUG|OnDoc| +2026-04-22 08:27:07.4909|DEBUG|OnDoc| +2026-04-22 08:27:09.5838|DEBUG|OnDoc| +2026-04-22 08:27:09.5838|DEBUG|OnDoc| +2026-04-22 08:28:47.7359|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 08:28:47.7981|INFO|APIDocLog|CreateDoks Start +2026-04-22 08:28:47.8209|INFO|APIDocLog|Input Json +2026-04-22 08:28:47.8209|DEBUG|OnDoc|Start GenDoc +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8209|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8338|DEBUG|OnDoc| +2026-04-22 08:28:47.8499|DEBUG|OnDoc| +2026-04-22 08:28:47.8499|DEBUG|OnDoc| +2026-04-22 08:28:47.8499|DEBUG|OnDoc| +2026-04-22 08:28:47.8499|DEBUG|OnDoc| +2026-04-22 08:28:47.8499|DEBUG|OnDoc| +2026-04-22 08:28:47.8499|DEBUG|OnDoc| +2026-04-22 08:28:47.8499|DEBUG|OnDoc| +2026-04-22 08:28:47.8674|DEBUG|OnDoc| +2026-04-22 08:28:47.8674|DEBUG|OnDoc| +2026-04-22 08:28:47.8892|DEBUG|OnDoc| +2026-04-22 08:28:47.8892|DEBUG|OnDoc| +2026-04-22 08:28:47.8892|DEBUG|OnDoc| +2026-04-22 08:28:47.8892|DEBUG|OnDoc| +2026-04-22 08:28:47.9055|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 08:28:47.9055|DEBUG|OnDoc| +2026-04-22 08:28:47.9165|DEBUG|OnDoc| +2026-04-22 08:28:47.9165|DEBUG|OnDoc| +2026-04-22 08:28:47.9165|DEBUG|OnDoc| +2026-04-22 08:28:47.9165|DEBUG|OnDoc| +2026-04-22 08:28:47.9281|DEBUG|OnDoc| +2026-04-22 08:28:47.9281|DEBUG|OnDoc| +2026-04-22 08:28:47.9281|DEBUG|OnDoc| +2026-04-22 08:28:47.9281|DEBUG|OnDoc|Generate_Word +2026-04-22 08:28:47.9582|DEBUG|OnDoc|Word2013 +2026-04-22 08:28:47.9612|DEBUG|OnDoc|Word2013 +2026-04-22 08:28:48.2784|DEBUG|OnDoc|Generate_Word +2026-04-22 08:28:48.2911|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023582 +2026-04-22 08:28:48.2911|INFO|DocLog|Dokument über API erstellt +2026-04-22 08:28:48.2911|INFO|APIDocLog|Dok erstellt +2026-04-22 08:28:48.2911|INFO|APIDocLog|Attachment angefügt +2026-04-22 08:28:48.2911|DEBUG|OnDoc| +2026-04-22 08:28:48.3041|DEBUG|OnDoc| +2026-04-22 08:28:48.3041|DEBUG|OnDoc| +2026-04-22 08:28:48.3339|DEBUG|OnDoc| +2026-04-22 08:28:48.3339|DEBUG|OnDoc| +2026-04-22 08:28:48.3339|DEBUG|OnDoc| +2026-04-22 08:28:48.3339|DEBUG|OnDoc| +2026-04-22 08:28:48.3339|DEBUG|OnDoc| +2026-04-22 08:28:48.3339|DEBUG|OnDoc| +2026-04-22 08:28:48.3339|DEBUG|OnDoc| +2026-04-22 08:28:48.3339|DEBUG|OnDoc| +2026-04-22 08:28:48.3681|DEBUG|OnDoc| +2026-04-22 08:28:48.4399|DEBUG|OnDoc| +2026-04-22 08:28:48.4499|DEBUG|OnDoc| +2026-04-22 08:28:49.9613|DEBUG|OnDoc| +2026-04-22 08:28:49.9613|DEBUG|OnDoc| +2026-04-22 08:29:40.2010|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 08:29:40.2638|INFO|APIDocLog|CreateDoks Start +2026-04-22 08:29:40.2872|INFO|APIDocLog|Input Json +2026-04-22 08:29:40.2872|DEBUG|OnDoc|Start GenDoc +2026-04-22 08:29:40.2872|DEBUG|OnDoc| +2026-04-22 08:29:40.2872|DEBUG|OnDoc| +2026-04-22 08:29:40.2872|DEBUG|OnDoc| +2026-04-22 08:29:40.2872|DEBUG|OnDoc| +2026-04-22 08:29:40.2872|DEBUG|OnDoc| +2026-04-22 08:29:40.2872|DEBUG|OnDoc| +2026-04-22 08:29:40.2872|DEBUG|OnDoc| +2026-04-22 08:29:40.2872|DEBUG|OnDoc| +2026-04-22 08:29:40.2872|DEBUG|OnDoc| +2026-04-22 08:29:40.2872|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3035|DEBUG|OnDoc| +2026-04-22 08:29:40.3184|DEBUG|OnDoc| +2026-04-22 08:29:40.3184|DEBUG|OnDoc| +2026-04-22 08:29:40.3184|DEBUG|OnDoc| +2026-04-22 08:29:40.3184|DEBUG|OnDoc| +2026-04-22 08:29:40.3184|DEBUG|OnDoc| +2026-04-22 08:29:40.3184|DEBUG|OnDoc| +2026-04-22 08:29:40.3184|DEBUG|OnDoc| +2026-04-22 08:29:40.3184|DEBUG|OnDoc| +2026-04-22 08:29:40.3363|DEBUG|OnDoc| +2026-04-22 08:29:40.3363|DEBUG|OnDoc| +2026-04-22 08:29:40.3500|DEBUG|OnDoc| +2026-04-22 08:29:40.3500|DEBUG|OnDoc| +2026-04-22 08:29:40.3500|DEBUG|OnDoc| +2026-04-22 08:29:40.3500|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 08:29:40.3500|DEBUG|OnDoc| +2026-04-22 08:29:40.3749|DEBUG|OnDoc| +2026-04-22 08:29:40.3749|DEBUG|OnDoc| +2026-04-22 08:29:40.3749|DEBUG|OnDoc| +2026-04-22 08:29:40.3749|DEBUG|OnDoc| +2026-04-22 08:29:40.3923|DEBUG|OnDoc| +2026-04-22 08:29:40.3923|DEBUG|OnDoc| +2026-04-22 08:29:40.4024|DEBUG|OnDoc| +2026-04-22 08:29:40.4024|DEBUG|OnDoc|Generate_Word +2026-04-22 08:29:40.4127|DEBUG|OnDoc|Word2013 +2026-04-22 08:29:40.4127|DEBUG|OnDoc|Word2013 +2026-04-22 08:29:40.6914|DEBUG|OnDoc|Generate_Word +2026-04-22 08:29:40.7036|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023598 +2026-04-22 08:29:40.7036|INFO|DocLog|Dokument über API erstellt +2026-04-22 08:29:40.7036|INFO|APIDocLog|Dok erstellt +2026-04-22 08:29:40.7036|INFO|APIDocLog|Attachment angefügt +2026-04-22 08:29:40.7036|DEBUG|OnDoc| +2026-04-22 08:29:40.7113|DEBUG|OnDoc| +2026-04-22 08:29:40.7113|DEBUG|OnDoc| +2026-04-22 08:29:40.7325|DEBUG|OnDoc| +2026-04-22 08:29:40.7325|DEBUG|OnDoc| +2026-04-22 08:29:40.7325|DEBUG|OnDoc| +2026-04-22 08:29:40.7325|DEBUG|OnDoc| +2026-04-22 08:29:40.7325|DEBUG|OnDoc| +2026-04-22 08:29:40.7325|DEBUG|OnDoc| +2026-04-22 08:29:40.7405|DEBUG|OnDoc| +2026-04-22 08:29:40.7405|DEBUG|OnDoc| +2026-04-22 08:29:40.7679|DEBUG|OnDoc| +2026-04-22 08:29:40.8715|DEBUG|OnDoc| +2026-04-22 08:29:40.8836|DEBUG|OnDoc| +2026-04-22 08:29:42.4923|DEBUG|OnDoc| +2026-04-22 08:29:42.4923|DEBUG|OnDoc| +2026-04-22 08:30:43.9811|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 08:30:44.0481|INFO|APIDocLog|CreateDoks Start +2026-04-22 08:30:44.0747|INFO|APIDocLog|Input Json +2026-04-22 08:30:44.0747|DEBUG|OnDoc|Start GenDoc +2026-04-22 08:30:44.0747|DEBUG|OnDoc| +2026-04-22 08:30:44.0747|DEBUG|OnDoc| +2026-04-22 08:30:44.0747|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0843|DEBUG|OnDoc| +2026-04-22 08:30:44.0997|DEBUG|OnDoc| +2026-04-22 08:30:44.0997|DEBUG|OnDoc| +2026-04-22 08:30:44.0997|DEBUG|OnDoc| +2026-04-22 08:30:44.0997|DEBUG|OnDoc| +2026-04-22 08:30:44.0997|DEBUG|OnDoc| +2026-04-22 08:30:44.0997|DEBUG|OnDoc| +2026-04-22 08:30:44.0997|DEBUG|OnDoc| +2026-04-22 08:30:44.0997|DEBUG|OnDoc| +2026-04-22 08:30:44.0997|DEBUG|OnDoc| +2026-04-22 08:30:44.0997|DEBUG|OnDoc| +2026-04-22 08:30:44.1158|DEBUG|OnDoc| +2026-04-22 08:30:44.1158|DEBUG|OnDoc| +2026-04-22 08:30:44.1158|DEBUG|OnDoc| +2026-04-22 08:30:44.1158|DEBUG|OnDoc| +2026-04-22 08:30:44.1158|DEBUG|OnDoc| +2026-04-22 08:30:44.1311|DEBUG|OnDoc| +2026-04-22 08:30:44.1311|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 08:30:44.1311|DEBUG|OnDoc| +2026-04-22 08:30:44.1552|DEBUG|OnDoc| +2026-04-22 08:30:44.1552|DEBUG|OnDoc| +2026-04-22 08:30:44.1552|DEBUG|OnDoc| +2026-04-22 08:30:44.1552|DEBUG|OnDoc| +2026-04-22 08:30:44.1670|DEBUG|OnDoc| +2026-04-22 08:30:44.1670|DEBUG|OnDoc| +2026-04-22 08:30:44.1670|DEBUG|OnDoc| +2026-04-22 08:30:44.1670|DEBUG|OnDoc|Generate_Word +2026-04-22 08:30:44.1831|DEBUG|OnDoc|Word2013 +2026-04-22 08:30:44.1831|DEBUG|OnDoc|Word2013 +2026-04-22 08:30:44.4515|DEBUG|OnDoc|Generate_Word +2026-04-22 08:30:44.4630|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023607 +2026-04-22 08:30:44.4630|INFO|DocLog|Dokument über API erstellt +2026-04-22 08:30:44.4630|INFO|APIDocLog|Dok erstellt +2026-04-22 08:30:44.4630|INFO|APIDocLog|Attachment angefügt +2026-04-22 08:30:44.4630|DEBUG|OnDoc| +2026-04-22 08:30:44.4630|DEBUG|OnDoc| +2026-04-22 08:30:44.4771|DEBUG|OnDoc| +2026-04-22 08:30:44.5109|DEBUG|OnDoc| +2026-04-22 08:30:44.5109|DEBUG|OnDoc| +2026-04-22 08:30:44.5109|DEBUG|OnDoc| +2026-04-22 08:30:44.5109|DEBUG|OnDoc| +2026-04-22 08:30:44.5109|DEBUG|OnDoc| +2026-04-22 08:30:44.5109|DEBUG|OnDoc| +2026-04-22 08:30:44.5109|DEBUG|OnDoc| +2026-04-22 08:30:44.5109|DEBUG|OnDoc| +2026-04-22 08:30:44.5451|DEBUG|OnDoc| +2026-04-22 08:30:44.6039|DEBUG|OnDoc| +2026-04-22 08:30:44.6039|DEBUG|OnDoc| +2026-04-22 08:30:46.2215|DEBUG|OnDoc| +2026-04-22 08:30:46.2315|DEBUG|OnDoc| +2026-04-22 08:30:46.2523|DEBUG|OnDoc| +2026-04-22 08:30:46.2563|DEBUG|OnDoc| +2026-04-22 08:30:48.7575|DEBUG|OnDoc| +2026-04-22 08:30:48.7575|DEBUG|OnDoc| +2026-04-22 08:30:48.7575|DEBUG|OnDoc| +2026-04-22 08:30:48.7720|DEBUG|OnDoc| +2026-04-22 08:31:00.8978|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. stefan.hutter@tkb.ch +2026-04-22 08:31:00.9488|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 08:31:00.9488|INFO|DocLog|Versandpaket vorbereitet +2026-04-22 08:31:00.9488|INFO|APIDocLog|Dokumentpaket abgeschlossen +2026-04-22 09:06:12.6285|DEBUG|OnDoc| +2026-04-22 09:06:12.7300|DEBUG|OnDoc| +2026-04-22 09:06:12.7300|DEBUG|OnDoc| +2026-04-22 09:06:12.7300|DEBUG|OnDoc| +2026-04-22 09:06:13.1405|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:06:13.4511|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:06:13.5822|INFO|APIDocLog|Input Json +2026-04-22 09:06:13.5952|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:06:13.5952|DEBUG|OnDoc| +2026-04-22 09:06:13.5952|DEBUG|OnDoc| +2026-04-22 09:06:13.5952|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.5992|DEBUG|OnDoc| +2026-04-22 09:06:13.6188|DEBUG|OnDoc| +2026-04-22 09:06:13.6188|DEBUG|OnDoc| +2026-04-22 09:06:13.6188|DEBUG|OnDoc| +2026-04-22 09:06:13.6188|DEBUG|OnDoc| +2026-04-22 09:06:13.6188|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6340|DEBUG|OnDoc| +2026-04-22 09:06:13.6957|DEBUG|OnDoc| +2026-04-22 09:06:13.6957|DEBUG|OnDoc| +2026-04-22 09:06:13.7371|DEBUG|OnDoc| +2026-04-22 09:06:13.7406|DEBUG|OnDoc| +2026-04-22 09:06:13.7406|DEBUG|OnDoc| +2026-04-22 09:06:13.7406|DEBUG|OnDoc| +2026-04-22 09:06:13.7689|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:06:13.7719|DEBUG|OnDoc| +2026-04-22 09:06:13.7719|DEBUG|OnDoc| +2026-04-22 09:06:13.7719|DEBUG|OnDoc| +2026-04-22 09:06:13.7719|DEBUG|OnDoc| +2026-04-22 09:06:13.7871|DEBUG|OnDoc| +2026-04-22 09:06:13.7871|DEBUG|OnDoc| +2026-04-22 09:06:13.7871|DEBUG|OnDoc| +2026-04-22 09:06:13.7871|DEBUG|OnDoc| +2026-04-22 09:06:13.8033|DEBUG|OnDoc|Generate_Word +2026-04-22 09:06:14.5108|DEBUG|OnDoc|Word2013 +2026-04-22 09:06:14.5108|DEBUG|OnDoc|Word2013 +2026-04-22 09:06:16.0291|DEBUG|OnDoc|Generate_Word +2026-04-22 09:06:16.0931|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023615 +2026-04-22 09:06:16.0931|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:06:16.0931|INFO|APIDocLog|Dok erstellt +2026-04-22 09:06:16.0931|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:06:16.0931|DEBUG|OnDoc| +2026-04-22 09:06:16.1020|DEBUG|OnDoc| +2026-04-22 09:06:16.1020|DEBUG|OnDoc| +2026-04-22 09:06:16.1344|DEBUG|OnDoc| +2026-04-22 09:06:16.1344|DEBUG|OnDoc| +2026-04-22 09:06:16.1344|DEBUG|OnDoc| +2026-04-22 09:06:16.1344|DEBUG|OnDoc| +2026-04-22 09:06:16.1344|DEBUG|OnDoc| +2026-04-22 09:06:16.1344|DEBUG|OnDoc| +2026-04-22 09:06:16.1344|DEBUG|OnDoc| +2026-04-22 09:06:16.1344|DEBUG|OnDoc| +2026-04-22 09:06:16.1724|DEBUG|OnDoc| +2026-04-22 09:06:16.6967|DEBUG|OnDoc| +2026-04-22 09:06:16.6967|DEBUG|OnDoc| +2026-04-22 09:06:38.5888|DEBUG|OnDoc| +2026-04-22 09:06:38.6254|DEBUG|OnDoc| +2026-04-22 09:08:15.9507|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:08:16.0103|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:08:16.0305|INFO|APIDocLog|Input Json +2026-04-22 09:08:16.0305|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:08:16.0305|DEBUG|OnDoc| +2026-04-22 09:08:16.0305|DEBUG|OnDoc| +2026-04-22 09:08:16.0305|DEBUG|OnDoc| +2026-04-22 09:08:16.0305|DEBUG|OnDoc| +2026-04-22 09:08:16.0305|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0368|DEBUG|OnDoc| +2026-04-22 09:08:16.0612|DEBUG|OnDoc| +2026-04-22 09:08:16.0612|DEBUG|OnDoc| +2026-04-22 09:08:16.0697|DEBUG|OnDoc| +2026-04-22 09:08:16.0697|DEBUG|OnDoc| +2026-04-22 09:08:16.0697|DEBUG|OnDoc| +2026-04-22 09:08:16.0697|DEBUG|OnDoc| +2026-04-22 09:08:16.0697|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:08:16.0697|DEBUG|OnDoc| +2026-04-22 09:08:16.0885|DEBUG|OnDoc| +2026-04-22 09:08:16.0885|DEBUG|OnDoc| +2026-04-22 09:08:16.0885|DEBUG|OnDoc| +2026-04-22 09:08:16.0885|DEBUG|OnDoc| +2026-04-22 09:08:16.0885|DEBUG|OnDoc| +2026-04-22 09:08:16.0885|DEBUG|OnDoc| +2026-04-22 09:08:16.0885|DEBUG|OnDoc| +2026-04-22 09:08:16.0999|DEBUG|OnDoc|Generate_Word +2026-04-22 09:08:16.0999|DEBUG|OnDoc|Word2013 +2026-04-22 09:08:16.0999|DEBUG|OnDoc|Word2013 +2026-04-22 09:08:16.3880|DEBUG|OnDoc|Generate_Word +2026-04-22 09:08:16.3990|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023620 +2026-04-22 09:08:16.3990|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:08:16.3990|INFO|APIDocLog|Dok erstellt +2026-04-22 09:08:16.3990|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:08:16.3990|DEBUG|OnDoc| +2026-04-22 09:08:16.3990|DEBUG|OnDoc| +2026-04-22 09:08:16.3990|DEBUG|OnDoc| +2026-04-22 09:08:16.4290|DEBUG|OnDoc| +2026-04-22 09:08:16.4290|DEBUG|OnDoc| +2026-04-22 09:08:16.4290|DEBUG|OnDoc| +2026-04-22 09:08:16.4290|DEBUG|OnDoc| +2026-04-22 09:08:16.4290|DEBUG|OnDoc| +2026-04-22 09:08:16.4290|DEBUG|OnDoc| +2026-04-22 09:08:16.4290|DEBUG|OnDoc| +2026-04-22 09:08:16.4290|DEBUG|OnDoc| +2026-04-22 09:08:16.4622|DEBUG|OnDoc| +2026-04-22 09:08:16.5372|DEBUG|OnDoc| +2026-04-22 09:08:16.5372|DEBUG|OnDoc| +2026-04-22 09:08:19.0147|DEBUG|OnDoc| +2026-04-22 09:08:19.0247|DEBUG|OnDoc| +2026-04-22 09:27:41.0917|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:27:41.1643|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:27:41.1895|INFO|APIDocLog|Input Json +2026-04-22 09:27:41.1935|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:27:41.1935|DEBUG|OnDoc| +2026-04-22 09:27:41.1935|DEBUG|OnDoc| +2026-04-22 09:27:41.1935|DEBUG|OnDoc| +2026-04-22 09:27:41.1935|DEBUG|OnDoc| +2026-04-22 09:27:41.1935|DEBUG|OnDoc| +2026-04-22 09:27:41.1935|DEBUG|OnDoc| +2026-04-22 09:27:41.1935|DEBUG|OnDoc| +2026-04-22 09:27:41.1935|DEBUG|OnDoc| +2026-04-22 09:27:41.1935|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2091|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2244|DEBUG|OnDoc| +2026-04-22 09:27:41.2399|DEBUG|OnDoc| +2026-04-22 09:27:41.2399|DEBUG|OnDoc| +2026-04-22 09:27:41.2601|DEBUG|OnDoc| +2026-04-22 09:27:41.2601|DEBUG|OnDoc| +2026-04-22 09:27:41.2827|DEBUG|OnDoc| +2026-04-22 09:27:41.2827|DEBUG|OnDoc| +2026-04-22 09:27:41.2827|DEBUG|OnDoc| +2026-04-22 09:27:41.2827|DEBUG|OnDoc| +2026-04-22 09:27:41.2977|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:27:41.2977|DEBUG|OnDoc| +2026-04-22 09:27:41.3083|DEBUG|OnDoc| +2026-04-22 09:27:41.3083|DEBUG|OnDoc| +2026-04-22 09:27:41.3083|DEBUG|OnDoc| +2026-04-22 09:27:41.3083|DEBUG|OnDoc| +2026-04-22 09:27:41.3203|DEBUG|OnDoc| +2026-04-22 09:27:41.3203|DEBUG|OnDoc| +2026-04-22 09:27:41.3203|DEBUG|OnDoc| +2026-04-22 09:27:41.3203|DEBUG|OnDoc|Generate_Word +2026-04-22 09:27:41.3405|DEBUG|OnDoc|Word2013 +2026-04-22 09:27:41.3405|DEBUG|OnDoc|Word2013 +2026-04-22 09:27:41.7376|DEBUG|OnDoc|Generate_Word +2026-04-22 09:27:41.7522|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023631 +2026-04-22 09:27:41.7522|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:27:41.7562|INFO|APIDocLog|Dok erstellt +2026-04-22 09:27:41.7562|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:27:41.7562|DEBUG|OnDoc| +2026-04-22 09:27:41.7562|DEBUG|OnDoc| +2026-04-22 09:27:41.7712|DEBUG|OnDoc| +2026-04-22 09:27:41.8065|DEBUG|OnDoc| +2026-04-22 09:27:41.8065|DEBUG|OnDoc| +2026-04-22 09:27:41.8065|DEBUG|OnDoc| +2026-04-22 09:27:41.8065|DEBUG|OnDoc| +2026-04-22 09:27:41.8065|DEBUG|OnDoc| +2026-04-22 09:27:41.8065|DEBUG|OnDoc| +2026-04-22 09:27:41.8180|DEBUG|OnDoc| +2026-04-22 09:27:41.8180|DEBUG|OnDoc| +2026-04-22 09:27:41.8481|DEBUG|OnDoc| +2026-04-22 09:27:41.9855|DEBUG|OnDoc| +2026-04-22 09:27:41.9990|DEBUG|OnDoc| +2026-04-22 09:28:44.0946|DEBUG|OnDoc| +2026-04-22 09:28:44.1314|DEBUG|OnDoc| +2026-04-22 09:29:54.2903|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:29:54.3628|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:29:54.3889|INFO|APIDocLog|Input Json +2026-04-22 09:29:54.3889|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:29:54.3889|DEBUG|OnDoc| +2026-04-22 09:29:54.3889|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.3969|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4119|DEBUG|OnDoc| +2026-04-22 09:29:54.4319|DEBUG|OnDoc| +2026-04-22 09:29:54.4319|DEBUG|OnDoc| +2026-04-22 09:29:54.4542|DEBUG|OnDoc| +2026-04-22 09:29:54.4542|DEBUG|OnDoc| +2026-04-22 09:29:54.4542|DEBUG|OnDoc| +2026-04-22 09:29:54.4542|DEBUG|OnDoc| +2026-04-22 09:29:54.4723|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:29:54.4778|DEBUG|OnDoc| +2026-04-22 09:29:54.4918|DEBUG|OnDoc| +2026-04-22 09:29:54.4918|DEBUG|OnDoc| +2026-04-22 09:29:54.4918|DEBUG|OnDoc| +2026-04-22 09:29:54.4918|DEBUG|OnDoc| +2026-04-22 09:29:54.5073|DEBUG|OnDoc| +2026-04-22 09:29:54.5073|DEBUG|OnDoc| +2026-04-22 09:29:54.5073|DEBUG|OnDoc| +2026-04-22 09:29:54.5073|DEBUG|OnDoc|Generate_Word +2026-04-22 09:29:54.5337|DEBUG|OnDoc|Word2013 +2026-04-22 09:29:54.5337|DEBUG|OnDoc|Word2013 +2026-04-22 09:29:54.9196|DEBUG|OnDoc|Generate_Word +2026-04-22 09:29:54.9336|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023646 +2026-04-22 09:29:54.9336|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:29:54.9336|INFO|APIDocLog|Dok erstellt +2026-04-22 09:29:54.9336|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:29:54.9336|DEBUG|OnDoc| +2026-04-22 09:29:54.9467|DEBUG|OnDoc| +2026-04-22 09:29:54.9467|DEBUG|OnDoc| +2026-04-22 09:29:54.9817|DEBUG|OnDoc| +2026-04-22 09:29:54.9817|DEBUG|OnDoc| +2026-04-22 09:29:54.9907|DEBUG|OnDoc| +2026-04-22 09:29:54.9907|DEBUG|OnDoc| +2026-04-22 09:29:54.9907|DEBUG|OnDoc| +2026-04-22 09:29:54.9907|DEBUG|OnDoc| +2026-04-22 09:29:54.9907|DEBUG|OnDoc| +2026-04-22 09:29:54.9907|DEBUG|OnDoc| +2026-04-22 09:29:55.0245|DEBUG|OnDoc| +2026-04-22 09:29:55.1058|DEBUG|OnDoc| +2026-04-22 09:29:55.1170|DEBUG|OnDoc| +2026-04-22 09:30:26.5483|DEBUG|OnDoc| +2026-04-22 09:30:26.5844|DEBUG|OnDoc| +2026-04-22 09:31:30.5881|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:31:30.6517|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:31:30.6802|INFO|APIDocLog|Input Json +2026-04-22 09:31:30.6802|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6802|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.6945|DEBUG|OnDoc| +2026-04-22 09:31:30.7154|DEBUG|OnDoc| +2026-04-22 09:31:30.7154|DEBUG|OnDoc| +2026-04-22 09:31:30.7270|DEBUG|OnDoc| +2026-04-22 09:31:30.7270|DEBUG|OnDoc| +2026-04-22 09:31:30.7270|DEBUG|OnDoc| +2026-04-22 09:31:30.7270|DEBUG|OnDoc| +2026-04-22 09:31:30.7420|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:31:30.7420|DEBUG|OnDoc| +2026-04-22 09:31:30.7420|DEBUG|OnDoc| +2026-04-22 09:31:30.7420|DEBUG|OnDoc| +2026-04-22 09:31:30.7420|DEBUG|OnDoc| +2026-04-22 09:31:30.7420|DEBUG|OnDoc| +2026-04-22 09:31:30.7420|DEBUG|OnDoc| +2026-04-22 09:31:30.7563|DEBUG|OnDoc| +2026-04-22 09:31:30.7563|DEBUG|OnDoc| +2026-04-22 09:31:30.7563|DEBUG|OnDoc|Generate_Word +2026-04-22 09:31:30.7718|DEBUG|OnDoc|Word2013 +2026-04-22 09:31:30.7718|DEBUG|OnDoc|Word2013 +2026-04-22 09:31:31.1766|DEBUG|OnDoc|Generate_Word +2026-04-22 09:31:31.1880|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023654 +2026-04-22 09:31:31.1880|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:31:31.1880|INFO|APIDocLog|Dok erstellt +2026-04-22 09:31:31.1880|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:31:31.1880|DEBUG|OnDoc| +2026-04-22 09:31:31.1940|DEBUG|OnDoc| +2026-04-22 09:31:31.1940|DEBUG|OnDoc| +2026-04-22 09:31:31.2226|DEBUG|OnDoc| +2026-04-22 09:31:31.2245|DEBUG|OnDoc| +2026-04-22 09:31:31.2245|DEBUG|OnDoc| +2026-04-22 09:31:31.2245|DEBUG|OnDoc| +2026-04-22 09:31:31.2245|DEBUG|OnDoc| +2026-04-22 09:31:31.2245|DEBUG|OnDoc| +2026-04-22 09:31:31.2245|DEBUG|OnDoc| +2026-04-22 09:31:31.2245|DEBUG|OnDoc| +2026-04-22 09:31:31.2632|DEBUG|OnDoc| +2026-04-22 09:31:31.3416|DEBUG|OnDoc| +2026-04-22 09:31:31.3509|DEBUG|OnDoc| +2026-04-22 09:31:36.1593|DEBUG|OnDoc| +2026-04-22 09:31:36.1698|DEBUG|OnDoc| +2026-04-22 09:32:16.3752|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:32:16.4468|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:32:16.4742|INFO|APIDocLog|Input Json +2026-04-22 09:32:16.4742|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4742|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.4901|DEBUG|OnDoc| +2026-04-22 09:32:16.5136|DEBUG|OnDoc| +2026-04-22 09:32:16.5136|DEBUG|OnDoc| +2026-04-22 09:32:16.5256|DEBUG|OnDoc| +2026-04-22 09:32:16.5256|DEBUG|OnDoc| +2026-04-22 09:32:16.5256|DEBUG|OnDoc| +2026-04-22 09:32:16.5256|DEBUG|OnDoc| +2026-04-22 09:32:16.5455|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:32:16.5455|DEBUG|OnDoc| +2026-04-22 09:32:16.5545|DEBUG|OnDoc| +2026-04-22 09:32:16.5545|DEBUG|OnDoc| +2026-04-22 09:32:16.5545|DEBUG|OnDoc| +2026-04-22 09:32:16.5545|DEBUG|OnDoc| +2026-04-22 09:32:16.5545|DEBUG|OnDoc| +2026-04-22 09:32:16.5545|DEBUG|OnDoc| +2026-04-22 09:32:16.5545|DEBUG|OnDoc| +2026-04-22 09:32:16.5685|DEBUG|OnDoc|Generate_Word +2026-04-22 09:32:16.5685|DEBUG|OnDoc|Word2013 +2026-04-22 09:32:16.5685|DEBUG|OnDoc|Word2013 +2026-04-22 09:32:17.0702|DEBUG|OnDoc|Generate_Word +2026-04-22 09:32:17.0702|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023662 +2026-04-22 09:32:17.0837|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:32:17.0837|INFO|APIDocLog|Dok erstellt +2026-04-22 09:32:17.0837|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:32:17.0837|DEBUG|OnDoc| +2026-04-22 09:32:17.0837|DEBUG|OnDoc| +2026-04-22 09:32:17.0837|DEBUG|OnDoc| +2026-04-22 09:32:17.1158|DEBUG|OnDoc| +2026-04-22 09:32:17.1158|DEBUG|OnDoc| +2026-04-22 09:32:17.1158|DEBUG|OnDoc| +2026-04-22 09:32:17.1158|DEBUG|OnDoc| +2026-04-22 09:32:17.1158|DEBUG|OnDoc| +2026-04-22 09:32:17.1158|DEBUG|OnDoc| +2026-04-22 09:32:17.1158|DEBUG|OnDoc| +2026-04-22 09:32:17.1158|DEBUG|OnDoc| +2026-04-22 09:32:17.1509|DEBUG|OnDoc| +2026-04-22 09:32:17.2254|DEBUG|OnDoc| +2026-04-22 09:32:17.2254|DEBUG|OnDoc| +2026-04-22 09:32:27.7936|DEBUG|OnDoc| +2026-04-22 09:32:27.8306|DEBUG|OnDoc| +2026-04-22 09:35:39.5981|DEBUG|OnDoc| +2026-04-22 09:35:39.6988|DEBUG|OnDoc| +2026-04-22 09:35:39.6988|DEBUG|OnDoc| +2026-04-22 09:35:39.6988|DEBUG|OnDoc| +2026-04-22 09:35:40.7648|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:35:40.9804|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:35:41.0896|INFO|APIDocLog|Input Json +2026-04-22 09:35:41.1041|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1041|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1152|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1355|DEBUG|OnDoc| +2026-04-22 09:35:41.1812|DEBUG|OnDoc| +2026-04-22 09:35:41.1812|DEBUG|OnDoc| +2026-04-22 09:35:41.2129|DEBUG|OnDoc| +2026-04-22 09:35:41.2129|DEBUG|OnDoc| +2026-04-22 09:35:41.2129|DEBUG|OnDoc| +2026-04-22 09:35:41.2129|DEBUG|OnDoc| +2026-04-22 09:35:41.2345|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:35:41.2345|DEBUG|OnDoc| +2026-04-22 09:35:41.2460|DEBUG|OnDoc| +2026-04-22 09:35:41.2460|DEBUG|OnDoc| +2026-04-22 09:35:41.2460|DEBUG|OnDoc| +2026-04-22 09:35:41.2460|DEBUG|OnDoc| +2026-04-22 09:35:41.2460|DEBUG|OnDoc| +2026-04-22 09:35:41.2562|DEBUG|OnDoc| +2026-04-22 09:35:41.2562|DEBUG|OnDoc| +2026-04-22 09:35:41.2562|DEBUG|OnDoc|Generate_Word +2026-04-22 09:35:41.7238|DEBUG|OnDoc|Word2013 +2026-04-22 09:35:41.7328|DEBUG|OnDoc|Word2013 +2026-04-22 09:35:42.7856|DEBUG|OnDoc|Generate_Word +2026-04-22 09:35:42.8289|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023678 +2026-04-22 09:35:42.8289|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:35:42.8289|INFO|APIDocLog|Dok erstellt +2026-04-22 09:35:42.8349|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:35:42.8349|DEBUG|OnDoc| +2026-04-22 09:35:42.8349|DEBUG|OnDoc| +2026-04-22 09:35:42.8349|DEBUG|OnDoc| +2026-04-22 09:35:42.8776|DEBUG|OnDoc| +2026-04-22 09:35:42.8817|DEBUG|OnDoc| +2026-04-22 09:35:42.8817|DEBUG|OnDoc| +2026-04-22 09:35:42.8817|DEBUG|OnDoc| +2026-04-22 09:35:42.8817|DEBUG|OnDoc| +2026-04-22 09:35:42.8817|DEBUG|OnDoc| +2026-04-22 09:35:42.8817|DEBUG|OnDoc| +2026-04-22 09:35:42.8817|DEBUG|OnDoc| +2026-04-22 09:35:42.9236|DEBUG|OnDoc| +2026-04-22 09:35:43.3078|DEBUG|OnDoc| +2026-04-22 09:35:43.3188|DEBUG|OnDoc| +2026-04-22 09:35:43.5828|DEBUG|OnDoc| +2026-04-22 09:35:43.5924|DEBUG|OnDoc| +2026-04-22 09:37:42.3101|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:37:42.3672|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:37:42.3887|INFO|APIDocLog|Input Json +2026-04-22 09:37:42.3887|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:37:42.3887|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.3969|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4120|DEBUG|OnDoc| +2026-04-22 09:37:42.4281|DEBUG|OnDoc| +2026-04-22 09:37:42.4433|DEBUG|OnDoc| +2026-04-22 09:37:42.4433|DEBUG|OnDoc| +2026-04-22 09:37:42.4603|DEBUG|OnDoc| +2026-04-22 09:37:42.4603|DEBUG|OnDoc| +2026-04-22 09:37:42.4603|DEBUG|OnDoc| +2026-04-22 09:37:42.4603|DEBUG|OnDoc| +2026-04-22 09:37:42.4767|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:37:42.4767|DEBUG|OnDoc| +2026-04-22 09:37:42.4767|DEBUG|OnDoc| +2026-04-22 09:37:42.4767|DEBUG|OnDoc| +2026-04-22 09:37:42.4905|DEBUG|OnDoc| +2026-04-22 09:37:42.4905|DEBUG|OnDoc| +2026-04-22 09:37:42.4905|DEBUG|OnDoc| +2026-04-22 09:37:42.4905|DEBUG|OnDoc| +2026-04-22 09:37:42.4905|DEBUG|OnDoc| +2026-04-22 09:37:42.5059|DEBUG|OnDoc|Generate_Word +2026-04-22 09:37:42.5059|DEBUG|OnDoc|Word2013 +2026-04-22 09:37:42.5214|DEBUG|OnDoc|Word2013 +2026-04-22 09:37:42.8210|DEBUG|OnDoc|Generate_Word +2026-04-22 09:37:42.8210|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023683 +2026-04-22 09:37:42.8337|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:37:42.8337|INFO|APIDocLog|Dok erstellt +2026-04-22 09:37:42.8337|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:37:42.8337|DEBUG|OnDoc| +2026-04-22 09:37:42.8337|DEBUG|OnDoc| +2026-04-22 09:37:42.8337|DEBUG|OnDoc| +2026-04-22 09:37:42.8708|DEBUG|OnDoc| +2026-04-22 09:37:42.8708|DEBUG|OnDoc| +2026-04-22 09:37:42.8708|DEBUG|OnDoc| +2026-04-22 09:37:42.8708|DEBUG|OnDoc| +2026-04-22 09:37:42.8708|DEBUG|OnDoc| +2026-04-22 09:37:42.8708|DEBUG|OnDoc| +2026-04-22 09:37:42.8708|DEBUG|OnDoc| +2026-04-22 09:37:42.8708|DEBUG|OnDoc| +2026-04-22 09:37:42.9105|DEBUG|OnDoc| +2026-04-22 09:37:42.9785|DEBUG|OnDoc| +2026-04-22 09:37:42.9785|DEBUG|OnDoc| +2026-04-22 09:37:43.0953|DEBUG|OnDoc| +2026-04-22 09:37:43.1073|DEBUG|OnDoc| +2026-04-22 09:38:03.9150|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:38:03.9751|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:38:03.9981|INFO|APIDocLog|Input Json +2026-04-22 09:38:03.9981|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:03.9981|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0061|DEBUG|OnDoc| +2026-04-22 09:38:04.0292|DEBUG|OnDoc| +2026-04-22 09:38:04.0292|DEBUG|OnDoc| +2026-04-22 09:38:04.0392|DEBUG|OnDoc| +2026-04-22 09:38:04.0392|DEBUG|OnDoc| +2026-04-22 09:38:04.0392|DEBUG|OnDoc| +2026-04-22 09:38:04.0392|DEBUG|OnDoc| +2026-04-22 09:38:04.0547|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:38:04.0547|DEBUG|OnDoc| +2026-04-22 09:38:04.0547|DEBUG|OnDoc| +2026-04-22 09:38:04.0547|DEBUG|OnDoc| +2026-04-22 09:38:04.0547|DEBUG|OnDoc| +2026-04-22 09:38:04.0547|DEBUG|OnDoc| +2026-04-22 09:38:04.0547|DEBUG|OnDoc| +2026-04-22 09:38:04.0697|DEBUG|OnDoc| +2026-04-22 09:38:04.0697|DEBUG|OnDoc| +2026-04-22 09:38:04.0697|DEBUG|OnDoc|Generate_Word +2026-04-22 09:38:04.0697|DEBUG|OnDoc|Word2013 +2026-04-22 09:38:04.0852|DEBUG|OnDoc|Word2013 +2026-04-22 09:38:04.3681|DEBUG|OnDoc|Generate_Word +2026-04-22 09:38:04.3681|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023699 +2026-04-22 09:38:04.3681|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:38:04.3806|INFO|APIDocLog|Dok erstellt +2026-04-22 09:38:04.3806|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:38:04.3806|DEBUG|OnDoc| +2026-04-22 09:38:04.3806|DEBUG|OnDoc| +2026-04-22 09:38:04.3806|DEBUG|OnDoc| +2026-04-22 09:38:04.4132|DEBUG|OnDoc| +2026-04-22 09:38:04.4132|DEBUG|OnDoc| +2026-04-22 09:38:04.4132|DEBUG|OnDoc| +2026-04-22 09:38:04.4132|DEBUG|OnDoc| +2026-04-22 09:38:04.4132|DEBUG|OnDoc| +2026-04-22 09:38:04.4132|DEBUG|OnDoc| +2026-04-22 09:38:04.4132|DEBUG|OnDoc| +2026-04-22 09:38:04.4132|DEBUG|OnDoc| +2026-04-22 09:38:04.4464|DEBUG|OnDoc| +2026-04-22 09:38:04.5066|DEBUG|OnDoc| +2026-04-22 09:38:04.5066|DEBUG|OnDoc| +2026-04-22 09:38:15.7187|DEBUG|OnDoc| +2026-04-22 09:38:15.7548|DEBUG|OnDoc| +2026-04-22 09:39:09.4140|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:39:09.4848|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:39:09.5077|INFO|APIDocLog|Input Json +2026-04-22 09:39:09.5077|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5077|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5212|DEBUG|OnDoc| +2026-04-22 09:39:09.5486|DEBUG|OnDoc| +2026-04-22 09:39:09.5486|DEBUG|OnDoc| +2026-04-22 09:39:09.5596|DEBUG|OnDoc| +2026-04-22 09:39:09.5596|DEBUG|OnDoc| +2026-04-22 09:39:09.5596|DEBUG|OnDoc| +2026-04-22 09:39:09.5596|DEBUG|OnDoc| +2026-04-22 09:39:09.5760|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:39:09.5760|DEBUG|OnDoc| +2026-04-22 09:39:09.5760|DEBUG|OnDoc| +2026-04-22 09:39:09.5760|DEBUG|OnDoc| +2026-04-22 09:39:09.5840|DEBUG|OnDoc| +2026-04-22 09:39:09.5840|DEBUG|OnDoc| +2026-04-22 09:39:09.5840|DEBUG|OnDoc| +2026-04-22 09:39:09.5840|DEBUG|OnDoc| +2026-04-22 09:39:09.5840|DEBUG|OnDoc| +2026-04-22 09:39:09.5840|DEBUG|OnDoc|Generate_Word +2026-04-22 09:39:09.6087|DEBUG|OnDoc|Word2013 +2026-04-22 09:39:09.6087|DEBUG|OnDoc|Word2013 +2026-04-22 09:39:09.9197|DEBUG|OnDoc|Generate_Word +2026-04-22 09:39:09.9308|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023706 +2026-04-22 09:39:09.9308|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:39:09.9308|INFO|APIDocLog|Dok erstellt +2026-04-22 09:39:09.9308|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:39:09.9308|DEBUG|OnDoc| +2026-04-22 09:39:09.9308|DEBUG|OnDoc| +2026-04-22 09:39:09.9308|DEBUG|OnDoc| +2026-04-22 09:39:09.9661|DEBUG|OnDoc| +2026-04-22 09:39:09.9661|DEBUG|OnDoc| +2026-04-22 09:39:09.9661|DEBUG|OnDoc| +2026-04-22 09:39:09.9661|DEBUG|OnDoc| +2026-04-22 09:39:09.9661|DEBUG|OnDoc| +2026-04-22 09:39:09.9746|DEBUG|OnDoc| +2026-04-22 09:39:09.9746|DEBUG|OnDoc| +2026-04-22 09:39:09.9746|DEBUG|OnDoc| +2026-04-22 09:39:10.0028|DEBUG|OnDoc| +2026-04-22 09:39:10.0600|DEBUG|OnDoc| +2026-04-22 09:39:10.0600|DEBUG|OnDoc| +2026-04-22 09:39:14.2663|DEBUG|OnDoc| +2026-04-22 09:39:14.3019|DEBUG|OnDoc| +2026-04-22 09:41:02.3128|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:41:02.3719|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:41:02.3957|INFO|APIDocLog|Input Json +2026-04-22 09:41:02.3997|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.3997|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4118|DEBUG|OnDoc| +2026-04-22 09:41:02.4405|DEBUG|OnDoc| +2026-04-22 09:41:02.4435|DEBUG|OnDoc| +2026-04-22 09:41:02.4435|DEBUG|OnDoc| +2026-04-22 09:41:02.4435|DEBUG|OnDoc| +2026-04-22 09:41:02.4435|DEBUG|OnDoc| +2026-04-22 09:41:02.4435|DEBUG|OnDoc| +2026-04-22 09:41:02.4744|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:41:02.4744|DEBUG|OnDoc| +2026-04-22 09:41:02.4744|DEBUG|OnDoc| +2026-04-22 09:41:02.4744|DEBUG|OnDoc| +2026-04-22 09:41:02.4902|DEBUG|OnDoc| +2026-04-22 09:41:02.4902|DEBUG|OnDoc| +2026-04-22 09:41:02.4902|DEBUG|OnDoc| +2026-04-22 09:41:02.4902|DEBUG|OnDoc| +2026-04-22 09:41:02.4902|DEBUG|OnDoc| +2026-04-22 09:41:02.4902|DEBUG|OnDoc|Generate_Word +2026-04-22 09:41:02.5142|DEBUG|OnDoc|Word2013 +2026-04-22 09:41:02.5142|DEBUG|OnDoc|Word2013 +2026-04-22 09:41:02.8437|DEBUG|OnDoc|Generate_Word +2026-04-22 09:41:02.8565|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023714 +2026-04-22 09:41:02.8565|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:41:02.8565|INFO|APIDocLog|Dok erstellt +2026-04-22 09:41:02.8565|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:41:02.8650|DEBUG|OnDoc| +2026-04-22 09:41:02.8650|DEBUG|OnDoc| +2026-04-22 09:41:02.8650|DEBUG|OnDoc| +2026-04-22 09:41:02.8957|DEBUG|OnDoc| +2026-04-22 09:41:02.8987|DEBUG|OnDoc| +2026-04-22 09:41:02.8987|DEBUG|OnDoc| +2026-04-22 09:41:02.8987|DEBUG|OnDoc| +2026-04-22 09:41:02.8987|DEBUG|OnDoc| +2026-04-22 09:41:02.8987|DEBUG|OnDoc| +2026-04-22 09:41:02.9125|DEBUG|OnDoc| +2026-04-22 09:41:02.9125|DEBUG|OnDoc| +2026-04-22 09:41:02.9441|DEBUG|OnDoc| +2026-04-22 09:41:03.0061|DEBUG|OnDoc| +2026-04-22 09:41:03.0061|DEBUG|OnDoc| +2026-04-22 09:41:06.9738|DEBUG|OnDoc| +2026-04-22 09:41:07.0088|DEBUG|OnDoc| +2026-04-22 09:41:37.3585|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:41:37.4228|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:41:37.4484|INFO|APIDocLog|Input Json +2026-04-22 09:41:37.4484|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:41:37.4484|DEBUG|OnDoc| +2026-04-22 09:41:37.4484|DEBUG|OnDoc| +2026-04-22 09:41:37.4484|DEBUG|OnDoc| +2026-04-22 09:41:37.4587|DEBUG|OnDoc| +2026-04-22 09:41:37.4587|DEBUG|OnDoc| +2026-04-22 09:41:37.4587|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4747|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.4907|DEBUG|OnDoc| +2026-04-22 09:41:37.5133|DEBUG|OnDoc| +2026-04-22 09:41:37.5133|DEBUG|OnDoc| +2026-04-22 09:41:37.5279|DEBUG|OnDoc| +2026-04-22 09:41:37.5279|DEBUG|OnDoc| +2026-04-22 09:41:37.5279|DEBUG|OnDoc| +2026-04-22 09:41:37.5279|DEBUG|OnDoc| +2026-04-22 09:41:37.5450|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:41:37.5450|DEBUG|OnDoc| +2026-04-22 09:41:37.5535|DEBUG|OnDoc| +2026-04-22 09:41:37.5535|DEBUG|OnDoc| +2026-04-22 09:41:37.5535|DEBUG|OnDoc| +2026-04-22 09:41:37.5535|DEBUG|OnDoc| +2026-04-22 09:41:37.5535|DEBUG|OnDoc| +2026-04-22 09:41:37.5535|DEBUG|OnDoc| +2026-04-22 09:41:37.5688|DEBUG|OnDoc| +2026-04-22 09:41:37.5688|DEBUG|OnDoc|Generate_Word +2026-04-22 09:41:37.5688|DEBUG|OnDoc|Word2013 +2026-04-22 09:41:37.5688|DEBUG|OnDoc|Word2013 +2026-04-22 09:41:37.8955|DEBUG|OnDoc|Generate_Word +2026-04-22 09:41:37.9076|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023722 +2026-04-22 09:41:37.9076|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:41:37.9076|INFO|APIDocLog|Dok erstellt +2026-04-22 09:41:37.9076|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:41:37.9123|DEBUG|OnDoc| +2026-04-22 09:41:37.9123|DEBUG|OnDoc| +2026-04-22 09:41:37.9123|DEBUG|OnDoc| +2026-04-22 09:41:37.9436|DEBUG|OnDoc| +2026-04-22 09:41:37.9436|DEBUG|OnDoc| +2026-04-22 09:41:37.9436|DEBUG|OnDoc| +2026-04-22 09:41:37.9436|DEBUG|OnDoc| +2026-04-22 09:41:37.9436|DEBUG|OnDoc| +2026-04-22 09:41:37.9436|DEBUG|OnDoc| +2026-04-22 09:41:37.9436|DEBUG|OnDoc| +2026-04-22 09:41:37.9436|DEBUG|OnDoc| +2026-04-22 09:41:37.9827|DEBUG|OnDoc| +2026-04-22 09:41:38.0319|DEBUG|OnDoc| +2026-04-22 09:41:38.0319|DEBUG|OnDoc| +2026-04-22 09:41:41.9390|DEBUG|OnDoc| +2026-04-22 09:41:41.9757|DEBUG|OnDoc| +2026-04-22 09:54:17.0115|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:54:17.0864|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:54:17.1142|INFO|APIDocLog|Input Json +2026-04-22 09:54:17.1202|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:54:17.1202|DEBUG|OnDoc| +2026-04-22 09:54:17.1202|DEBUG|OnDoc| +2026-04-22 09:54:17.1202|DEBUG|OnDoc| +2026-04-22 09:54:17.1202|DEBUG|OnDoc| +2026-04-22 09:54:17.1202|DEBUG|OnDoc| +2026-04-22 09:54:17.1202|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1311|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1467|DEBUG|OnDoc| +2026-04-22 09:54:17.1715|DEBUG|OnDoc| +2026-04-22 09:54:17.1715|DEBUG|OnDoc| +2026-04-22 09:54:17.1830|DEBUG|OnDoc| +2026-04-22 09:54:17.1830|DEBUG|OnDoc| +2026-04-22 09:54:17.1830|DEBUG|OnDoc| +2026-04-22 09:54:17.1830|DEBUG|OnDoc| +2026-04-22 09:54:17.2019|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:54:17.2019|DEBUG|OnDoc| +2026-04-22 09:54:17.2089|DEBUG|OnDoc| +2026-04-22 09:54:17.2089|DEBUG|OnDoc| +2026-04-22 09:54:17.2089|DEBUG|OnDoc| +2026-04-22 09:54:17.2089|DEBUG|OnDoc| +2026-04-22 09:54:17.2089|DEBUG|OnDoc| +2026-04-22 09:54:17.2089|DEBUG|OnDoc| +2026-04-22 09:54:17.2089|DEBUG|OnDoc| +2026-04-22 09:54:17.2089|DEBUG|OnDoc|Generate_Word +2026-04-22 09:54:17.2297|DEBUG|OnDoc|Word2013 +2026-04-22 09:54:17.2297|DEBUG|OnDoc|Word2013 +2026-04-22 09:54:17.5592|DEBUG|OnDoc|Generate_Word +2026-04-22 09:54:17.5702|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023738 +2026-04-22 09:54:17.5702|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:54:17.5702|INFO|APIDocLog|Dok erstellt +2026-04-22 09:54:17.5702|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:54:17.5702|DEBUG|OnDoc| +2026-04-22 09:54:17.5702|DEBUG|OnDoc| +2026-04-22 09:54:17.5702|DEBUG|OnDoc| +2026-04-22 09:54:17.6044|DEBUG|OnDoc| +2026-04-22 09:54:17.6044|DEBUG|OnDoc| +2026-04-22 09:54:17.6044|DEBUG|OnDoc| +2026-04-22 09:54:17.6044|DEBUG|OnDoc| +2026-04-22 09:54:17.6044|DEBUG|OnDoc| +2026-04-22 09:54:17.6044|DEBUG|OnDoc| +2026-04-22 09:54:17.6044|DEBUG|OnDoc| +2026-04-22 09:54:17.6044|DEBUG|OnDoc| +2026-04-22 09:54:17.6390|DEBUG|OnDoc| +2026-04-22 09:54:17.6934|DEBUG|OnDoc| +2026-04-22 09:54:17.6934|DEBUG|OnDoc| +2026-04-22 09:54:22.1195|DEBUG|OnDoc| +2026-04-22 09:54:22.1195|DEBUG|OnDoc| +2026-04-22 09:54:49.9741|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:54:50.0423|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:54:50.0696|INFO|APIDocLog|Input Json +2026-04-22 09:54:50.0696|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:54:50.0696|DEBUG|OnDoc| +2026-04-22 09:54:50.0696|DEBUG|OnDoc| +2026-04-22 09:54:50.0696|DEBUG|OnDoc| +2026-04-22 09:54:50.0696|DEBUG|OnDoc| +2026-04-22 09:54:50.0696|DEBUG|OnDoc| +2026-04-22 09:54:50.0696|DEBUG|OnDoc| +2026-04-22 09:54:50.0696|DEBUG|OnDoc| +2026-04-22 09:54:50.0696|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0837|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.0998|DEBUG|OnDoc| +2026-04-22 09:54:50.1244|DEBUG|OnDoc| +2026-04-22 09:54:50.1244|DEBUG|OnDoc| +2026-04-22 09:54:50.1488|DEBUG|OnDoc| +2026-04-22 09:54:50.1488|DEBUG|OnDoc| +2026-04-22 09:54:50.1488|DEBUG|OnDoc| +2026-04-22 09:54:50.1488|DEBUG|OnDoc| +2026-04-22 09:54:50.1738|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:54:50.1792|DEBUG|OnDoc| +2026-04-22 09:54:50.1792|DEBUG|OnDoc| +2026-04-22 09:54:50.1940|DEBUG|OnDoc| +2026-04-22 09:54:50.1940|DEBUG|OnDoc| +2026-04-22 09:54:50.1940|DEBUG|OnDoc| +2026-04-22 09:54:50.1940|DEBUG|OnDoc| +2026-04-22 09:54:50.1940|DEBUG|OnDoc| +2026-04-22 09:54:50.2140|DEBUG|OnDoc| +2026-04-22 09:54:50.2140|DEBUG|OnDoc|Generate_Word +2026-04-22 09:54:50.2140|DEBUG|OnDoc|Word2013 +2026-04-22 09:54:50.2253|DEBUG|OnDoc|Word2013 +2026-04-22 09:54:50.6497|DEBUG|OnDoc|Generate_Word +2026-04-22 09:54:50.6628|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023743 +2026-04-22 09:54:50.6628|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:54:50.6628|INFO|APIDocLog|Dok erstellt +2026-04-22 09:54:50.6628|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:54:50.6628|DEBUG|OnDoc| +2026-04-22 09:54:50.6628|DEBUG|OnDoc| +2026-04-22 09:54:50.6776|DEBUG|OnDoc| +2026-04-22 09:54:50.7120|DEBUG|OnDoc| +2026-04-22 09:54:50.7120|DEBUG|OnDoc| +2026-04-22 09:54:50.7120|DEBUG|OnDoc| +2026-04-22 09:54:50.7120|DEBUG|OnDoc| +2026-04-22 09:54:50.7120|DEBUG|OnDoc| +2026-04-22 09:54:50.7120|DEBUG|OnDoc| +2026-04-22 09:54:50.7120|DEBUG|OnDoc| +2026-04-22 09:54:50.7120|DEBUG|OnDoc| +2026-04-22 09:54:50.7536|DEBUG|OnDoc| +2026-04-22 09:54:50.8179|DEBUG|OnDoc| +2026-04-22 09:54:50.8212|DEBUG|OnDoc| +2026-04-22 09:54:54.4470|DEBUG|OnDoc| +2026-04-22 09:54:54.4834|DEBUG|OnDoc| +2026-04-22 09:55:13.3664|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:55:13.4315|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:55:13.4579|INFO|APIDocLog|Input Json +2026-04-22 09:55:13.4609|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4609|DEBUG|OnDoc| +2026-04-22 09:55:13.4751|DEBUG|OnDoc| +2026-04-22 09:55:13.4751|DEBUG|OnDoc| +2026-04-22 09:55:13.4751|DEBUG|OnDoc| +2026-04-22 09:55:13.4751|DEBUG|OnDoc| +2026-04-22 09:55:13.4751|DEBUG|OnDoc| +2026-04-22 09:55:13.4911|DEBUG|OnDoc| +2026-04-22 09:55:13.4911|DEBUG|OnDoc| +2026-04-22 09:55:13.4911|DEBUG|OnDoc| +2026-04-22 09:55:13.4911|DEBUG|OnDoc| +2026-04-22 09:55:13.4911|DEBUG|OnDoc| +2026-04-22 09:55:13.4911|DEBUG|OnDoc| +2026-04-22 09:55:13.5179|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:55:13.5179|DEBUG|OnDoc| +2026-04-22 09:55:13.5244|DEBUG|OnDoc| +2026-04-22 09:55:13.5244|DEBUG|OnDoc| +2026-04-22 09:55:13.5244|DEBUG|OnDoc| +2026-04-22 09:55:13.5244|DEBUG|OnDoc| +2026-04-22 09:55:13.5244|DEBUG|OnDoc| +2026-04-22 09:55:13.5244|DEBUG|OnDoc| +2026-04-22 09:55:13.5244|DEBUG|OnDoc| +2026-04-22 09:55:13.5244|DEBUG|OnDoc|Generate_Word +2026-04-22 09:55:13.5447|DEBUG|OnDoc|Word2013 +2026-04-22 09:55:13.5447|DEBUG|OnDoc|Word2013 +2026-04-22 09:55:13.9008|DEBUG|OnDoc|Generate_Word +2026-04-22 09:55:13.9008|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023759 +2026-04-22 09:55:13.9008|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:55:13.9129|INFO|APIDocLog|Dok erstellt +2026-04-22 09:55:13.9129|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:55:13.9129|DEBUG|OnDoc| +2026-04-22 09:55:13.9129|DEBUG|OnDoc| +2026-04-22 09:55:13.9129|DEBUG|OnDoc| +2026-04-22 09:55:13.9440|DEBUG|OnDoc| +2026-04-22 09:55:13.9440|DEBUG|OnDoc| +2026-04-22 09:55:13.9440|DEBUG|OnDoc| +2026-04-22 09:55:13.9440|DEBUG|OnDoc| +2026-04-22 09:55:13.9440|DEBUG|OnDoc| +2026-04-22 09:55:13.9440|DEBUG|OnDoc| +2026-04-22 09:55:13.9440|DEBUG|OnDoc| +2026-04-22 09:55:13.9440|DEBUG|OnDoc| +2026-04-22 09:55:13.9830|DEBUG|OnDoc| +2026-04-22 09:55:14.0468|DEBUG|OnDoc| +2026-04-22 09:55:14.0524|DEBUG|OnDoc| +2026-04-22 09:55:17.3415|DEBUG|OnDoc| +2026-04-22 09:55:17.3770|DEBUG|OnDoc| +2026-04-22 09:55:36.9008|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 09:55:36.9890|INFO|APIDocLog|CreateDoks Start +2026-04-22 09:55:37.0467|INFO|APIDocLog|Input Json +2026-04-22 09:55:37.0467|DEBUG|OnDoc|Start GenDoc +2026-04-22 09:55:37.0467|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0533|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0686|DEBUG|OnDoc| +2026-04-22 09:55:37.0847|DEBUG|OnDoc| +2026-04-22 09:55:37.0847|DEBUG|OnDoc| +2026-04-22 09:55:37.0847|DEBUG|OnDoc| +2026-04-22 09:55:37.0847|DEBUG|OnDoc| +2026-04-22 09:55:37.0847|DEBUG|OnDoc| +2026-04-22 09:55:37.0847|DEBUG|OnDoc| +2026-04-22 09:55:37.0847|DEBUG|OnDoc| +2026-04-22 09:55:37.1318|DEBUG|OnDoc| +2026-04-22 09:55:37.1318|DEBUG|OnDoc| +2026-04-22 09:55:37.1561|DEBUG|OnDoc| +2026-04-22 09:55:37.1561|DEBUG|OnDoc| +2026-04-22 09:55:37.1561|DEBUG|OnDoc| +2026-04-22 09:55:37.1561|DEBUG|OnDoc| +2026-04-22 09:55:37.1870|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 09:55:37.1870|DEBUG|OnDoc| +2026-04-22 09:55:37.2050|DEBUG|OnDoc| +2026-04-22 09:55:37.2050|DEBUG|OnDoc| +2026-04-22 09:55:37.2095|DEBUG|OnDoc| +2026-04-22 09:55:37.2095|DEBUG|OnDoc| +2026-04-22 09:55:37.2095|DEBUG|OnDoc| +2026-04-22 09:55:37.2095|DEBUG|OnDoc| +2026-04-22 09:55:37.2343|DEBUG|OnDoc| +2026-04-22 09:55:37.2343|DEBUG|OnDoc|Generate_Word +2026-04-22 09:55:37.2549|DEBUG|OnDoc|Word2013 +2026-04-22 09:55:37.2579|DEBUG|OnDoc|Word2013 +2026-04-22 09:55:37.8137|DEBUG|OnDoc|Generate_Word +2026-04-22 09:55:37.8276|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023767 +2026-04-22 09:55:37.8276|INFO|DocLog|Dokument über API erstellt +2026-04-22 09:55:37.8276|INFO|APIDocLog|Dok erstellt +2026-04-22 09:55:37.8276|INFO|APIDocLog|Attachment angefügt +2026-04-22 09:55:37.8352|DEBUG|OnDoc| +2026-04-22 09:55:37.8352|DEBUG|OnDoc| +2026-04-22 09:55:37.8352|DEBUG|OnDoc| +2026-04-22 09:55:37.8797|DEBUG|OnDoc| +2026-04-22 09:55:37.8824|DEBUG|OnDoc| +2026-04-22 09:55:37.8824|DEBUG|OnDoc| +2026-04-22 09:55:37.8824|DEBUG|OnDoc| +2026-04-22 09:55:37.8824|DEBUG|OnDoc| +2026-04-22 09:55:37.8824|DEBUG|OnDoc| +2026-04-22 09:55:37.8824|DEBUG|OnDoc| +2026-04-22 09:55:37.8824|DEBUG|OnDoc| +2026-04-22 09:55:37.9265|DEBUG|OnDoc| +2026-04-22 09:55:38.0085|DEBUG|OnDoc| +2026-04-22 09:55:38.0085|DEBUG|OnDoc| +2026-04-22 09:55:41.5819|DEBUG|OnDoc| +2026-04-22 09:55:41.6191|DEBUG|OnDoc| +2026-04-22 11:42:53.6369|DEBUG|OnDoc| +2026-04-22 11:42:53.7310|DEBUG|OnDoc| +2026-04-22 11:42:53.7310|DEBUG|OnDoc| +2026-04-22 11:42:53.7310|DEBUG|OnDoc| +2026-04-22 11:46:45.0139|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:46:45.2603|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:46:45.3503|INFO|APIDocLog|Input JSON +2026-04-22 11:46:45.3705|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:46:45.3705|DEBUG|OnDoc| +2026-04-22 11:46:45.3705|DEBUG|OnDoc| +2026-04-22 11:46:45.3705|DEBUG|OnDoc| +2026-04-22 11:46:45.3705|DEBUG|OnDoc| +2026-04-22 11:46:45.3705|DEBUG|OnDoc| +2026-04-22 11:46:45.3705|DEBUG|OnDoc| +2026-04-22 11:46:45.3705|DEBUG|OnDoc| +2026-04-22 11:46:45.3705|DEBUG|OnDoc| +2026-04-22 11:46:45.3705|DEBUG|OnDoc| +2026-04-22 11:46:45.3810|DEBUG|OnDoc| +2026-04-22 11:46:45.3810|DEBUG|OnDoc| +2026-04-22 11:46:45.3810|DEBUG|OnDoc| +2026-04-22 11:46:45.3810|DEBUG|OnDoc| +2026-04-22 11:46:45.3810|DEBUG|OnDoc| +2026-04-22 11:46:45.3810|DEBUG|OnDoc| +2026-04-22 11:46:45.3810|DEBUG|OnDoc| +2026-04-22 11:46:45.3810|DEBUG|OnDoc| +2026-04-22 11:46:45.3810|DEBUG|OnDoc| +2026-04-22 11:46:45.3810|DEBUG|OnDoc| +2026-04-22 11:46:45.3962|DEBUG|OnDoc| +2026-04-22 11:46:45.3962|DEBUG|OnDoc| +2026-04-22 11:46:45.3962|DEBUG|OnDoc| +2026-04-22 11:46:45.3962|DEBUG|OnDoc| +2026-04-22 11:46:45.3962|DEBUG|OnDoc| +2026-04-22 11:46:45.3962|DEBUG|OnDoc| +2026-04-22 11:46:45.3962|DEBUG|OnDoc| +2026-04-22 11:46:45.3962|DEBUG|OnDoc| +2026-04-22 11:46:45.4120|DEBUG|OnDoc| +2026-04-22 11:46:45.4120|DEBUG|OnDoc| +2026-04-22 11:46:45.4120|DEBUG|OnDoc| +2026-04-22 11:46:45.4120|DEBUG|OnDoc| +2026-04-22 11:46:45.4120|DEBUG|OnDoc| +2026-04-22 11:46:45.4120|DEBUG|OnDoc| +2026-04-22 11:46:45.4120|DEBUG|OnDoc| +2026-04-22 11:46:45.4120|DEBUG|OnDoc| +2026-04-22 11:46:45.4120|DEBUG|OnDoc| +2026-04-22 11:46:45.4428|DEBUG|OnDoc| +2026-04-22 11:46:45.4453|DEBUG|OnDoc| +2026-04-22 11:46:45.4930|DEBUG|OnDoc| +2026-04-22 11:46:45.4930|DEBUG|OnDoc| +2026-04-22 11:46:45.5313|DEBUG|OnDoc| +2026-04-22 11:46:45.5313|DEBUG|OnDoc| +2026-04-22 11:46:45.5313|DEBUG|OnDoc| +2026-04-22 11:46:45.5313|DEBUG|OnDoc| +2026-04-22 11:46:45.5560|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:46:45.5560|DEBUG|OnDoc| +2026-04-22 11:46:45.5753|DEBUG|OnDoc| +2026-04-22 11:46:45.5753|DEBUG|OnDoc| +2026-04-22 11:46:45.5753|DEBUG|OnDoc| +2026-04-22 11:46:45.5753|DEBUG|OnDoc| +2026-04-22 11:46:45.5899|DEBUG|OnDoc| +2026-04-22 11:46:45.5899|DEBUG|OnDoc| +2026-04-22 11:46:45.5899|DEBUG|OnDoc| +2026-04-22 11:46:45.6012|DEBUG|OnDoc|Generate_Word +2026-04-22 11:46:46.0369|DEBUG|OnDoc|Word2013 +2026-04-22 11:46:46.0369|DEBUG|OnDoc|Word2013 +2026-04-22 11:46:47.5125|DEBUG|OnDoc|Generate_Word +2026-04-22 11:46:47.5576|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023775 +2026-04-22 11:46:47.5576|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:46:47.5576|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:46:47.5576|DEBUG|OnDoc| +2026-04-22 11:46:47.5695|DEBUG|OnDoc| +2026-04-22 11:46:47.5695|DEBUG|OnDoc| +2026-04-22 11:46:47.5695|DEBUG|OnDoc| +2026-04-22 11:46:47.5695|DEBUG|OnDoc| +2026-04-22 11:46:47.5695|DEBUG|OnDoc| +2026-04-22 11:47:08.7480|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:47:08.8179|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:47:08.8397|INFO|APIDocLog|Input JSON +2026-04-22 11:47:08.8397|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8397|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8496|DEBUG|OnDoc| +2026-04-22 11:47:08.8819|DEBUG|OnDoc| +2026-04-22 11:47:08.8819|DEBUG|OnDoc| +2026-04-22 11:47:08.9046|DEBUG|OnDoc| +2026-04-22 11:47:08.9046|DEBUG|OnDoc| +2026-04-22 11:47:08.9181|DEBUG|OnDoc| +2026-04-22 11:47:08.9181|DEBUG|OnDoc| +2026-04-22 11:47:08.9181|DEBUG|OnDoc| +2026-04-22 11:47:08.9181|DEBUG|OnDoc| +2026-04-22 11:47:08.9299|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:47:08.9299|DEBUG|OnDoc| +2026-04-22 11:47:08.9299|DEBUG|OnDoc| +2026-04-22 11:47:08.9299|DEBUG|OnDoc| +2026-04-22 11:47:08.9299|DEBUG|OnDoc| +2026-04-22 11:47:08.9299|DEBUG|OnDoc| +2026-04-22 11:47:08.9434|DEBUG|OnDoc| +2026-04-22 11:47:08.9434|DEBUG|OnDoc| +2026-04-22 11:47:08.9434|DEBUG|OnDoc| +2026-04-22 11:47:08.9434|DEBUG|OnDoc|Generate_Word +2026-04-22 11:47:08.9434|DEBUG|OnDoc|Word2013 +2026-04-22 11:47:08.9434|DEBUG|OnDoc|Word2013 +2026-04-22 11:47:09.4545|DEBUG|OnDoc|Generate_Word +2026-04-22 11:47:09.4658|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023780 +2026-04-22 11:47:09.4658|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:47:09.4658|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:47:09.4658|DEBUG|OnDoc| +2026-04-22 11:47:09.4658|DEBUG|OnDoc| +2026-04-22 11:47:09.4658|DEBUG|OnDoc| +2026-04-22 11:47:09.4658|DEBUG|OnDoc| +2026-04-22 11:47:09.4658|DEBUG|OnDoc| +2026-04-22 11:47:09.4658|DEBUG|OnDoc| +2026-04-22 11:47:29.4838|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:47:29.5639|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:47:29.5874|INFO|APIDocLog|Input JSON +2026-04-22 11:47:29.5874|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5874|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.5997|DEBUG|OnDoc| +2026-04-22 11:47:29.6301|DEBUG|OnDoc| +2026-04-22 11:47:29.6331|DEBUG|OnDoc| +2026-04-22 11:47:29.6532|DEBUG|OnDoc| +2026-04-22 11:47:29.6532|DEBUG|OnDoc| +2026-04-22 11:47:29.6637|DEBUG|OnDoc| +2026-04-22 11:47:29.6637|DEBUG|OnDoc| +2026-04-22 11:47:29.6637|DEBUG|OnDoc| +2026-04-22 11:47:29.6637|DEBUG|OnDoc| +2026-04-22 11:47:29.6637|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:47:29.6785|DEBUG|OnDoc| +2026-04-22 11:47:29.6785|DEBUG|OnDoc| +2026-04-22 11:47:29.6785|DEBUG|OnDoc| +2026-04-22 11:47:29.6785|DEBUG|OnDoc| +2026-04-22 11:47:29.6785|DEBUG|OnDoc| +2026-04-22 11:47:29.6785|DEBUG|OnDoc| +2026-04-22 11:47:29.6785|DEBUG|OnDoc| +2026-04-22 11:47:29.6943|DEBUG|OnDoc| +2026-04-22 11:47:29.6943|DEBUG|OnDoc|Generate_Word +2026-04-22 11:47:29.6943|DEBUG|OnDoc|Word2013 +2026-04-22 11:47:29.6943|DEBUG|OnDoc|Word2013 +2026-04-22 11:47:30.0934|DEBUG|OnDoc|Generate_Word +2026-04-22 11:47:30.1045|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023791 +2026-04-22 11:47:30.1045|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:47:30.1045|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:47:30.1045|DEBUG|OnDoc| +2026-04-22 11:47:30.1045|DEBUG|OnDoc| +2026-04-22 11:47:30.1045|DEBUG|OnDoc| +2026-04-22 11:47:30.1045|DEBUG|OnDoc| +2026-04-22 11:47:30.1045|DEBUG|OnDoc| +2026-04-22 11:47:30.1045|DEBUG|OnDoc| +2026-04-22 11:47:44.7029|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:47:44.7812|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:47:44.8060|INFO|APIDocLog|Input JSON +2026-04-22 11:47:44.8060|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8060|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8183|DEBUG|OnDoc| +2026-04-22 11:47:44.8350|DEBUG|OnDoc| +2026-04-22 11:47:44.8350|DEBUG|OnDoc| +2026-04-22 11:47:44.8350|DEBUG|OnDoc| +2026-04-22 11:47:44.8350|DEBUG|OnDoc| +2026-04-22 11:47:44.8350|DEBUG|OnDoc| +2026-04-22 11:47:44.8350|DEBUG|OnDoc| +2026-04-22 11:47:44.8350|DEBUG|OnDoc| +2026-04-22 11:47:44.8518|DEBUG|OnDoc| +2026-04-22 11:47:44.8518|DEBUG|OnDoc| +2026-04-22 11:47:44.8744|DEBUG|OnDoc| +2026-04-22 11:47:44.8744|DEBUG|OnDoc| +2026-04-22 11:47:44.8953|DEBUG|OnDoc| +2026-04-22 11:47:44.8974|DEBUG|OnDoc| +2026-04-22 11:47:44.8974|DEBUG|OnDoc| +2026-04-22 11:47:44.8974|DEBUG|OnDoc| +2026-04-22 11:47:44.8974|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:47:44.8974|DEBUG|OnDoc| +2026-04-22 11:47:44.9240|DEBUG|OnDoc| +2026-04-22 11:47:44.9275|DEBUG|OnDoc| +2026-04-22 11:47:44.9275|DEBUG|OnDoc| +2026-04-22 11:47:44.9275|DEBUG|OnDoc| +2026-04-22 11:47:44.9275|DEBUG|OnDoc| +2026-04-22 11:47:44.9275|DEBUG|OnDoc| +2026-04-22 11:47:44.9448|DEBUG|OnDoc| +2026-04-22 11:47:44.9448|DEBUG|OnDoc|Generate_Word +2026-04-22 11:47:44.9448|DEBUG|OnDoc|Word2013 +2026-04-22 11:47:44.9448|DEBUG|OnDoc|Word2013 +2026-04-22 11:47:45.3170|DEBUG|OnDoc|Generate_Word +2026-04-22 11:47:45.3290|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023809 +2026-04-22 11:47:45.3290|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:47:45.3290|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:47:45.3290|DEBUG|OnDoc| +2026-04-22 11:47:45.3385|DEBUG|OnDoc| +2026-04-22 11:47:45.3385|DEBUG|OnDoc| +2026-04-22 11:47:45.3385|DEBUG|OnDoc| +2026-04-22 11:47:45.3385|DEBUG|OnDoc| +2026-04-22 11:47:45.3385|DEBUG|OnDoc| +2026-04-22 11:48:00.3143|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:48:00.3558|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:48:00.3856|INFO|APIDocLog|Input JSON +2026-04-22 11:48:00.3856|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3856|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.3966|DEBUG|OnDoc| +2026-04-22 11:48:00.4119|DEBUG|OnDoc| +2026-04-22 11:48:00.4119|DEBUG|OnDoc| +2026-04-22 11:48:00.4119|DEBUG|OnDoc| +2026-04-22 11:48:00.4119|DEBUG|OnDoc| +2026-04-22 11:48:00.4119|DEBUG|OnDoc| +2026-04-22 11:48:00.4119|DEBUG|OnDoc| +2026-04-22 11:48:00.4288|DEBUG|OnDoc| +2026-04-22 11:48:00.4490|DEBUG|OnDoc| +2026-04-22 11:48:00.4490|DEBUG|OnDoc| +2026-04-22 11:48:00.4675|DEBUG|OnDoc| +2026-04-22 11:48:00.4675|DEBUG|OnDoc| +2026-04-22 11:48:00.4675|DEBUG|OnDoc| +2026-04-22 11:48:00.4675|DEBUG|OnDoc| +2026-04-22 11:48:00.4832|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:48:00.4832|DEBUG|OnDoc| +2026-04-22 11:48:00.4942|DEBUG|OnDoc| +2026-04-22 11:48:00.4942|DEBUG|OnDoc| +2026-04-22 11:48:00.4942|DEBUG|OnDoc| +2026-04-22 11:48:00.4942|DEBUG|OnDoc| +2026-04-22 11:48:00.5078|DEBUG|OnDoc| +2026-04-22 11:48:00.5078|DEBUG|OnDoc| +2026-04-22 11:48:00.5078|DEBUG|OnDoc| +2026-04-22 11:48:00.5078|DEBUG|OnDoc|Generate_Word +2026-04-22 11:48:00.5261|DEBUG|OnDoc|Word2013 +2026-04-22 11:48:00.5261|DEBUG|OnDoc|Word2013 +2026-04-22 11:48:01.0614|DEBUG|OnDoc|Generate_Word +2026-04-22 11:48:01.0783|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023817 +2026-04-22 11:48:01.0783|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:48:01.0783|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:48:01.0783|DEBUG|OnDoc| +2026-04-22 11:48:01.0889|DEBUG|OnDoc| +2026-04-22 11:48:01.0889|DEBUG|OnDoc| +2026-04-22 11:48:01.0889|DEBUG|OnDoc| +2026-04-22 11:48:01.0889|DEBUG|OnDoc| +2026-04-22 11:48:01.0889|DEBUG|OnDoc| +2026-04-22 11:48:10.9454|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:48:11.0155|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:48:11.0369|INFO|APIDocLog|Input JSON +2026-04-22 11:48:11.0369|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0369|DEBUG|OnDoc| +2026-04-22 11:48:11.0534|DEBUG|OnDoc| +2026-04-22 11:48:11.0534|DEBUG|OnDoc| +2026-04-22 11:48:11.0534|DEBUG|OnDoc| +2026-04-22 11:48:11.0534|DEBUG|OnDoc| +2026-04-22 11:48:11.0534|DEBUG|OnDoc| +2026-04-22 11:48:11.0534|DEBUG|OnDoc| +2026-04-22 11:48:11.0534|DEBUG|OnDoc| +2026-04-22 11:48:11.0534|DEBUG|OnDoc| +2026-04-22 11:48:11.0534|DEBUG|OnDoc| +2026-04-22 11:48:11.0685|DEBUG|OnDoc| +2026-04-22 11:48:11.0873|DEBUG|OnDoc| +2026-04-22 11:48:11.0873|DEBUG|OnDoc| +2026-04-22 11:48:11.0873|DEBUG|OnDoc| +2026-04-22 11:48:11.0873|DEBUG|OnDoc| +2026-04-22 11:48:11.0873|DEBUG|OnDoc| +2026-04-22 11:48:11.0873|DEBUG|OnDoc| +2026-04-22 11:48:11.1102|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:48:11.1102|DEBUG|OnDoc| +2026-04-22 11:48:11.1214|DEBUG|OnDoc| +2026-04-22 11:48:11.1214|DEBUG|OnDoc| +2026-04-22 11:48:11.1214|DEBUG|OnDoc| +2026-04-22 11:48:11.1214|DEBUG|OnDoc| +2026-04-22 11:48:11.1214|DEBUG|OnDoc| +2026-04-22 11:48:11.1214|DEBUG|OnDoc| +2026-04-22 11:48:11.1315|DEBUG|OnDoc| +2026-04-22 11:48:11.1315|DEBUG|OnDoc|Generate_Word +2026-04-22 11:48:11.1315|DEBUG|OnDoc|Word2013 +2026-04-22 11:48:11.1315|DEBUG|OnDoc|Word2013 +2026-04-22 11:48:11.4705|DEBUG|OnDoc|Generate_Word +2026-04-22 11:48:11.4802|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023825 +2026-04-22 11:48:11.4802|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:48:11.4802|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:48:11.4802|DEBUG|OnDoc| +2026-04-22 11:48:11.4802|DEBUG|OnDoc| +2026-04-22 11:48:11.4802|DEBUG|OnDoc| +2026-04-22 11:48:11.4802|DEBUG|OnDoc| +2026-04-22 11:48:11.4802|DEBUG|OnDoc| +2026-04-22 11:48:11.4802|DEBUG|OnDoc| +2026-04-22 11:49:36.2686|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:49:36.3317|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:49:36.3523|INFO|APIDocLog|Input JSON +2026-04-22 11:49:36.3523|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3523|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3657|DEBUG|OnDoc| +2026-04-22 11:49:36.3998|DEBUG|OnDoc| +2026-04-22 11:49:36.3998|DEBUG|OnDoc| +2026-04-22 11:49:36.4218|DEBUG|OnDoc| +2026-04-22 11:49:36.4218|DEBUG|OnDoc| +2026-04-22 11:49:36.4440|DEBUG|OnDoc| +2026-04-22 11:49:36.4440|DEBUG|OnDoc| +2026-04-22 11:49:36.4440|DEBUG|OnDoc| +2026-04-22 11:49:36.4440|DEBUG|OnDoc| +2026-04-22 11:49:36.4606|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:49:36.4606|DEBUG|OnDoc| +2026-04-22 11:49:36.4748|DEBUG|OnDoc| +2026-04-22 11:49:36.4748|DEBUG|OnDoc| +2026-04-22 11:49:36.4748|DEBUG|OnDoc| +2026-04-22 11:49:36.4748|DEBUG|OnDoc| +2026-04-22 11:49:36.4748|DEBUG|OnDoc| +2026-04-22 11:49:36.4748|DEBUG|OnDoc| +2026-04-22 11:49:36.4938|DEBUG|OnDoc| +2026-04-22 11:49:36.4938|DEBUG|OnDoc|Generate_Word +2026-04-22 11:49:36.4938|DEBUG|OnDoc|Word2013 +2026-04-22 11:49:36.4938|DEBUG|OnDoc|Word2013 +2026-04-22 11:49:36.8252|DEBUG|OnDoc|Generate_Word +2026-04-22 11:49:36.8383|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023830 +2026-04-22 11:49:36.8383|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:49:36.8383|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:49:36.8383|DEBUG|OnDoc| +2026-04-22 11:49:36.8383|DEBUG|OnDoc| +2026-04-22 11:49:36.8383|DEBUG|OnDoc| +2026-04-22 11:49:36.8493|DEBUG|OnDoc| +2026-04-22 11:49:36.8493|DEBUG|OnDoc| +2026-04-22 11:49:36.8493|DEBUG|OnDoc| +2026-04-22 11:49:42.7056|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:49:42.7710|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:49:42.7952|INFO|APIDocLog|Input JSON +2026-04-22 11:49:42.7952|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:49:42.7952|DEBUG|OnDoc| +2026-04-22 11:49:42.7952|DEBUG|OnDoc| +2026-04-22 11:49:42.7952|DEBUG|OnDoc| +2026-04-22 11:49:42.7952|DEBUG|OnDoc| +2026-04-22 11:49:42.7952|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8027|DEBUG|OnDoc| +2026-04-22 11:49:42.8185|DEBUG|OnDoc| +2026-04-22 11:49:42.8185|DEBUG|OnDoc| +2026-04-22 11:49:42.8185|DEBUG|OnDoc| +2026-04-22 11:49:42.8185|DEBUG|OnDoc| +2026-04-22 11:49:42.8185|DEBUG|OnDoc| +2026-04-22 11:49:42.8185|DEBUG|OnDoc| +2026-04-22 11:49:42.8185|DEBUG|OnDoc| +2026-04-22 11:49:42.8185|DEBUG|OnDoc| +2026-04-22 11:49:42.8346|DEBUG|OnDoc| +2026-04-22 11:49:42.8547|DEBUG|OnDoc| +2026-04-22 11:49:42.8547|DEBUG|OnDoc| +2026-04-22 11:49:42.8751|DEBUG|OnDoc| +2026-04-22 11:49:42.8751|DEBUG|OnDoc| +2026-04-22 11:49:42.8751|DEBUG|OnDoc| +2026-04-22 11:49:42.8751|DEBUG|OnDoc| +2026-04-22 11:49:42.8928|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:49:42.8928|DEBUG|OnDoc| +2026-04-22 11:49:42.9063|DEBUG|OnDoc| +2026-04-22 11:49:42.9063|DEBUG|OnDoc| +2026-04-22 11:49:42.9063|DEBUG|OnDoc| +2026-04-22 11:49:42.9063|DEBUG|OnDoc| +2026-04-22 11:49:42.9165|DEBUG|OnDoc| +2026-04-22 11:49:42.9165|DEBUG|OnDoc| +2026-04-22 11:49:42.9165|DEBUG|OnDoc| +2026-04-22 11:49:42.9165|DEBUG|OnDoc|Generate_Word +2026-04-22 11:49:42.9322|DEBUG|OnDoc|Word2013 +2026-04-22 11:49:42.9322|DEBUG|OnDoc|Word2013 +2026-04-22 11:49:43.2738|DEBUG|OnDoc|Generate_Word +2026-04-22 11:49:43.2738|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023841 +2026-04-22 11:49:43.2738|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:49:43.2869|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:49:43.2869|DEBUG|OnDoc| +2026-04-22 11:49:43.2869|DEBUG|OnDoc| +2026-04-22 11:49:43.2869|DEBUG|OnDoc| +2026-04-22 11:49:43.2869|DEBUG|OnDoc| +2026-04-22 11:49:43.3034|DEBUG|OnDoc| +2026-04-22 11:49:43.3034|DEBUG|OnDoc| +2026-04-22 11:50:21.6069|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:50:21.6710|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:50:21.6915|INFO|APIDocLog|Input JSON +2026-04-22 11:50:21.6952|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.6952|DEBUG|OnDoc| +2026-04-22 11:50:21.7088|DEBUG|OnDoc| +2026-04-22 11:50:21.7088|DEBUG|OnDoc| +2026-04-22 11:50:21.7088|DEBUG|OnDoc| +2026-04-22 11:50:21.7088|DEBUG|OnDoc| +2026-04-22 11:50:21.7088|DEBUG|OnDoc| +2026-04-22 11:50:21.7088|DEBUG|OnDoc| +2026-04-22 11:50:21.7088|DEBUG|OnDoc| +2026-04-22 11:50:21.7326|DEBUG|OnDoc| +2026-04-22 11:50:21.7326|DEBUG|OnDoc| +2026-04-22 11:50:21.7523|DEBUG|OnDoc| +2026-04-22 11:50:21.7523|DEBUG|OnDoc| +2026-04-22 11:50:21.7613|DEBUG|OnDoc| +2026-04-22 11:50:21.7613|DEBUG|OnDoc| +2026-04-22 11:50:21.7613|DEBUG|OnDoc| +2026-04-22 11:50:21.7613|DEBUG|OnDoc| +2026-04-22 11:50:21.7727|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:50:21.7727|DEBUG|OnDoc| +2026-04-22 11:50:21.7727|DEBUG|OnDoc| +2026-04-22 11:50:21.7727|DEBUG|OnDoc| +2026-04-22 11:50:21.7727|DEBUG|OnDoc| +2026-04-22 11:50:21.7727|DEBUG|OnDoc| +2026-04-22 11:50:21.7894|DEBUG|OnDoc| +2026-04-22 11:50:21.7894|DEBUG|OnDoc| +2026-04-22 11:50:21.7894|DEBUG|OnDoc| +2026-04-22 11:50:21.7894|DEBUG|OnDoc|Generate_Word +2026-04-22 11:50:21.8062|DEBUG|OnDoc|Word2013 +2026-04-22 11:50:21.8062|DEBUG|OnDoc|Word2013 +2026-04-22 11:50:22.1356|DEBUG|OnDoc|Generate_Word +2026-04-22 11:50:22.1466|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023856 +2026-04-22 11:50:22.1466|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:50:22.1466|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:50:22.1466|DEBUG|OnDoc| +2026-04-22 11:50:22.1466|DEBUG|OnDoc| +2026-04-22 11:50:22.1466|DEBUG|OnDoc| +2026-04-22 11:50:22.1466|DEBUG|OnDoc| +2026-04-22 11:50:22.1466|DEBUG|OnDoc| +2026-04-22 11:50:22.1466|DEBUG|OnDoc| +2026-04-22 11:50:35.3744|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:50:35.4393|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:50:35.4620|INFO|APIDocLog|Input JSON +2026-04-22 11:50:35.4620|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4620|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4748|DEBUG|OnDoc| +2026-04-22 11:50:35.4941|DEBUG|OnDoc| +2026-04-22 11:50:35.4941|DEBUG|OnDoc| +2026-04-22 11:50:35.5140|DEBUG|OnDoc| +2026-04-22 11:50:35.5140|DEBUG|OnDoc| +2026-04-22 11:50:35.5296|DEBUG|OnDoc| +2026-04-22 11:50:35.5296|DEBUG|OnDoc| +2026-04-22 11:50:35.5296|DEBUG|OnDoc| +2026-04-22 11:50:35.5296|DEBUG|OnDoc| +2026-04-22 11:50:35.5426|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:50:35.5426|DEBUG|OnDoc| +2026-04-22 11:50:35.5527|DEBUG|OnDoc| +2026-04-22 11:50:35.5527|DEBUG|OnDoc| +2026-04-22 11:50:35.5527|DEBUG|OnDoc| +2026-04-22 11:50:35.5527|DEBUG|OnDoc| +2026-04-22 11:50:35.5527|DEBUG|OnDoc| +2026-04-22 11:50:35.5527|DEBUG|OnDoc| +2026-04-22 11:50:35.5692|DEBUG|OnDoc| +2026-04-22 11:50:35.5692|DEBUG|OnDoc|Generate_Word +2026-04-22 11:50:35.5692|DEBUG|OnDoc|Word2013 +2026-04-22 11:50:35.5692|DEBUG|OnDoc|Word2013 +2026-04-22 11:50:35.9047|DEBUG|OnDoc|Generate_Word +2026-04-22 11:50:35.9163|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023864 +2026-04-22 11:50:35.9163|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:50:35.9163|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:50:35.9163|DEBUG|OnDoc| +2026-04-22 11:50:35.9163|DEBUG|OnDoc| +2026-04-22 11:50:35.9163|DEBUG|OnDoc| +2026-04-22 11:50:35.9163|DEBUG|OnDoc| +2026-04-22 11:50:35.9163|DEBUG|OnDoc| +2026-04-22 11:50:35.9163|DEBUG|OnDoc| +2026-04-22 11:50:55.9172|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:50:55.9848|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:50:56.0073|INFO|APIDocLog|Input JSON +2026-04-22 11:50:56.0073|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0073|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0220|DEBUG|OnDoc| +2026-04-22 11:50:56.0513|DEBUG|OnDoc| +2026-04-22 11:50:56.0533|DEBUG|OnDoc| +2026-04-22 11:50:56.0715|DEBUG|OnDoc| +2026-04-22 11:50:56.0715|DEBUG|OnDoc| +2026-04-22 11:50:56.0856|DEBUG|OnDoc| +2026-04-22 11:50:56.0856|DEBUG|OnDoc| +2026-04-22 11:50:56.0856|DEBUG|OnDoc| +2026-04-22 11:50:56.0856|DEBUG|OnDoc| +2026-04-22 11:50:56.1012|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:50:56.1012|DEBUG|OnDoc| +2026-04-22 11:50:56.1012|DEBUG|OnDoc| +2026-04-22 11:50:56.1012|DEBUG|OnDoc| +2026-04-22 11:50:56.1012|DEBUG|OnDoc| +2026-04-22 11:50:56.1012|DEBUG|OnDoc| +2026-04-22 11:50:56.1240|DEBUG|OnDoc| +2026-04-22 11:50:56.1240|DEBUG|OnDoc| +2026-04-22 11:50:56.1327|DEBUG|OnDoc| +2026-04-22 11:50:56.1327|DEBUG|OnDoc|Generate_Word +2026-04-22 11:50:56.1327|DEBUG|OnDoc|Word2013 +2026-04-22 11:50:56.1327|DEBUG|OnDoc|Word2013 +2026-04-22 11:53:04.3735|DEBUG|OnDoc|Generate_Word +2026-04-22 11:53:04.3855|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023872 +2026-04-22 11:53:04.3855|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:53:04.3855|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:53:04.3855|DEBUG|OnDoc| +2026-04-22 11:53:04.3855|DEBUG|OnDoc| +2026-04-22 11:53:04.3855|DEBUG|OnDoc| +2026-04-22 11:53:04.3855|DEBUG|OnDoc| +2026-04-22 11:53:04.3855|DEBUG|OnDoc| +2026-04-22 11:53:04.3855|DEBUG|OnDoc| +2026-04-22 11:53:32.3229|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:53:32.3872|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:53:32.4088|INFO|APIDocLog|Input JSON +2026-04-22 11:53:32.4088|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:53:32.4088|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4118|DEBUG|OnDoc| +2026-04-22 11:53:32.4466|DEBUG|OnDoc| +2026-04-22 11:53:32.4466|DEBUG|OnDoc| +2026-04-22 11:53:32.4663|DEBUG|OnDoc| +2026-04-22 11:53:32.4663|DEBUG|OnDoc| +2026-04-22 11:53:32.4773|DEBUG|OnDoc| +2026-04-22 11:53:32.4773|DEBUG|OnDoc| +2026-04-22 11:53:32.4773|DEBUG|OnDoc| +2026-04-22 11:53:32.4773|DEBUG|OnDoc| +2026-04-22 11:53:32.4773|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:53:32.4773|DEBUG|OnDoc| +2026-04-22 11:53:32.4945|DEBUG|OnDoc| +2026-04-22 11:53:32.4945|DEBUG|OnDoc| +2026-04-22 11:53:32.4945|DEBUG|OnDoc| +2026-04-22 11:53:32.4945|DEBUG|OnDoc| +2026-04-22 11:53:32.4945|DEBUG|OnDoc| +2026-04-22 11:53:32.4945|DEBUG|OnDoc| +2026-04-22 11:53:32.5068|DEBUG|OnDoc| +2026-04-22 11:53:32.5068|DEBUG|OnDoc|Generate_Word +2026-04-22 11:53:32.5068|DEBUG|OnDoc|Word2013 +2026-04-22 11:53:32.5068|DEBUG|OnDoc|Word2013 +2026-04-22 11:53:35.4958|DEBUG|OnDoc|Generate_Word +2026-04-22 11:53:35.5133|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023888 +2026-04-22 11:53:35.5133|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:53:35.5133|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:53:35.5133|DEBUG|OnDoc| +2026-04-22 11:53:35.5232|DEBUG|OnDoc| +2026-04-22 11:53:35.5232|DEBUG|OnDoc| +2026-04-22 11:53:35.5232|DEBUG|OnDoc| +2026-04-22 11:53:35.5232|DEBUG|OnDoc| +2026-04-22 11:53:35.5232|DEBUG|OnDoc| +2026-04-22 11:54:12.6815|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:54:12.7518|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:54:12.7717|INFO|APIDocLog|Input JSON +2026-04-22 11:54:12.7717|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7717|DEBUG|OnDoc| +2026-04-22 11:54:12.7870|DEBUG|OnDoc| +2026-04-22 11:54:12.7870|DEBUG|OnDoc| +2026-04-22 11:54:12.7870|DEBUG|OnDoc| +2026-04-22 11:54:12.7870|DEBUG|OnDoc| +2026-04-22 11:54:12.7870|DEBUG|OnDoc| +2026-04-22 11:54:12.7870|DEBUG|OnDoc| +2026-04-22 11:54:12.7870|DEBUG|OnDoc| +2026-04-22 11:54:12.7870|DEBUG|OnDoc| +2026-04-22 11:54:12.7870|DEBUG|OnDoc| +2026-04-22 11:54:12.7870|DEBUG|OnDoc| +2026-04-22 11:54:12.8109|DEBUG|OnDoc| +2026-04-22 11:54:12.8109|DEBUG|OnDoc| +2026-04-22 11:54:12.8296|DEBUG|OnDoc| +2026-04-22 11:54:12.8296|DEBUG|OnDoc| +2026-04-22 11:54:12.8394|DEBUG|OnDoc| +2026-04-22 11:54:12.8394|DEBUG|OnDoc| +2026-04-22 11:54:12.8394|DEBUG|OnDoc| +2026-04-22 11:54:12.8394|DEBUG|OnDoc| +2026-04-22 11:54:12.8515|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:54:12.8515|DEBUG|OnDoc| +2026-04-22 11:54:12.8515|DEBUG|OnDoc| +2026-04-22 11:54:12.8515|DEBUG|OnDoc| +2026-04-22 11:54:12.8515|DEBUG|OnDoc| +2026-04-22 11:54:12.8515|DEBUG|OnDoc| +2026-04-22 11:54:12.8515|DEBUG|OnDoc| +2026-04-22 11:54:12.8515|DEBUG|OnDoc| +2026-04-22 11:54:12.8670|DEBUG|OnDoc| +2026-04-22 11:54:12.8670|DEBUG|OnDoc|Generate_Word +2026-04-22 11:54:12.8670|DEBUG|OnDoc|Word2013 +2026-04-22 11:54:12.8670|DEBUG|OnDoc|Word2013 +2026-04-22 11:54:15.7944|DEBUG|OnDoc|Generate_Word +2026-04-22 11:54:15.8059|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023893 +2026-04-22 11:54:15.8059|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:54:15.8059|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:54:15.8059|DEBUG|OnDoc| +2026-04-22 11:54:15.8059|DEBUG|OnDoc| +2026-04-22 11:54:15.8059|DEBUG|OnDoc| +2026-04-22 11:54:15.8059|DEBUG|OnDoc| +2026-04-22 11:54:15.8059|DEBUG|OnDoc| +2026-04-22 11:54:15.8059|DEBUG|OnDoc| +2026-04-22 11:54:50.3927|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:54:50.4671|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:54:50.4873|INFO|APIDocLog|Input JSON +2026-04-22 11:54:50.4898|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.4898|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5074|DEBUG|OnDoc| +2026-04-22 11:54:50.5394|DEBUG|OnDoc| +2026-04-22 11:54:50.5394|DEBUG|OnDoc| +2026-04-22 11:54:50.5602|DEBUG|OnDoc| +2026-04-22 11:54:50.5602|DEBUG|OnDoc| +2026-04-22 11:54:50.5775|DEBUG|OnDoc| +2026-04-22 11:54:50.5775|DEBUG|OnDoc| +2026-04-22 11:54:50.5775|DEBUG|OnDoc| +2026-04-22 11:54:50.5775|DEBUG|OnDoc| +2026-04-22 11:54:50.5917|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:54:50.5917|DEBUG|OnDoc| +2026-04-22 11:54:50.6017|DEBUG|OnDoc| +2026-04-22 11:54:50.6017|DEBUG|OnDoc| +2026-04-22 11:54:50.6017|DEBUG|OnDoc| +2026-04-22 11:54:50.6017|DEBUG|OnDoc| +2026-04-22 11:54:50.6017|DEBUG|OnDoc| +2026-04-22 11:54:50.6017|DEBUG|OnDoc| +2026-04-22 11:54:50.6211|DEBUG|OnDoc| +2026-04-22 11:54:50.6211|DEBUG|OnDoc|Generate_Word +2026-04-22 11:54:50.6305|DEBUG|OnDoc|Word2013 +2026-04-22 11:54:50.6305|DEBUG|OnDoc|Word2013 +2026-04-22 11:54:53.8972|DEBUG|OnDoc|Generate_Word +2026-04-22 11:54:53.9342|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023901 +2026-04-22 11:54:53.9342|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:54:53.9342|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:54:53.9342|DEBUG|OnDoc| +2026-04-22 11:54:53.9342|DEBUG|OnDoc| +2026-04-22 11:54:53.9433|DEBUG|OnDoc| +2026-04-22 11:54:53.9433|DEBUG|OnDoc| +2026-04-22 11:54:53.9433|DEBUG|OnDoc| +2026-04-22 11:54:53.9433|DEBUG|OnDoc| +2026-04-22 11:55:55.6988|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:55:55.7673|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:55:55.7874|INFO|APIDocLog|Input JSON +2026-04-22 11:55:55.7874|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.7874|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8052|DEBUG|OnDoc| +2026-04-22 11:55:55.8325|DEBUG|OnDoc| +2026-04-22 11:55:55.8355|DEBUG|OnDoc| +2026-04-22 11:55:55.8539|DEBUG|OnDoc| +2026-04-22 11:55:55.8539|DEBUG|OnDoc| +2026-04-22 11:55:55.8754|DEBUG|OnDoc| +2026-04-22 11:55:55.8754|DEBUG|OnDoc| +2026-04-22 11:55:55.8754|DEBUG|OnDoc| +2026-04-22 11:55:55.8754|DEBUG|OnDoc| +2026-04-22 11:55:55.8906|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:55:55.8906|DEBUG|OnDoc| +2026-04-22 11:55:55.9042|DEBUG|OnDoc| +2026-04-22 11:55:55.9042|DEBUG|OnDoc| +2026-04-22 11:55:55.9042|DEBUG|OnDoc| +2026-04-22 11:55:55.9042|DEBUG|OnDoc| +2026-04-22 11:55:55.9158|DEBUG|OnDoc| +2026-04-22 11:55:55.9158|DEBUG|OnDoc| +2026-04-22 11:55:55.9158|DEBUG|OnDoc| +2026-04-22 11:55:55.9158|DEBUG|OnDoc|Generate_Word +2026-04-22 11:55:55.9320|DEBUG|OnDoc|Word2013 +2026-04-22 11:55:55.9320|DEBUG|OnDoc|Word2013 +2026-04-22 11:55:58.9684|DEBUG|OnDoc|Generate_Word +2026-04-22 11:55:58.9799|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023916 +2026-04-22 11:55:58.9799|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:55:58.9799|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:55:58.9799|DEBUG|OnDoc| +2026-04-22 11:55:58.9799|DEBUG|OnDoc| +2026-04-22 11:55:58.9799|DEBUG|OnDoc| +2026-04-22 11:55:58.9799|DEBUG|OnDoc| +2026-04-22 11:55:58.9799|DEBUG|OnDoc| +2026-04-22 11:55:58.9799|DEBUG|OnDoc| +2026-04-22 11:57:02.2037|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:57:14.3821|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 11:57:14.4335|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 11:57:44.7042|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 11:57:44.7767|INFO|APIDocLog|Start CreateDoc +2026-04-22 11:57:44.7972|INFO|APIDocLog|Input JSON +2026-04-22 11:57:44.7972|DEBUG|OnDoc|Start GenDoc +2026-04-22 11:57:44.7972|DEBUG|OnDoc| +2026-04-22 11:57:44.7972|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8032|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8182|DEBUG|OnDoc| +2026-04-22 11:57:44.8351|DEBUG|OnDoc| +2026-04-22 11:57:44.8351|DEBUG|OnDoc| +2026-04-22 11:57:44.8597|DEBUG|OnDoc| +2026-04-22 11:57:44.8597|DEBUG|OnDoc| +2026-04-22 11:57:44.8739|DEBUG|OnDoc| +2026-04-22 11:57:44.8739|DEBUG|OnDoc| +2026-04-22 11:57:44.8739|DEBUG|OnDoc| +2026-04-22 11:57:44.8739|DEBUG|OnDoc| +2026-04-22 11:57:44.8915|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 11:57:44.8915|DEBUG|OnDoc| +2026-04-22 11:57:44.9037|DEBUG|OnDoc| +2026-04-22 11:57:44.9037|DEBUG|OnDoc| +2026-04-22 11:57:44.9037|DEBUG|OnDoc| +2026-04-22 11:57:44.9037|DEBUG|OnDoc| +2026-04-22 11:57:44.9161|DEBUG|OnDoc| +2026-04-22 11:57:44.9161|DEBUG|OnDoc| +2026-04-22 11:57:44.9161|DEBUG|OnDoc| +2026-04-22 11:57:44.9161|DEBUG|OnDoc|Generate_Word +2026-04-22 11:57:44.9343|DEBUG|OnDoc|Word2013 +2026-04-22 11:57:44.9343|DEBUG|OnDoc|Word2013 +2026-04-22 11:57:48.1205|DEBUG|OnDoc|Generate_Word +2026-04-22 11:57:48.1616|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023924 +2026-04-22 11:57:48.1616|INFO|DocLog|Dokument über API erstellt +2026-04-22 11:57:48.1636|INFO|APIDocLog|Dokument return to sender +2026-04-22 11:57:48.1636|DEBUG|OnDoc| +2026-04-22 11:57:48.1636|DEBUG|OnDoc| +2026-04-22 11:57:48.1636|DEBUG|OnDoc| +2026-04-22 11:57:48.1636|DEBUG|OnDoc| +2026-04-22 11:57:48.1636|DEBUG|OnDoc| +2026-04-22 11:57:48.1636|DEBUG|OnDoc| +2026-04-22 12:00:47.7708|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:00:47.8395|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:00:47.8606|INFO|APIDocLog|Input JSON +2026-04-22 12:00:47.8606|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:00:47.8606|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8651|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.8811|DEBUG|OnDoc| +2026-04-22 12:00:47.9145|DEBUG|OnDoc| +2026-04-22 12:00:47.9145|DEBUG|OnDoc| +2026-04-22 12:00:47.9409|DEBUG|OnDoc| +2026-04-22 12:00:47.9409|DEBUG|OnDoc| +2026-04-22 12:00:47.9605|DEBUG|OnDoc| +2026-04-22 12:00:47.9605|DEBUG|OnDoc| +2026-04-22 12:00:47.9605|DEBUG|OnDoc| +2026-04-22 12:00:47.9605|DEBUG|OnDoc| +2026-04-22 12:00:47.9807|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:00:47.9807|DEBUG|OnDoc| +2026-04-22 12:00:47.9999|DEBUG|OnDoc| +2026-04-22 12:00:47.9999|DEBUG|OnDoc| +2026-04-22 12:00:47.9999|DEBUG|OnDoc| +2026-04-22 12:00:47.9999|DEBUG|OnDoc| +2026-04-22 12:00:48.0122|DEBUG|OnDoc| +2026-04-22 12:00:48.0122|DEBUG|OnDoc| +2026-04-22 12:00:48.0213|DEBUG|OnDoc| +2026-04-22 12:00:48.0213|DEBUG|OnDoc|Generate_Word +2026-04-22 12:00:48.0213|DEBUG|OnDoc|Word2013 +2026-04-22 12:00:48.0213|DEBUG|OnDoc|Word2013 +2026-04-22 12:00:50.8623|DEBUG|OnDoc|Generate_Word +2026-04-22 12:00:50.8758|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023932 +2026-04-22 12:00:50.8758|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:00:50.8758|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:00:50.8758|DEBUG|OnDoc| +2026-04-22 12:00:50.8855|DEBUG|OnDoc| +2026-04-22 12:00:50.8855|DEBUG|OnDoc| +2026-04-22 12:00:50.8855|DEBUG|OnDoc| +2026-04-22 12:00:50.8855|DEBUG|OnDoc| +2026-04-22 12:00:50.8855|DEBUG|OnDoc| +2026-04-22 12:00:58.8724|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:00:58.9548|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:00:58.9749|INFO|APIDocLog|Input JSON +2026-04-22 12:00:58.9749|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:00:58.9749|DEBUG|OnDoc| +2026-04-22 12:00:58.9749|DEBUG|OnDoc| +2026-04-22 12:00:58.9749|DEBUG|OnDoc| +2026-04-22 12:00:58.9749|DEBUG|OnDoc| +2026-04-22 12:00:58.9749|DEBUG|OnDoc| +2026-04-22 12:00:58.9749|DEBUG|OnDoc| +2026-04-22 12:00:58.9749|DEBUG|OnDoc| +2026-04-22 12:00:58.9749|DEBUG|OnDoc| +2026-04-22 12:00:58.9749|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:58.9904|DEBUG|OnDoc| +2026-04-22 12:00:59.0067|DEBUG|OnDoc| +2026-04-22 12:00:59.0067|DEBUG|OnDoc| +2026-04-22 12:00:59.0067|DEBUG|OnDoc| +2026-04-22 12:00:59.0067|DEBUG|OnDoc| +2026-04-22 12:00:59.0067|DEBUG|OnDoc| +2026-04-22 12:00:59.0067|DEBUG|OnDoc| +2026-04-22 12:00:59.0067|DEBUG|OnDoc| +2026-04-22 12:00:59.0067|DEBUG|OnDoc| +2026-04-22 12:00:59.0067|DEBUG|OnDoc| +2026-04-22 12:00:59.0224|DEBUG|OnDoc| +2026-04-22 12:00:59.0224|DEBUG|OnDoc| +2026-04-22 12:00:59.0465|DEBUG|OnDoc| +2026-04-22 12:00:59.0465|DEBUG|OnDoc| +2026-04-22 12:00:59.0645|DEBUG|OnDoc| +2026-04-22 12:00:59.0645|DEBUG|OnDoc| +2026-04-22 12:00:59.0645|DEBUG|OnDoc| +2026-04-22 12:00:59.0645|DEBUG|OnDoc| +2026-04-22 12:00:59.0809|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:00:59.0809|DEBUG|OnDoc| +2026-04-22 12:00:59.0930|DEBUG|OnDoc| +2026-04-22 12:00:59.0930|DEBUG|OnDoc| +2026-04-22 12:00:59.0930|DEBUG|OnDoc| +2026-04-22 12:00:59.0930|DEBUG|OnDoc| +2026-04-22 12:00:59.1050|DEBUG|OnDoc| +2026-04-22 12:00:59.1050|DEBUG|OnDoc| +2026-04-22 12:00:59.1050|DEBUG|OnDoc| +2026-04-22 12:00:59.1050|DEBUG|OnDoc|Generate_Word +2026-04-22 12:00:59.1233|DEBUG|OnDoc|Word2013 +2026-04-22 12:00:59.1233|DEBUG|OnDoc|Word2013 +2026-04-22 12:01:02.1412|DEBUG|OnDoc|Generate_Word +2026-04-22 12:01:02.1531|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023948 +2026-04-22 12:01:02.1531|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:01:02.1531|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:01:02.1531|DEBUG|OnDoc| +2026-04-22 12:01:02.1619|DEBUG|OnDoc| +2026-04-22 12:01:02.1619|DEBUG|OnDoc| +2026-04-22 12:01:02.1619|DEBUG|OnDoc| +2026-04-22 12:01:02.1619|DEBUG|OnDoc| +2026-04-22 12:01:02.1619|DEBUG|OnDoc| +2026-04-22 12:01:59.8273|DEBUG|OnDoc| +2026-04-22 12:01:59.9236|DEBUG|OnDoc| +2026-04-22 12:01:59.9236|DEBUG|OnDoc| +2026-04-22 12:01:59.9276|DEBUG|OnDoc| +2026-04-22 12:02:11.2746|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:02:11.4724|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:02:11.5604|INFO|APIDocLog|Input JSON +2026-04-22 12:02:11.5813|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:02:11.5813|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.5849|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6002|DEBUG|OnDoc| +2026-04-22 12:02:11.6301|DEBUG|OnDoc| +2026-04-22 12:02:11.6324|DEBUG|OnDoc| +2026-04-22 12:02:11.6780|DEBUG|OnDoc| +2026-04-22 12:02:11.6780|DEBUG|OnDoc| +2026-04-22 12:02:11.7021|DEBUG|OnDoc| +2026-04-22 12:02:11.7021|DEBUG|OnDoc| +2026-04-22 12:02:11.7021|DEBUG|OnDoc| +2026-04-22 12:02:11.7021|DEBUG|OnDoc| +2026-04-22 12:02:11.7211|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:02:11.7211|DEBUG|OnDoc| +2026-04-22 12:02:11.7305|DEBUG|OnDoc| +2026-04-22 12:02:11.7305|DEBUG|OnDoc| +2026-04-22 12:02:11.7305|DEBUG|OnDoc| +2026-04-22 12:02:11.7305|DEBUG|OnDoc| +2026-04-22 12:02:11.7445|DEBUG|OnDoc| +2026-04-22 12:02:11.7445|DEBUG|OnDoc| +2026-04-22 12:02:11.7445|DEBUG|OnDoc| +2026-04-22 12:02:11.7445|DEBUG|OnDoc|Generate_Word +2026-04-22 12:02:12.2170|DEBUG|OnDoc|Word2013 +2026-04-22 12:02:12.2270|DEBUG|OnDoc|Word2013 +2026-04-22 12:02:17.2679|DEBUG|OnDoc|Generate_Word +2026-04-22 12:02:17.3405|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023953 +2026-04-22 12:02:17.3405|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:02:17.3405|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:02:17.3405|DEBUG|OnDoc| +2026-04-22 12:02:17.3405|DEBUG|OnDoc| +2026-04-22 12:02:17.3405|DEBUG|OnDoc| +2026-04-22 12:02:17.3405|DEBUG|OnDoc| +2026-04-22 12:02:17.3405|DEBUG|OnDoc| +2026-04-22 12:02:17.3497|DEBUG|OnDoc| +2026-04-22 12:02:30.8706|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:02:30.9406|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:02:30.9636|INFO|APIDocLog|Input JSON +2026-04-22 12:02:30.9636|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9636|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:30.9742|DEBUG|OnDoc| +2026-04-22 12:02:31.0033|DEBUG|OnDoc| +2026-04-22 12:02:31.0033|DEBUG|OnDoc| +2026-04-22 12:02:31.0248|DEBUG|OnDoc| +2026-04-22 12:02:31.0248|DEBUG|OnDoc| +2026-04-22 12:02:31.0368|DEBUG|OnDoc| +2026-04-22 12:02:31.0368|DEBUG|OnDoc| +2026-04-22 12:02:31.0368|DEBUG|OnDoc| +2026-04-22 12:02:31.0368|DEBUG|OnDoc| +2026-04-22 12:02:31.0368|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:02:31.0368|DEBUG|OnDoc| +2026-04-22 12:02:31.0541|DEBUG|OnDoc| +2026-04-22 12:02:31.0541|DEBUG|OnDoc| +2026-04-22 12:02:31.0541|DEBUG|OnDoc| +2026-04-22 12:02:31.0541|DEBUG|OnDoc| +2026-04-22 12:02:31.0541|DEBUG|OnDoc| +2026-04-22 12:02:31.0541|DEBUG|OnDoc| +2026-04-22 12:02:31.0541|DEBUG|OnDoc| +2026-04-22 12:02:31.0541|DEBUG|OnDoc|Generate_Word +2026-04-22 12:02:31.0741|DEBUG|OnDoc|Word2013 +2026-04-22 12:02:31.0741|DEBUG|OnDoc|Word2013 +2026-04-22 12:02:34.7070|DEBUG|OnDoc|Generate_Word +2026-04-22 12:02:34.7450|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023969 +2026-04-22 12:02:34.7450|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:02:34.7450|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:02:34.7450|DEBUG|OnDoc| +2026-04-22 12:02:34.7450|DEBUG|OnDoc| +2026-04-22 12:02:34.7450|DEBUG|OnDoc| +2026-04-22 12:02:34.7561|DEBUG|OnDoc| +2026-04-22 12:02:34.7561|DEBUG|OnDoc| +2026-04-22 12:02:34.7561|DEBUG|OnDoc| +2026-04-22 12:02:40.9579|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:02:41.0228|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:02:41.0429|INFO|APIDocLog|Input JSON +2026-04-22 12:02:41.0551|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0551|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0689|DEBUG|OnDoc| +2026-04-22 12:02:41.0924|DEBUG|OnDoc| +2026-04-22 12:02:41.0924|DEBUG|OnDoc| +2026-04-22 12:02:41.1125|DEBUG|OnDoc| +2026-04-22 12:02:41.1125|DEBUG|OnDoc| +2026-04-22 12:02:41.1294|DEBUG|OnDoc| +2026-04-22 12:02:41.1294|DEBUG|OnDoc| +2026-04-22 12:02:41.1294|DEBUG|OnDoc| +2026-04-22 12:02:41.1314|DEBUG|OnDoc| +2026-04-22 12:02:41.1314|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:02:41.1314|DEBUG|OnDoc| +2026-04-22 12:02:41.1515|DEBUG|OnDoc| +2026-04-22 12:02:41.1515|DEBUG|OnDoc| +2026-04-22 12:02:41.1515|DEBUG|OnDoc| +2026-04-22 12:02:41.1515|DEBUG|OnDoc| +2026-04-22 12:02:41.1651|DEBUG|OnDoc| +2026-04-22 12:02:41.1651|DEBUG|OnDoc| +2026-04-22 12:02:41.1651|DEBUG|OnDoc| +2026-04-22 12:02:41.1651|DEBUG|OnDoc|Generate_Word +2026-04-22 12:02:41.1838|DEBUG|OnDoc|Word2013 +2026-04-22 12:02:41.1838|DEBUG|OnDoc|Word2013 +2026-04-22 12:02:41.5505|DEBUG|OnDoc|Generate_Word +2026-04-22 12:02:41.5632|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023977 +2026-04-22 12:02:41.5632|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:02:41.5632|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:02:41.5632|DEBUG|OnDoc| +2026-04-22 12:02:41.5703|DEBUG|OnDoc| +2026-04-22 12:02:41.5703|DEBUG|OnDoc| +2026-04-22 12:02:41.5703|DEBUG|OnDoc| +2026-04-22 12:02:41.5703|DEBUG|OnDoc| +2026-04-22 12:02:41.5703|DEBUG|OnDoc| +2026-04-22 12:02:50.2606|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:02:50.3227|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:02:50.3417|INFO|APIDocLog|Input JSON +2026-04-22 12:02:50.3417|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:02:50.3417|DEBUG|OnDoc| +2026-04-22 12:02:50.3417|DEBUG|OnDoc| +2026-04-22 12:02:50.3417|DEBUG|OnDoc| +2026-04-22 12:02:50.3417|DEBUG|OnDoc| +2026-04-22 12:02:50.3417|DEBUG|OnDoc| +2026-04-22 12:02:50.3417|DEBUG|OnDoc| +2026-04-22 12:02:50.3417|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3498|DEBUG|OnDoc| +2026-04-22 12:02:50.3654|DEBUG|OnDoc| +2026-04-22 12:02:50.3654|DEBUG|OnDoc| +2026-04-22 12:02:50.3654|DEBUG|OnDoc| +2026-04-22 12:02:50.3654|DEBUG|OnDoc| +2026-04-22 12:02:50.3654|DEBUG|OnDoc| +2026-04-22 12:02:50.3654|DEBUG|OnDoc| +2026-04-22 12:02:50.3654|DEBUG|OnDoc| +2026-04-22 12:02:50.3654|DEBUG|OnDoc| +2026-04-22 12:02:50.3654|DEBUG|OnDoc| +2026-04-22 12:02:50.3654|DEBUG|OnDoc| +2026-04-22 12:02:50.3836|DEBUG|OnDoc| +2026-04-22 12:02:50.3836|DEBUG|OnDoc| +2026-04-22 12:02:50.4037|DEBUG|OnDoc| +2026-04-22 12:02:50.4037|DEBUG|OnDoc| +2026-04-22 12:02:50.4198|DEBUG|OnDoc| +2026-04-22 12:02:50.4198|DEBUG|OnDoc| +2026-04-22 12:02:50.4198|DEBUG|OnDoc| +2026-04-22 12:02:50.4198|DEBUG|OnDoc| +2026-04-22 12:02:50.4331|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:02:50.4331|DEBUG|OnDoc| +2026-04-22 12:02:50.4458|DEBUG|OnDoc| +2026-04-22 12:02:50.4458|DEBUG|OnDoc| +2026-04-22 12:02:50.4458|DEBUG|OnDoc| +2026-04-22 12:02:50.4458|DEBUG|OnDoc| +2026-04-22 12:02:50.4458|DEBUG|OnDoc| +2026-04-22 12:02:50.4458|DEBUG|OnDoc| +2026-04-22 12:02:50.4646|DEBUG|OnDoc| +2026-04-22 12:02:50.4646|DEBUG|OnDoc|Generate_Word +2026-04-22 12:02:50.4758|DEBUG|OnDoc|Word2013 +2026-04-22 12:02:50.4758|DEBUG|OnDoc|Word2013 +2026-04-22 12:02:53.0846|DEBUG|OnDoc|Generate_Word +2026-04-22 12:02:53.0846|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023985 +2026-04-22 12:02:53.0846|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:02:53.0846|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:02:53.0846|DEBUG|OnDoc| +2026-04-22 12:02:53.1031|DEBUG|OnDoc| +2026-04-22 12:02:53.1031|DEBUG|OnDoc| +2026-04-22 12:02:53.1031|DEBUG|OnDoc| +2026-04-22 12:02:53.1031|DEBUG|OnDoc| +2026-04-22 12:02:53.1031|DEBUG|OnDoc| +2026-04-22 12:02:59.7964|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:02:59.8664|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:02:59.8894|INFO|APIDocLog|Input JSON +2026-04-22 12:02:59.8894|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:02:59.8894|DEBUG|OnDoc| +2026-04-22 12:02:59.8894|DEBUG|OnDoc| +2026-04-22 12:02:59.8894|DEBUG|OnDoc| +2026-04-22 12:02:59.8894|DEBUG|OnDoc| +2026-04-22 12:02:59.8894|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.8965|DEBUG|OnDoc| +2026-04-22 12:02:59.9121|DEBUG|OnDoc| +2026-04-22 12:02:59.9121|DEBUG|OnDoc| +2026-04-22 12:02:59.9121|DEBUG|OnDoc| +2026-04-22 12:02:59.9121|DEBUG|OnDoc| +2026-04-22 12:02:59.9121|DEBUG|OnDoc| +2026-04-22 12:02:59.9121|DEBUG|OnDoc| +2026-04-22 12:02:59.9121|DEBUG|OnDoc| +2026-04-22 12:02:59.9121|DEBUG|OnDoc| +2026-04-22 12:02:59.9121|DEBUG|OnDoc| +2026-04-22 12:02:59.9121|DEBUG|OnDoc| +2026-04-22 12:02:59.9287|DEBUG|OnDoc| +2026-04-22 12:02:59.9287|DEBUG|OnDoc| +2026-04-22 12:02:59.9527|DEBUG|OnDoc| +2026-04-22 12:02:59.9527|DEBUG|OnDoc| +2026-04-22 12:02:59.9694|DEBUG|OnDoc| +2026-04-22 12:02:59.9694|DEBUG|OnDoc| +2026-04-22 12:02:59.9694|DEBUG|OnDoc| +2026-04-22 12:02:59.9694|DEBUG|OnDoc| +2026-04-22 12:02:59.9868|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:02:59.9868|DEBUG|OnDoc| +2026-04-22 12:02:59.9973|DEBUG|OnDoc| +2026-04-22 12:02:59.9973|DEBUG|OnDoc| +2026-04-22 12:02:59.9973|DEBUG|OnDoc| +2026-04-22 12:02:59.9973|DEBUG|OnDoc| +2026-04-22 12:03:00.0074|DEBUG|OnDoc| +2026-04-22 12:03:00.0074|DEBUG|OnDoc| +2026-04-22 12:03:00.0074|DEBUG|OnDoc| +2026-04-22 12:03:00.0074|DEBUG|OnDoc|Generate_Word +2026-04-22 12:03:00.1476|DEBUG|OnDoc|Word2013 +2026-04-22 12:03:00.1476|DEBUG|OnDoc|Word2013 +2026-04-22 12:03:04.1973|DEBUG|OnDoc|Generate_Word +2026-04-22 12:03:04.2334|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000023990 +2026-04-22 12:03:04.2334|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:03:04.2334|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:03:04.2334|DEBUG|OnDoc| +2026-04-22 12:03:04.2334|DEBUG|OnDoc| +2026-04-22 12:03:04.2334|DEBUG|OnDoc| +2026-04-22 12:03:04.2334|DEBUG|OnDoc| +2026-04-22 12:03:04.2334|DEBUG|OnDoc| +2026-04-22 12:03:04.2399|DEBUG|OnDoc| +2026-04-22 12:03:15.4690|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:03:15.5381|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:03:15.5608|INFO|APIDocLog|Input JSON +2026-04-22 12:03:15.5608|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:03:15.5608|DEBUG|OnDoc| +2026-04-22 12:03:15.5608|DEBUG|OnDoc| +2026-04-22 12:03:15.5608|DEBUG|OnDoc| +2026-04-22 12:03:15.5608|DEBUG|OnDoc| +2026-04-22 12:03:15.5608|DEBUG|OnDoc| +2026-04-22 12:03:15.5608|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5694|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.5840|DEBUG|OnDoc| +2026-04-22 12:03:15.6053|DEBUG|OnDoc| +2026-04-22 12:03:15.6053|DEBUG|OnDoc| +2026-04-22 12:03:15.6281|DEBUG|OnDoc| +2026-04-22 12:03:15.6281|DEBUG|OnDoc| +2026-04-22 12:03:15.6405|DEBUG|OnDoc| +2026-04-22 12:03:15.6405|DEBUG|OnDoc| +2026-04-22 12:03:15.6405|DEBUG|OnDoc| +2026-04-22 12:03:15.6405|DEBUG|OnDoc| +2026-04-22 12:03:15.6566|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:03:15.6566|DEBUG|OnDoc| +2026-04-22 12:03:15.6645|DEBUG|OnDoc| +2026-04-22 12:03:15.6645|DEBUG|OnDoc| +2026-04-22 12:03:15.6645|DEBUG|OnDoc| +2026-04-22 12:03:15.6645|DEBUG|OnDoc| +2026-04-22 12:03:15.6645|DEBUG|OnDoc| +2026-04-22 12:03:15.6645|DEBUG|OnDoc| +2026-04-22 12:03:15.6775|DEBUG|OnDoc| +2026-04-22 12:03:15.6775|DEBUG|OnDoc|Generate_Word +2026-04-22 12:03:15.6775|DEBUG|OnDoc|Word2013 +2026-04-22 12:03:15.6775|DEBUG|OnDoc|Word2013 +2026-04-22 12:03:17.6188|DEBUG|OnDoc|Generate_Word +2026-04-22 12:03:17.6188|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024002 +2026-04-22 12:03:17.6188|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:03:17.6310|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:03:17.6310|DEBUG|OnDoc| +2026-04-22 12:03:17.6310|DEBUG|OnDoc| +2026-04-22 12:03:17.6310|DEBUG|OnDoc| +2026-04-22 12:03:17.6310|DEBUG|OnDoc| +2026-04-22 12:03:17.6310|DEBUG|OnDoc| +2026-04-22 12:03:17.6310|DEBUG|OnDoc| +2026-04-22 12:03:50.8581|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:03:50.9228|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:03:50.9438|INFO|APIDocLog|Input JSON +2026-04-22 12:03:50.9438|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9438|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9593|DEBUG|OnDoc| +2026-04-22 12:03:50.9744|DEBUG|OnDoc| +2026-04-22 12:03:50.9744|DEBUG|OnDoc| +2026-04-22 12:03:50.9744|DEBUG|OnDoc| +2026-04-22 12:03:50.9982|DEBUG|OnDoc| +2026-04-22 12:03:50.9982|DEBUG|OnDoc| +2026-04-22 12:03:51.0202|DEBUG|OnDoc| +2026-04-22 12:03:51.0212|DEBUG|OnDoc| +2026-04-22 12:03:51.0212|DEBUG|OnDoc| +2026-04-22 12:03:51.0212|DEBUG|OnDoc| +2026-04-22 12:03:51.0212|DEBUG|OnDoc| +2026-04-22 12:03:51.0376|DEBUG|OnDoc| +2026-04-22 12:03:51.0376|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:03:51.0376|DEBUG|OnDoc| +2026-04-22 12:03:51.0625|DEBUG|OnDoc| +2026-04-22 12:03:51.0625|DEBUG|OnDoc| +2026-04-22 12:03:51.0625|DEBUG|OnDoc| +2026-04-22 12:03:51.0625|DEBUG|OnDoc| +2026-04-22 12:03:51.0741|DEBUG|OnDoc| +2026-04-22 12:03:51.0741|DEBUG|OnDoc| +2026-04-22 12:03:51.0741|DEBUG|OnDoc| +2026-04-22 12:03:51.0741|DEBUG|OnDoc|Generate_Word +2026-04-22 12:03:51.0903|DEBUG|OnDoc|Word2013 +2026-04-22 12:03:51.0903|DEBUG|OnDoc|Word2013 +2026-04-22 12:03:55.5519|DEBUG|OnDoc|Generate_Word +2026-04-22 12:03:55.5950|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024018 +2026-04-22 12:03:55.5950|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:03:55.5950|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:03:55.5950|DEBUG|OnDoc| +2026-04-22 12:03:55.6073|DEBUG|OnDoc| +2026-04-22 12:03:55.6073|DEBUG|OnDoc| +2026-04-22 12:03:55.6073|DEBUG|OnDoc| +2026-04-22 12:03:55.6073|DEBUG|OnDoc| +2026-04-22 12:03:55.6073|DEBUG|OnDoc| +2026-04-22 12:05:05.4506|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:05:05.5194|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:05:05.5380|INFO|APIDocLog|Input JSON +2026-04-22 12:05:05.5380|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5380|DEBUG|OnDoc| +2026-04-22 12:05:05.5533|DEBUG|OnDoc| +2026-04-22 12:05:05.5533|DEBUG|OnDoc| +2026-04-22 12:05:05.5533|DEBUG|OnDoc| +2026-04-22 12:05:05.5533|DEBUG|OnDoc| +2026-04-22 12:05:05.5533|DEBUG|OnDoc| +2026-04-22 12:05:05.5533|DEBUG|OnDoc| +2026-04-22 12:05:05.5533|DEBUG|OnDoc| +2026-04-22 12:05:05.5533|DEBUG|OnDoc| +2026-04-22 12:05:05.5533|DEBUG|OnDoc| +2026-04-22 12:05:05.5814|DEBUG|OnDoc| +2026-04-22 12:05:05.5814|DEBUG|OnDoc| +2026-04-22 12:05:05.6018|DEBUG|OnDoc| +2026-04-22 12:05:05.6018|DEBUG|OnDoc| +2026-04-22 12:05:05.6156|DEBUG|OnDoc| +2026-04-22 12:05:05.6156|DEBUG|OnDoc| +2026-04-22 12:05:05.6156|DEBUG|OnDoc| +2026-04-22 12:05:05.6156|DEBUG|OnDoc| +2026-04-22 12:05:05.6156|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:05:05.6156|DEBUG|OnDoc| +2026-04-22 12:05:05.6335|DEBUG|OnDoc| +2026-04-22 12:05:05.6335|DEBUG|OnDoc| +2026-04-22 12:05:05.6335|DEBUG|OnDoc| +2026-04-22 12:05:05.6335|DEBUG|OnDoc| +2026-04-22 12:05:05.6335|DEBUG|OnDoc| +2026-04-22 12:05:05.6335|DEBUG|OnDoc| +2026-04-22 12:05:05.6335|DEBUG|OnDoc| +2026-04-22 12:05:05.6335|DEBUG|OnDoc|Generate_Word +2026-04-22 12:05:05.6532|DEBUG|OnDoc|Word2013 +2026-04-22 12:05:05.6532|DEBUG|OnDoc|Word2013 +2026-04-22 12:05:06.0253|DEBUG|OnDoc|Generate_Word +2026-04-22 12:05:06.0368|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024023 +2026-04-22 12:05:06.0368|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:05:06.0368|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:05:06.0368|DEBUG|OnDoc| +2026-04-22 12:05:06.0368|DEBUG|OnDoc| +2026-04-22 12:05:06.0368|DEBUG|OnDoc| +2026-04-22 12:05:06.0368|DEBUG|OnDoc| +2026-04-22 12:05:06.0368|DEBUG|OnDoc| +2026-04-22 12:05:06.0368|DEBUG|OnDoc| +2026-04-22 12:05:22.0024|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:05:22.0708|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:05:22.0909|INFO|APIDocLog|Input JSON +2026-04-22 12:05:22.0909|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0909|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.0995|DEBUG|OnDoc| +2026-04-22 12:05:22.1181|DEBUG|OnDoc| +2026-04-22 12:05:22.1181|DEBUG|OnDoc| +2026-04-22 12:05:22.1384|DEBUG|OnDoc| +2026-04-22 12:05:22.1384|DEBUG|OnDoc| +2026-04-22 12:05:22.1472|DEBUG|OnDoc| +2026-04-22 12:05:22.1472|DEBUG|OnDoc| +2026-04-22 12:05:22.1472|DEBUG|OnDoc| +2026-04-22 12:05:22.1472|DEBUG|OnDoc| +2026-04-22 12:05:22.1472|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:05:22.1472|DEBUG|OnDoc| +2026-04-22 12:05:22.1648|DEBUG|OnDoc| +2026-04-22 12:05:22.1648|DEBUG|OnDoc| +2026-04-22 12:05:22.1648|DEBUG|OnDoc| +2026-04-22 12:05:22.1648|DEBUG|OnDoc| +2026-04-22 12:05:22.1648|DEBUG|OnDoc| +2026-04-22 12:05:22.1648|DEBUG|OnDoc| +2026-04-22 12:05:22.1648|DEBUG|OnDoc| +2026-04-22 12:05:22.1648|DEBUG|OnDoc|Generate_Word +2026-04-22 12:05:22.1837|DEBUG|OnDoc|Word2013 +2026-04-22 12:05:22.1837|DEBUG|OnDoc|Word2013 +2026-04-22 12:05:22.5949|DEBUG|OnDoc|Generate_Word +2026-04-22 12:05:22.6055|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024039 +2026-04-22 12:05:22.6055|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:05:22.6055|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:05:22.6055|DEBUG|OnDoc| +2026-04-22 12:05:22.6055|DEBUG|OnDoc| +2026-04-22 12:05:22.6055|DEBUG|OnDoc| +2026-04-22 12:05:22.6055|DEBUG|OnDoc| +2026-04-22 12:05:22.6055|DEBUG|OnDoc| +2026-04-22 12:05:22.6055|DEBUG|OnDoc| +2026-04-22 12:05:44.1456|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:05:44.2147|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:05:44.2376|INFO|APIDocLog|Input JSON +2026-04-22 12:05:44.2468|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2468|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2563|DEBUG|OnDoc| +2026-04-22 12:05:44.2718|DEBUG|OnDoc| +2026-04-22 12:05:44.2718|DEBUG|OnDoc| +2026-04-22 12:05:44.2718|DEBUG|OnDoc| +2026-04-22 12:05:44.2867|DEBUG|OnDoc| +2026-04-22 12:05:44.2867|DEBUG|OnDoc| +2026-04-22 12:05:44.3064|DEBUG|OnDoc| +2026-04-22 12:05:44.3064|DEBUG|OnDoc| +2026-04-22 12:05:44.3064|DEBUG|OnDoc| +2026-04-22 12:05:44.3064|DEBUG|OnDoc| +2026-04-22 12:05:44.3214|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:05:44.3214|DEBUG|OnDoc| +2026-04-22 12:05:44.3405|DEBUG|OnDoc| +2026-04-22 12:05:44.3405|DEBUG|OnDoc| +2026-04-22 12:05:44.3405|DEBUG|OnDoc| +2026-04-22 12:05:44.3405|DEBUG|OnDoc| +2026-04-22 12:05:44.3517|DEBUG|OnDoc| +2026-04-22 12:05:44.3517|DEBUG|OnDoc| +2026-04-22 12:05:44.3517|DEBUG|OnDoc| +2026-04-22 12:05:44.3517|DEBUG|OnDoc|Generate_Word +2026-04-22 12:05:44.3696|DEBUG|OnDoc|Word2013 +2026-04-22 12:05:44.3696|DEBUG|OnDoc|Word2013 +2026-04-22 12:05:44.8151|DEBUG|OnDoc|Generate_Word +2026-04-22 12:05:44.8305|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024047 +2026-04-22 12:05:44.8305|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:05:44.8305|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:05:44.8340|DEBUG|OnDoc| +2026-04-22 12:05:44.8340|DEBUG|OnDoc| +2026-04-22 12:05:44.8340|DEBUG|OnDoc| +2026-04-22 12:05:44.8340|DEBUG|OnDoc| +2026-04-22 12:05:44.8340|DEBUG|OnDoc| +2026-04-22 12:05:44.8340|DEBUG|OnDoc| +2026-04-22 12:05:54.8154|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:05:54.8819|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:05:54.9019|INFO|APIDocLog|Input JSON +2026-04-22 12:05:54.9019|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:05:54.9019|DEBUG|OnDoc| +2026-04-22 12:05:54.9019|DEBUG|OnDoc| +2026-04-22 12:05:54.9019|DEBUG|OnDoc| +2026-04-22 12:05:54.9019|DEBUG|OnDoc| +2026-04-22 12:05:54.9019|DEBUG|OnDoc| +2026-04-22 12:05:54.9019|DEBUG|OnDoc| +2026-04-22 12:05:54.9019|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9125|DEBUG|OnDoc| +2026-04-22 12:05:54.9277|DEBUG|OnDoc| +2026-04-22 12:05:54.9277|DEBUG|OnDoc| +2026-04-22 12:05:54.9433|DEBUG|OnDoc| +2026-04-22 12:05:54.9433|DEBUG|OnDoc| +2026-04-22 12:05:54.9648|DEBUG|OnDoc| +2026-04-22 12:05:54.9648|DEBUG|OnDoc| +2026-04-22 12:05:54.9648|DEBUG|OnDoc| +2026-04-22 12:05:54.9648|DEBUG|OnDoc| +2026-04-22 12:05:54.9778|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:05:54.9778|DEBUG|OnDoc| +2026-04-22 12:05:54.9966|DEBUG|OnDoc| +2026-04-22 12:05:54.9966|DEBUG|OnDoc| +2026-04-22 12:05:54.9966|DEBUG|OnDoc| +2026-04-22 12:05:54.9966|DEBUG|OnDoc| +2026-04-22 12:05:55.0082|DEBUG|OnDoc| +2026-04-22 12:05:55.0082|DEBUG|OnDoc| +2026-04-22 12:05:55.0082|DEBUG|OnDoc| +2026-04-22 12:05:55.0082|DEBUG|OnDoc|Generate_Word +2026-04-22 12:05:55.0218|DEBUG|OnDoc|Word2013 +2026-04-22 12:05:55.0218|DEBUG|OnDoc|Word2013 +2026-04-22 12:05:55.4329|DEBUG|OnDoc|Generate_Word +2026-04-22 12:05:55.4467|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024055 +2026-04-22 12:05:55.4467|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:05:55.4467|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:05:55.4467|DEBUG|OnDoc| +2026-04-22 12:05:55.4605|DEBUG|OnDoc| +2026-04-22 12:05:55.4605|DEBUG|OnDoc| +2026-04-22 12:05:55.4605|DEBUG|OnDoc| +2026-04-22 12:05:55.4605|DEBUG|OnDoc| +2026-04-22 12:05:55.4605|DEBUG|OnDoc| +2026-04-22 12:07:51.6002|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:08:02.8136|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 12:08:02.8651|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 12:08:30.4544|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:08:30.5171|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:08:30.5366|INFO|APIDocLog|Input JSON +2026-04-22 12:08:30.5386|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5386|DEBUG|OnDoc| +2026-04-22 12:08:30.5524|DEBUG|OnDoc| +2026-04-22 12:08:30.5524|DEBUG|OnDoc| +2026-04-22 12:08:30.5524|DEBUG|OnDoc| +2026-04-22 12:08:30.5524|DEBUG|OnDoc| +2026-04-22 12:08:30.5838|DEBUG|OnDoc| +2026-04-22 12:08:30.5838|DEBUG|OnDoc| +2026-04-22 12:08:30.5838|DEBUG|OnDoc| +2026-04-22 12:08:30.5838|DEBUG|OnDoc| +2026-04-22 12:08:30.5838|DEBUG|OnDoc| +2026-04-22 12:08:30.5838|DEBUG|OnDoc| +2026-04-22 12:08:30.6033|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:08:30.6033|DEBUG|OnDoc| +2026-04-22 12:08:30.6033|DEBUG|OnDoc| +2026-04-22 12:08:30.6033|DEBUG|OnDoc| +2026-04-22 12:08:30.6033|DEBUG|OnDoc| +2026-04-22 12:08:30.6033|DEBUG|OnDoc| +2026-04-22 12:08:30.6152|DEBUG|OnDoc| +2026-04-22 12:08:30.6152|DEBUG|OnDoc| +2026-04-22 12:08:30.6152|DEBUG|OnDoc| +2026-04-22 12:08:30.6152|DEBUG|OnDoc|Generate_Word +2026-04-22 12:08:30.6346|DEBUG|OnDoc|Word2013 +2026-04-22 12:08:30.6346|DEBUG|OnDoc|Word2013 +2026-04-22 12:08:30.9687|DEBUG|OnDoc|Generate_Word +2026-04-22 12:08:30.9792|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024060 +2026-04-22 12:08:30.9792|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:08:30.9792|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:08:30.9792|DEBUG|OnDoc| +2026-04-22 12:08:30.9792|DEBUG|OnDoc| +2026-04-22 12:08:30.9792|DEBUG|OnDoc| +2026-04-22 12:08:30.9792|DEBUG|OnDoc| +2026-04-22 12:08:30.9792|DEBUG|OnDoc| +2026-04-22 12:08:30.9792|DEBUG|OnDoc| +2026-04-22 12:08:51.1616|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 12:08:51.2243|INFO|APIDocLog|Start CreateDoc +2026-04-22 12:08:51.2433|INFO|APIDocLog|Input JSON +2026-04-22 12:08:51.2433|DEBUG|OnDoc|Start GenDoc +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2433|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2563|DEBUG|OnDoc| +2026-04-22 12:08:51.2717|DEBUG|OnDoc| +2026-04-22 12:08:51.2717|DEBUG|OnDoc| +2026-04-22 12:08:51.2717|DEBUG|OnDoc| +2026-04-22 12:08:51.2973|DEBUG|OnDoc| +2026-04-22 12:08:51.2973|DEBUG|OnDoc| +2026-04-22 12:08:51.3120|DEBUG|OnDoc| +2026-04-22 12:08:51.3120|DEBUG|OnDoc| +2026-04-22 12:08:51.3120|DEBUG|OnDoc| +2026-04-22 12:08:51.3120|DEBUG|OnDoc| +2026-04-22 12:08:51.3255|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 12:08:51.3255|DEBUG|OnDoc| +2026-04-22 12:08:51.3409|DEBUG|OnDoc| +2026-04-22 12:08:51.3409|DEBUG|OnDoc| +2026-04-22 12:08:51.3409|DEBUG|OnDoc| +2026-04-22 12:08:51.3409|DEBUG|OnDoc| +2026-04-22 12:08:51.3515|DEBUG|OnDoc| +2026-04-22 12:08:51.3515|DEBUG|OnDoc| +2026-04-22 12:08:51.3515|DEBUG|OnDoc| +2026-04-22 12:08:51.3515|DEBUG|OnDoc|Generate_Word +2026-04-22 12:08:51.3706|DEBUG|OnDoc|Word2013 +2026-04-22 12:08:51.3706|DEBUG|OnDoc|Word2013 +2026-04-22 12:08:51.6997|DEBUG|OnDoc|Generate_Word +2026-04-22 12:08:51.7147|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024071 +2026-04-22 12:08:51.7147|INFO|DocLog|Dokument über API erstellt +2026-04-22 12:08:51.7147|INFO|APIDocLog|Dokument return to sender +2026-04-22 12:08:51.7147|DEBUG|OnDoc| +2026-04-22 12:08:51.7147|DEBUG|OnDoc| +2026-04-22 12:08:51.7147|DEBUG|OnDoc| +2026-04-22 12:08:51.7254|DEBUG|OnDoc| +2026-04-22 12:08:51.7254|DEBUG|OnDoc| +2026-04-22 12:08:51.7254|DEBUG|OnDoc| +2026-04-22 13:19:09.0881|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:19:09.1602|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:19:09.1809|INFO|APIDocLog|Input JSON +2026-04-22 13:19:09.1809|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1809|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.1935|DEBUG|OnDoc| +2026-04-22 13:19:09.2250|DEBUG|OnDoc| +2026-04-22 13:19:09.2250|DEBUG|OnDoc| +2026-04-22 13:19:09.2250|DEBUG|OnDoc| +2026-04-22 13:19:09.2250|DEBUG|OnDoc| +2026-04-22 13:19:09.2250|DEBUG|OnDoc| +2026-04-22 13:19:09.2250|DEBUG|OnDoc| +2026-04-22 13:19:09.2495|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:19:09.2495|DEBUG|OnDoc| +2026-04-22 13:19:09.2577|DEBUG|OnDoc| +2026-04-22 13:19:09.2577|DEBUG|OnDoc| +2026-04-22 13:19:09.2577|DEBUG|OnDoc| +2026-04-22 13:19:09.2577|DEBUG|OnDoc| +2026-04-22 13:19:09.2577|DEBUG|OnDoc| +2026-04-22 13:19:09.2577|DEBUG|OnDoc| +2026-04-22 13:19:09.2728|DEBUG|OnDoc| +2026-04-22 13:19:09.2728|DEBUG|OnDoc|Generate_Word +2026-04-22 13:19:09.2728|DEBUG|OnDoc|Word2013 +2026-04-22 13:19:09.2728|DEBUG|OnDoc|Word2013 +2026-04-22 13:19:09.6188|DEBUG|OnDoc|Generate_Word +2026-04-22 13:19:09.6188|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024086 +2026-04-22 13:19:09.6188|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:19:09.6188|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:19:09.6314|DEBUG|OnDoc| +2026-04-22 13:19:09.6314|DEBUG|OnDoc| +2026-04-22 13:19:09.6314|DEBUG|OnDoc| +2026-04-22 13:19:09.6314|DEBUG|OnDoc| +2026-04-22 13:19:09.6314|DEBUG|OnDoc| +2026-04-22 13:19:09.6314|DEBUG|OnDoc| +2026-04-22 13:19:21.9725|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:19:22.0156|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:19:22.0370|INFO|APIDocLog|Input JSON +2026-04-22 13:19:22.0370|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0370|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0532|DEBUG|OnDoc| +2026-04-22 13:19:22.0859|DEBUG|OnDoc| +2026-04-22 13:19:22.0859|DEBUG|OnDoc| +2026-04-22 13:19:22.0859|DEBUG|OnDoc| +2026-04-22 13:19:22.0859|DEBUG|OnDoc| +2026-04-22 13:19:22.0859|DEBUG|OnDoc| +2026-04-22 13:19:22.0859|DEBUG|OnDoc| +2026-04-22 13:19:22.1057|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:19:22.1057|DEBUG|OnDoc| +2026-04-22 13:19:22.1057|DEBUG|OnDoc| +2026-04-22 13:19:22.1057|DEBUG|OnDoc| +2026-04-22 13:19:22.1057|DEBUG|OnDoc| +2026-04-22 13:19:22.1057|DEBUG|OnDoc| +2026-04-22 13:19:22.1168|DEBUG|OnDoc| +2026-04-22 13:19:22.1168|DEBUG|OnDoc| +2026-04-22 13:19:22.1168|DEBUG|OnDoc| +2026-04-22 13:19:22.1168|DEBUG|OnDoc|Generate_Word +2026-04-22 13:19:22.1320|DEBUG|OnDoc|Word2013 +2026-04-22 13:19:22.1320|DEBUG|OnDoc|Word2013 +2026-04-22 13:19:22.4645|DEBUG|OnDoc|Generate_Word +2026-04-22 13:19:22.4756|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024094 +2026-04-22 13:19:22.4756|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:19:22.4756|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:19:22.4756|DEBUG|OnDoc| +2026-04-22 13:19:22.4756|DEBUG|OnDoc| +2026-04-22 13:19:22.4756|DEBUG|OnDoc| +2026-04-22 13:19:22.4756|DEBUG|OnDoc| +2026-04-22 13:19:22.4756|DEBUG|OnDoc| +2026-04-22 13:19:22.4756|DEBUG|OnDoc| +2026-04-22 13:19:32.6357|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:19:44.7728|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:19:44.8079|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:21:41.3867|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:21:53.5312|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:21:53.5675|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:22:17.1390|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:22:28.2856|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:22:28.3209|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:22:53.3030|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:22:53.3458|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:22:53.3665|INFO|APIDocLog|Input JSON +2026-04-22 13:22:53.3665|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3665|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3817|DEBUG|OnDoc| +2026-04-22 13:22:53.3978|DEBUG|OnDoc| +2026-04-22 13:22:53.3978|DEBUG|OnDoc| +2026-04-22 13:22:53.3978|DEBUG|OnDoc| +2026-04-22 13:22:53.3978|DEBUG|OnDoc| +2026-04-22 13:22:53.3978|DEBUG|OnDoc| +2026-04-22 13:22:53.3978|DEBUG|OnDoc| +2026-04-22 13:22:53.4209|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:22:53.4209|DEBUG|OnDoc| +2026-04-22 13:22:53.4319|DEBUG|OnDoc| +2026-04-22 13:22:53.4319|DEBUG|OnDoc| +2026-04-22 13:22:53.4319|DEBUG|OnDoc| +2026-04-22 13:22:53.4319|DEBUG|OnDoc| +2026-04-22 13:22:53.4319|DEBUG|OnDoc| +2026-04-22 13:22:53.4319|DEBUG|OnDoc| +2026-04-22 13:22:53.4319|DEBUG|OnDoc| +2026-04-22 13:22:53.4319|DEBUG|OnDoc|Generate_Word +2026-04-22 13:22:53.4508|DEBUG|OnDoc|Word2013 +2026-04-22 13:22:53.4508|DEBUG|OnDoc|Word2013 +2026-04-22 13:22:53.8479|DEBUG|OnDoc|Generate_Word +2026-04-22 13:22:53.8603|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024103 +2026-04-22 13:22:53.8603|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:22:53.8603|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:22:53.8603|DEBUG|OnDoc| +2026-04-22 13:22:53.8669|DEBUG|OnDoc| +2026-04-22 13:22:53.8669|DEBUG|OnDoc| +2026-04-22 13:22:53.8669|DEBUG|OnDoc| +2026-04-22 13:22:53.8669|DEBUG|OnDoc| +2026-04-22 13:22:53.8669|DEBUG|OnDoc| +2026-04-22 13:23:19.9783|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:23:32.0949|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:23:32.1295|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:23:38.8604|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:23:38.9362|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:23:38.9660|INFO|APIDocLog|Input JSON +2026-04-22 13:23:38.9660|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9660|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9750|DEBUG|OnDoc| +2026-04-22 13:23:38.9919|DEBUG|OnDoc| +2026-04-22 13:23:38.9919|DEBUG|OnDoc| +2026-04-22 13:23:38.9919|DEBUG|OnDoc| +2026-04-22 13:23:38.9919|DEBUG|OnDoc| +2026-04-22 13:23:38.9919|DEBUG|OnDoc| +2026-04-22 13:23:39.0060|DEBUG|OnDoc| +2026-04-22 13:23:39.0060|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:23:39.0060|DEBUG|OnDoc| +2026-04-22 13:23:39.0238|DEBUG|OnDoc| +2026-04-22 13:23:39.0238|DEBUG|OnDoc| +2026-04-22 13:23:39.0238|DEBUG|OnDoc| +2026-04-22 13:23:39.0238|DEBUG|OnDoc| +2026-04-22 13:23:39.0238|DEBUG|OnDoc| +2026-04-22 13:23:39.0238|DEBUG|OnDoc| +2026-04-22 13:23:39.0398|DEBUG|OnDoc| +2026-04-22 13:23:39.0398|DEBUG|OnDoc|Generate_Word +2026-04-22 13:23:39.0398|DEBUG|OnDoc|Word2013 +2026-04-22 13:23:39.0398|DEBUG|OnDoc|Word2013 +2026-04-22 13:23:39.3902|DEBUG|OnDoc|Generate_Word +2026-04-22 13:23:39.4008|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024119 +2026-04-22 13:23:39.4008|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:23:39.4008|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:23:39.4008|DEBUG|OnDoc| +2026-04-22 13:23:39.4008|DEBUG|OnDoc| +2026-04-22 13:23:39.4008|DEBUG|OnDoc| +2026-04-22 13:23:39.4008|DEBUG|OnDoc| +2026-04-22 13:23:39.4008|DEBUG|OnDoc| +2026-04-22 13:23:39.4008|DEBUG|OnDoc| +2026-04-22 13:23:50.6890|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:23:50.7523|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:23:50.7730|INFO|APIDocLog|Input JSON +2026-04-22 13:23:50.7730|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7730|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.7872|DEBUG|OnDoc| +2026-04-22 13:23:50.8027|DEBUG|OnDoc| +2026-04-22 13:23:50.8027|DEBUG|OnDoc| +2026-04-22 13:23:50.8027|DEBUG|OnDoc| +2026-04-22 13:23:50.8027|DEBUG|OnDoc| +2026-04-22 13:23:50.8027|DEBUG|OnDoc| +2026-04-22 13:23:50.8027|DEBUG|OnDoc| +2026-04-22 13:23:50.8226|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:23:50.8226|DEBUG|OnDoc| +2026-04-22 13:23:50.8226|DEBUG|OnDoc| +2026-04-22 13:23:50.8226|DEBUG|OnDoc| +2026-04-22 13:23:50.8226|DEBUG|OnDoc| +2026-04-22 13:23:50.8226|DEBUG|OnDoc| +2026-04-22 13:23:50.8350|DEBUG|OnDoc| +2026-04-22 13:23:50.8350|DEBUG|OnDoc| +2026-04-22 13:23:50.8350|DEBUG|OnDoc| +2026-04-22 13:23:50.8350|DEBUG|OnDoc|Generate_Word +2026-04-22 13:23:50.8894|DEBUG|OnDoc|Word2013 +2026-04-22 13:23:50.8894|DEBUG|OnDoc|Word2013 +2026-04-22 13:23:51.2272|DEBUG|OnDoc|Generate_Word +2026-04-22 13:23:51.2272|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024127 +2026-04-22 13:23:51.2272|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:23:51.2272|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:23:51.2272|DEBUG|OnDoc| +2026-04-22 13:23:51.2419|DEBUG|OnDoc| +2026-04-22 13:23:51.2419|DEBUG|OnDoc| +2026-04-22 13:23:51.2419|DEBUG|OnDoc| +2026-04-22 13:23:51.2419|DEBUG|OnDoc| +2026-04-22 13:23:51.2419|DEBUG|OnDoc| +2026-04-22 13:24:20.5494|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:24:32.6609|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:24:32.6963|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:24:45.4724|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:24:45.5397|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:24:45.5609|INFO|APIDocLog|Input JSON +2026-04-22 13:24:45.5609|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:24:45.5609|DEBUG|OnDoc| +2026-04-22 13:24:45.5609|DEBUG|OnDoc| +2026-04-22 13:24:45.5609|DEBUG|OnDoc| +2026-04-22 13:24:45.5609|DEBUG|OnDoc| +2026-04-22 13:24:45.5609|DEBUG|OnDoc| +2026-04-22 13:24:45.5609|DEBUG|OnDoc| +2026-04-22 13:24:45.5609|DEBUG|OnDoc| +2026-04-22 13:24:45.5609|DEBUG|OnDoc| +2026-04-22 13:24:45.5609|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5684|DEBUG|OnDoc| +2026-04-22 13:24:45.5891|DEBUG|OnDoc| +2026-04-22 13:24:45.5891|DEBUG|OnDoc| +2026-04-22 13:24:45.5891|DEBUG|OnDoc| +2026-04-22 13:24:45.5891|DEBUG|OnDoc| +2026-04-22 13:24:45.5891|DEBUG|OnDoc| +2026-04-22 13:24:45.5891|DEBUG|OnDoc| +2026-04-22 13:24:45.6067|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:24:45.6067|DEBUG|OnDoc| +2026-04-22 13:24:45.6067|DEBUG|OnDoc| +2026-04-22 13:24:45.6067|DEBUG|OnDoc| +2026-04-22 13:24:45.6067|DEBUG|OnDoc| +2026-04-22 13:24:45.6067|DEBUG|OnDoc| +2026-04-22 13:24:45.6201|DEBUG|OnDoc| +2026-04-22 13:24:45.6201|DEBUG|OnDoc| +2026-04-22 13:24:45.6201|DEBUG|OnDoc| +2026-04-22 13:24:45.6201|DEBUG|OnDoc|Generate_Word +2026-04-22 13:24:45.6350|DEBUG|OnDoc|Word2013 +2026-04-22 13:24:45.6350|DEBUG|OnDoc|Word2013 +2026-04-22 13:24:45.9557|DEBUG|OnDoc|Generate_Word +2026-04-22 13:24:45.9648|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024135 +2026-04-22 13:24:45.9648|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:24:45.9648|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:24:45.9648|DEBUG|OnDoc| +2026-04-22 13:24:45.9648|DEBUG|OnDoc| +2026-04-22 13:24:45.9648|DEBUG|OnDoc| +2026-04-22 13:24:45.9648|DEBUG|OnDoc| +2026-04-22 13:24:45.9648|DEBUG|OnDoc| +2026-04-22 13:24:45.9648|DEBUG|OnDoc| +2026-04-22 13:25:28.1395|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:25:28.2076|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:25:28.2280|INFO|APIDocLog|Input JSON +2026-04-22 13:25:28.2280|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2280|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2407|DEBUG|OnDoc| +2026-04-22 13:25:28.2669|DEBUG|OnDoc| +2026-04-22 13:25:28.2669|DEBUG|OnDoc| +2026-04-22 13:25:28.2751|INFO|OnDoc|Image-Bezug: 4 +2026-04-22 13:25:28.4731|DEBUG|OnDoc| +2026-04-22 13:25:28.4828|DEBUG|OnDoc| +2026-04-22 13:25:28.4934|DEBUG|OnDoc| +2026-04-22 13:25:28.4934|DEBUG|OnDoc| +2026-04-22 13:25:28.4934|DEBUG|OnDoc| +2026-04-22 13:25:28.4934|DEBUG|OnDoc| +2026-04-22 13:25:28.4934|DEBUG|OnDoc| +2026-04-22 13:25:28.4934|DEBUG|OnDoc| +2026-04-22 13:25:28.5132|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:25:28.5132|DEBUG|OnDoc| +2026-04-22 13:25:28.5132|DEBUG|OnDoc| +2026-04-22 13:25:28.5132|DEBUG|OnDoc| +2026-04-22 13:25:28.5132|DEBUG|OnDoc| +2026-04-22 13:25:28.5132|DEBUG|OnDoc| +2026-04-22 13:25:28.5247|DEBUG|OnDoc| +2026-04-22 13:25:28.5247|DEBUG|OnDoc| +2026-04-22 13:25:28.5247|DEBUG|OnDoc| +2026-04-22 13:25:28.5247|DEBUG|OnDoc|Generate_Word +2026-04-22 13:25:28.5247|DEBUG|OnDoc|Word2013 +2026-04-22 13:25:28.5372|DEBUG|OnDoc|Word2013 +2026-04-22 13:25:29.1875|DEBUG|OnDoc|Generate_Word +2026-04-22 13:25:29.1991|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024140 +2026-04-22 13:25:29.1991|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:25:29.1991|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:25:29.1991|DEBUG|OnDoc| +2026-04-22 13:25:29.2147|DEBUG|OnDoc| +2026-04-22 13:25:29.2147|DEBUG|OnDoc| +2026-04-22 13:25:29.2147|DEBUG|OnDoc| +2026-04-22 13:25:29.2147|DEBUG|OnDoc| +2026-04-22 13:25:29.2147|DEBUG|OnDoc| +2026-04-22 13:25:37.3460|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:25:37.4126|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:25:37.4317|INFO|APIDocLog|Input JSON +2026-04-22 13:25:37.4317|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4317|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4444|DEBUG|OnDoc| +2026-04-22 13:25:37.4713|DEBUG|OnDoc| +2026-04-22 13:25:37.4748|DEBUG|OnDoc| +2026-04-22 13:25:37.4748|INFO|OnDoc|Image-Bezug: 4 +2026-04-22 13:25:37.5241|DEBUG|OnDoc| +2026-04-22 13:25:37.5241|DEBUG|OnDoc| +2026-04-22 13:25:37.5384|DEBUG|OnDoc| +2026-04-22 13:25:37.5384|DEBUG|OnDoc| +2026-04-22 13:25:37.5384|DEBUG|OnDoc| +2026-04-22 13:25:37.5384|DEBUG|OnDoc| +2026-04-22 13:25:37.5384|DEBUG|OnDoc| +2026-04-22 13:25:37.5384|DEBUG|OnDoc| +2026-04-22 13:25:37.5582|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:25:37.5582|DEBUG|OnDoc| +2026-04-22 13:25:37.5582|DEBUG|OnDoc| +2026-04-22 13:25:37.5582|DEBUG|OnDoc| +2026-04-22 13:25:37.5582|DEBUG|OnDoc| +2026-04-22 13:25:37.5582|DEBUG|OnDoc| +2026-04-22 13:25:37.5712|DEBUG|OnDoc| +2026-04-22 13:25:37.5712|DEBUG|OnDoc| +2026-04-22 13:25:37.5712|DEBUG|OnDoc| +2026-04-22 13:25:37.5712|DEBUG|OnDoc|Generate_Word +2026-04-22 13:25:37.5838|DEBUG|OnDoc|Word2013 +2026-04-22 13:25:37.5838|DEBUG|OnDoc|Word2013 +2026-04-22 13:25:38.2868|DEBUG|OnDoc|Generate_Word +2026-04-22 13:25:38.2868|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024151 +2026-04-22 13:25:38.2868|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:25:38.2868|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:25:38.2868|DEBUG|OnDoc| +2026-04-22 13:25:38.3111|DEBUG|OnDoc| +2026-04-22 13:25:38.3111|DEBUG|OnDoc| +2026-04-22 13:25:38.3111|DEBUG|OnDoc| +2026-04-22 13:25:38.3111|DEBUG|OnDoc| +2026-04-22 13:25:38.3111|DEBUG|OnDoc| +2026-04-22 13:26:20.8067|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:26:20.8752|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:26:20.8959|INFO|APIDocLog|Input JSON +2026-04-22 13:26:20.8989|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.8989|DEBUG|OnDoc| +2026-04-22 13:26:20.9118|DEBUG|OnDoc| +2026-04-22 13:26:20.9118|DEBUG|OnDoc| +2026-04-22 13:26:20.9118|DEBUG|OnDoc| +2026-04-22 13:26:20.9118|DEBUG|OnDoc| +2026-04-22 13:26:20.9118|DEBUG|OnDoc| +2026-04-22 13:26:20.9118|DEBUG|OnDoc| +2026-04-22 13:26:20.9118|DEBUG|OnDoc| +2026-04-22 13:26:20.9357|DEBUG|OnDoc| +2026-04-22 13:26:20.9357|DEBUG|OnDoc| +2026-04-22 13:26:20.9447|INFO|OnDoc|Image-Bezug: 4 +2026-04-22 13:26:20.9908|DEBUG|OnDoc| +2026-04-22 13:26:20.9908|DEBUG|OnDoc| +2026-04-22 13:26:21.0060|DEBUG|OnDoc| +2026-04-22 13:26:21.0060|DEBUG|OnDoc| +2026-04-22 13:26:21.0060|DEBUG|OnDoc| +2026-04-22 13:26:21.0060|DEBUG|OnDoc| +2026-04-22 13:26:21.0060|DEBUG|OnDoc| +2026-04-22 13:26:21.0060|DEBUG|OnDoc| +2026-04-22 13:26:21.0269|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:26:21.0269|DEBUG|OnDoc| +2026-04-22 13:26:21.0269|DEBUG|OnDoc| +2026-04-22 13:26:21.0269|DEBUG|OnDoc| +2026-04-22 13:26:21.0269|DEBUG|OnDoc| +2026-04-22 13:26:21.0269|DEBUG|OnDoc| +2026-04-22 13:26:21.0381|DEBUG|OnDoc| +2026-04-22 13:26:21.0381|DEBUG|OnDoc| +2026-04-22 13:26:21.0381|DEBUG|OnDoc| +2026-04-22 13:26:21.0381|DEBUG|OnDoc|Generate_Word +2026-04-22 13:26:21.0381|DEBUG|OnDoc|Word2013 +2026-04-22 13:26:21.0381|DEBUG|OnDoc|Word2013 +2026-04-22 13:26:21.6332|DEBUG|OnDoc|Generate_Word +2026-04-22 13:26:21.6469|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024166 +2026-04-22 13:26:21.6469|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:26:21.6469|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:26:21.6469|DEBUG|OnDoc| +2026-04-22 13:26:21.6665|DEBUG|OnDoc| +2026-04-22 13:26:21.6665|DEBUG|OnDoc| +2026-04-22 13:26:21.6665|DEBUG|OnDoc| +2026-04-22 13:26:21.6665|DEBUG|OnDoc| +2026-04-22 13:26:21.6665|DEBUG|OnDoc| +2026-04-22 13:26:37.5282|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:26:37.5920|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:26:37.6099|INFO|APIDocLog|Input JSON +2026-04-22 13:26:37.6099|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:26:37.6099|DEBUG|OnDoc| +2026-04-22 13:26:37.6099|DEBUG|OnDoc| +2026-04-22 13:26:37.6099|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6156|DEBUG|OnDoc| +2026-04-22 13:26:37.6308|DEBUG|OnDoc| +2026-04-22 13:26:37.6308|DEBUG|OnDoc| +2026-04-22 13:26:37.6308|DEBUG|OnDoc| +2026-04-22 13:26:37.6497|INFO|OnDoc|Image-Bezug: 4 +2026-04-22 13:26:37.6923|DEBUG|OnDoc| +2026-04-22 13:26:37.6945|DEBUG|OnDoc| +2026-04-22 13:26:37.6945|DEBUG|OnDoc| +2026-04-22 13:26:37.6945|DEBUG|OnDoc| +2026-04-22 13:26:37.7145|DEBUG|OnDoc| +2026-04-22 13:26:37.7145|DEBUG|OnDoc| +2026-04-22 13:26:37.7145|DEBUG|OnDoc| +2026-04-22 13:26:37.7145|DEBUG|OnDoc| +2026-04-22 13:26:37.7287|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:26:37.7287|DEBUG|OnDoc| +2026-04-22 13:26:37.7287|DEBUG|OnDoc| +2026-04-22 13:26:37.7287|DEBUG|OnDoc| +2026-04-22 13:26:37.7287|DEBUG|OnDoc| +2026-04-22 13:26:37.7287|DEBUG|OnDoc| +2026-04-22 13:26:37.7417|DEBUG|OnDoc| +2026-04-22 13:26:37.7417|DEBUG|OnDoc| +2026-04-22 13:26:37.7417|DEBUG|OnDoc| +2026-04-22 13:26:37.7417|DEBUG|OnDoc|Generate_Word +2026-04-22 13:26:37.7417|DEBUG|OnDoc|Word2013 +2026-04-22 13:26:37.7417|DEBUG|OnDoc|Word2013 +2026-04-22 13:26:38.2783|DEBUG|OnDoc|Generate_Word +2026-04-22 13:26:38.2915|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024174 +2026-04-22 13:26:38.2915|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:26:38.2915|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:26:38.2915|DEBUG|OnDoc| +2026-04-22 13:26:38.3064|DEBUG|OnDoc| +2026-04-22 13:26:38.3064|DEBUG|OnDoc| +2026-04-22 13:26:38.3064|DEBUG|OnDoc| +2026-04-22 13:26:38.3064|DEBUG|OnDoc| +2026-04-22 13:26:38.3064|DEBUG|OnDoc| +2026-04-22 13:26:54.5331|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:26:54.6070|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:26:54.6285|INFO|APIDocLog|Input JSON +2026-04-22 13:26:54.6315|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6315|DEBUG|OnDoc| +2026-04-22 13:26:54.6470|DEBUG|OnDoc| +2026-04-22 13:26:54.6470|DEBUG|OnDoc| +2026-04-22 13:26:54.6470|DEBUG|OnDoc| +2026-04-22 13:26:54.6470|DEBUG|OnDoc| +2026-04-22 13:26:54.6470|DEBUG|OnDoc| +2026-04-22 13:26:54.6470|DEBUG|OnDoc| +2026-04-22 13:26:54.6470|DEBUG|OnDoc| +2026-04-22 13:26:54.6470|DEBUG|OnDoc| +2026-04-22 13:26:54.6470|DEBUG|OnDoc| +2026-04-22 13:26:54.6470|DEBUG|OnDoc| +2026-04-22 13:26:54.6651|DEBUG|OnDoc| +2026-04-22 13:26:54.6651|INFO|OnDoc|Image-Bezug: 4 +2026-04-22 13:26:54.7250|DEBUG|OnDoc| +2026-04-22 13:26:54.7250|DEBUG|OnDoc| +2026-04-22 13:26:54.7250|DEBUG|OnDoc| +2026-04-22 13:26:54.7250|DEBUG|OnDoc| +2026-04-22 13:26:54.7483|DEBUG|OnDoc| +2026-04-22 13:26:54.7483|DEBUG|OnDoc| +2026-04-22 13:26:54.7483|DEBUG|OnDoc| +2026-04-22 13:26:54.7483|DEBUG|OnDoc| +2026-04-22 13:26:54.7636|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:26:54.7636|DEBUG|OnDoc| +2026-04-22 13:26:54.7752|DEBUG|OnDoc| +2026-04-22 13:26:54.7752|DEBUG|OnDoc| +2026-04-22 13:26:54.7752|DEBUG|OnDoc| +2026-04-22 13:26:54.7752|DEBUG|OnDoc| +2026-04-22 13:26:54.7752|DEBUG|OnDoc| +2026-04-22 13:26:54.7752|DEBUG|OnDoc| +2026-04-22 13:26:54.7886|DEBUG|OnDoc| +2026-04-22 13:26:54.7886|DEBUG|OnDoc|Generate_Word +2026-04-22 13:26:54.7886|DEBUG|OnDoc|Word2013 +2026-04-22 13:26:54.7886|DEBUG|OnDoc|Word2013 +2026-04-22 13:26:55.3803|DEBUG|OnDoc|Generate_Word +2026-04-22 13:26:55.3949|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024182 +2026-04-22 13:26:55.3949|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:26:55.3969|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:26:55.3969|DEBUG|OnDoc| +2026-04-22 13:26:55.4130|DEBUG|OnDoc| +2026-04-22 13:26:55.4130|DEBUG|OnDoc| +2026-04-22 13:26:55.4130|DEBUG|OnDoc| +2026-04-22 13:26:55.4130|DEBUG|OnDoc| +2026-04-22 13:26:55.4130|DEBUG|OnDoc| +2026-04-22 13:27:09.3907|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:27:20.5567|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:27:20.5917|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:27:31.1902|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:27:31.2517|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:27:31.2717|INFO|APIDocLog|Input JSON +2026-04-22 13:27:31.2717|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2717|DEBUG|OnDoc| +2026-04-22 13:27:31.2871|DEBUG|OnDoc| +2026-04-22 13:27:31.2871|DEBUG|OnDoc| +2026-04-22 13:27:31.2871|DEBUG|OnDoc| +2026-04-22 13:27:31.2871|DEBUG|OnDoc| +2026-04-22 13:27:31.2871|DEBUG|OnDoc| +2026-04-22 13:27:31.2871|DEBUG|OnDoc| +2026-04-22 13:27:31.2871|DEBUG|OnDoc| +2026-04-22 13:27:31.2871|DEBUG|OnDoc| +2026-04-22 13:27:31.2871|DEBUG|OnDoc| +2026-04-22 13:27:31.2871|DEBUG|OnDoc| +2026-04-22 13:27:31.3031|DEBUG|OnDoc| +2026-04-22 13:27:31.3031|INFO|OnDoc|Image-Bezug: 4 +2026-04-22 13:27:31.3537|DEBUG|OnDoc| +2026-04-22 13:27:31.3537|DEBUG|OnDoc| +2026-04-22 13:27:31.3656|DEBUG|OnDoc| +2026-04-22 13:27:31.3656|DEBUG|OnDoc| +2026-04-22 13:27:31.3656|DEBUG|OnDoc| +2026-04-22 13:27:31.3656|DEBUG|OnDoc| +2026-04-22 13:27:31.3656|DEBUG|OnDoc| +2026-04-22 13:27:31.3656|DEBUG|OnDoc| +2026-04-22 13:27:31.3862|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:27:31.3862|DEBUG|OnDoc| +2026-04-22 13:27:31.3862|DEBUG|OnDoc| +2026-04-22 13:27:31.3862|DEBUG|OnDoc| +2026-04-22 13:27:31.3862|DEBUG|OnDoc| +2026-04-22 13:27:31.3862|DEBUG|OnDoc| +2026-04-22 13:27:31.3990|DEBUG|OnDoc| +2026-04-22 13:27:31.3990|DEBUG|OnDoc| +2026-04-22 13:27:31.3990|DEBUG|OnDoc| +2026-04-22 13:27:31.3990|DEBUG|OnDoc|Generate_Word +2026-04-22 13:27:31.4126|DEBUG|OnDoc|Word2013 +2026-04-22 13:27:31.4126|DEBUG|OnDoc|Word2013 +2026-04-22 13:27:31.9303|DEBUG|OnDoc|Generate_Word +2026-04-22 13:27:31.9303|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024198 +2026-04-22 13:27:31.9433|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:27:31.9433|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:27:31.9433|DEBUG|OnDoc| +2026-04-22 13:27:31.9433|DEBUG|OnDoc| +2026-04-22 13:27:31.9433|DEBUG|OnDoc| +2026-04-22 13:27:31.9433|DEBUG|OnDoc| +2026-04-22 13:27:31.9433|DEBUG|OnDoc| +2026-04-22 13:27:31.9433|DEBUG|OnDoc| +2026-04-22 13:27:41.3803|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:27:41.4487|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:27:41.4736|INFO|APIDocLog|Input JSON +2026-04-22 13:27:41.4766|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4766|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.4901|DEBUG|OnDoc| +2026-04-22 13:27:41.5060|DEBUG|OnDoc| +2026-04-22 13:27:41.5060|INFO|OnDoc|Image-Bezug: 4 +2026-04-22 13:27:41.5591|DEBUG|OnDoc| +2026-04-22 13:27:41.5591|DEBUG|OnDoc| +2026-04-22 13:27:41.5707|DEBUG|OnDoc| +2026-04-22 13:27:41.5707|DEBUG|OnDoc| +2026-04-22 13:27:41.5837|DEBUG|OnDoc| +2026-04-22 13:27:41.5837|DEBUG|OnDoc| +2026-04-22 13:27:41.5837|DEBUG|OnDoc| +2026-04-22 13:27:41.5837|DEBUG|OnDoc| +2026-04-22 13:27:41.5837|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:27:41.5837|DEBUG|OnDoc| +2026-04-22 13:27:41.6044|DEBUG|OnDoc| +2026-04-22 13:27:41.6044|DEBUG|OnDoc| +2026-04-22 13:27:41.6044|DEBUG|OnDoc| +2026-04-22 13:27:41.6044|DEBUG|OnDoc| +2026-04-22 13:27:41.6044|DEBUG|OnDoc| +2026-04-22 13:27:41.6044|DEBUG|OnDoc| +2026-04-22 13:27:41.6044|DEBUG|OnDoc| +2026-04-22 13:27:41.6044|DEBUG|OnDoc|Generate_Word +2026-04-22 13:27:41.6205|DEBUG|OnDoc|Word2013 +2026-04-22 13:27:41.6205|DEBUG|OnDoc|Word2013 +2026-04-22 13:27:42.1951|DEBUG|OnDoc|Generate_Word +2026-04-22 13:27:42.1951|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024207 +2026-04-22 13:27:42.1951|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:27:42.1951|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:27:42.2105|DEBUG|OnDoc| +2026-04-22 13:27:42.2105|DEBUG|OnDoc| +2026-04-22 13:27:42.2105|DEBUG|OnDoc| +2026-04-22 13:27:42.2105|DEBUG|OnDoc| +2026-04-22 13:27:42.2105|DEBUG|OnDoc| +2026-04-22 13:27:42.2105|DEBUG|OnDoc| +2026-04-22 13:27:54.8959|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:27:54.9643|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:27:54.9851|INFO|APIDocLog|Input JSON +2026-04-22 13:27:54.9851|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:27:54.9851|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:54.9906|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0058|DEBUG|OnDoc| +2026-04-22 13:27:55.0221|DEBUG|OnDoc| +2026-04-22 13:27:55.0221|DEBUG|OnDoc| +2026-04-22 13:27:55.0221|INFO|OnDoc|Image-Bezug: 4 +2026-04-22 13:27:55.0796|DEBUG|OnDoc| +2026-04-22 13:27:55.0796|DEBUG|OnDoc| +2026-04-22 13:27:55.0983|DEBUG|OnDoc| +2026-04-22 13:27:55.1008|DEBUG|OnDoc| +2026-04-22 13:27:55.1008|DEBUG|OnDoc| +2026-04-22 13:27:55.1008|DEBUG|OnDoc| +2026-04-22 13:27:55.1150|DEBUG|OnDoc| +2026-04-22 13:27:55.1150|DEBUG|OnDoc| +2026-04-22 13:27:55.1150|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:27:55.1150|DEBUG|OnDoc| +2026-04-22 13:27:55.1350|DEBUG|OnDoc| +2026-04-22 13:27:55.1350|DEBUG|OnDoc| +2026-04-22 13:27:55.1350|DEBUG|OnDoc| +2026-04-22 13:27:55.1350|DEBUG|OnDoc| +2026-04-22 13:27:55.1350|DEBUG|OnDoc| +2026-04-22 13:27:55.1350|DEBUG|OnDoc| +2026-04-22 13:27:55.1470|DEBUG|OnDoc| +2026-04-22 13:27:55.1470|DEBUG|OnDoc|Generate_Word +2026-04-22 13:27:55.1470|DEBUG|OnDoc|Word2013 +2026-04-22 13:27:55.1470|DEBUG|OnDoc|Word2013 +2026-04-22 13:27:55.6893|DEBUG|OnDoc|Generate_Word +2026-04-22 13:27:55.7010|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024215 +2026-04-22 13:27:55.7010|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:27:55.7010|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:27:55.7010|DEBUG|OnDoc| +2026-04-22 13:27:55.7152|DEBUG|OnDoc| +2026-04-22 13:27:55.7152|DEBUG|OnDoc| +2026-04-22 13:27:55.7152|DEBUG|OnDoc| +2026-04-22 13:27:55.7152|DEBUG|OnDoc| +2026-04-22 13:27:55.7152|DEBUG|OnDoc| +2026-04-22 13:28:02.1869|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:28:02.2498|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:28:02.2706|INFO|APIDocLog|Input JSON +2026-04-22 13:28:02.2746|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2746|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.2876|DEBUG|OnDoc| +2026-04-22 13:28:02.3062|DEBUG|OnDoc| +2026-04-22 13:28:02.3062|DEBUG|OnDoc| +2026-04-22 13:28:02.3062|INFO|OnDoc|Image-Bezug: 4 +2026-04-22 13:28:02.3655|DEBUG|OnDoc| +2026-04-22 13:28:02.3655|DEBUG|OnDoc| +2026-04-22 13:28:02.3655|DEBUG|OnDoc| +2026-04-22 13:28:02.3827|DEBUG|OnDoc| +2026-04-22 13:28:02.3827|DEBUG|OnDoc| +2026-04-22 13:28:02.3827|DEBUG|OnDoc| +2026-04-22 13:28:02.3827|DEBUG|OnDoc| +2026-04-22 13:28:02.3827|DEBUG|OnDoc| +2026-04-22 13:28:02.4062|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:28:02.4062|DEBUG|OnDoc| +2026-04-22 13:28:02.4158|DEBUG|OnDoc| +2026-04-22 13:28:02.4158|DEBUG|OnDoc| +2026-04-22 13:28:02.4158|DEBUG|OnDoc| +2026-04-22 13:28:02.4158|DEBUG|OnDoc| +2026-04-22 13:28:02.4158|DEBUG|OnDoc| +2026-04-22 13:28:02.4158|DEBUG|OnDoc| +2026-04-22 13:28:02.4299|DEBUG|OnDoc| +2026-04-22 13:28:02.4299|DEBUG|OnDoc|Generate_Word +2026-04-22 13:28:02.4299|DEBUG|OnDoc|Word2013 +2026-04-22 13:28:02.4299|DEBUG|OnDoc|Word2013 +2026-04-22 13:28:03.0485|DEBUG|OnDoc|Generate_Word +2026-04-22 13:28:03.0619|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024220 +2026-04-22 13:28:03.0619|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:28:03.0619|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:28:03.0619|DEBUG|OnDoc| +2026-04-22 13:28:03.0730|DEBUG|OnDoc| +2026-04-22 13:28:03.0730|DEBUG|OnDoc| +2026-04-22 13:28:03.0730|DEBUG|OnDoc| +2026-04-22 13:28:03.0730|DEBUG|OnDoc| +2026-04-22 13:28:03.0730|DEBUG|OnDoc| +2026-04-22 13:28:13.9501|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:28:14.0139|INFO|APIDocLog|Start CreateDoc +2026-04-22 13:28:14.0336|INFO|APIDocLog|Input JSON +2026-04-22 13:28:14.0368|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0368|DEBUG|OnDoc| +2026-04-22 13:28:14.0527|DEBUG|OnDoc| +2026-04-22 13:28:14.0527|DEBUG|OnDoc| +2026-04-22 13:28:14.0527|DEBUG|OnDoc| +2026-04-22 13:28:14.0735|DEBUG|OnDoc| +2026-04-22 13:28:14.0735|DEBUG|OnDoc| +2026-04-22 13:28:14.0735|INFO|OnDoc|Image-Bezug: 4 +2026-04-22 13:28:14.1272|DEBUG|OnDoc| +2026-04-22 13:28:14.1305|DEBUG|OnDoc| +2026-04-22 13:28:14.1305|DEBUG|OnDoc| +2026-04-22 13:28:14.1305|DEBUG|OnDoc| +2026-04-22 13:28:14.1497|DEBUG|OnDoc| +2026-04-22 13:28:14.1497|DEBUG|OnDoc| +2026-04-22 13:28:14.1497|DEBUG|OnDoc| +2026-04-22 13:28:14.1497|DEBUG|OnDoc| +2026-04-22 13:28:14.1628|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:28:14.1628|DEBUG|OnDoc| +2026-04-22 13:28:14.1628|DEBUG|OnDoc| +2026-04-22 13:28:14.1628|DEBUG|OnDoc| +2026-04-22 13:28:14.1628|DEBUG|OnDoc| +2026-04-22 13:28:14.1628|DEBUG|OnDoc| +2026-04-22 13:28:14.1628|DEBUG|OnDoc| +2026-04-22 13:28:14.1628|DEBUG|OnDoc| +2026-04-22 13:28:14.1814|DEBUG|OnDoc| +2026-04-22 13:28:14.1814|DEBUG|OnDoc|Generate_Word +2026-04-22 13:28:14.1814|DEBUG|OnDoc|Word2013 +2026-04-22 13:28:14.1814|DEBUG|OnDoc|Word2013 +2026-04-22 13:28:14.7650|DEBUG|OnDoc|Generate_Word +2026-04-22 13:28:14.7797|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024231 +2026-04-22 13:28:14.7797|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:28:14.7797|INFO|APIDocLog|Dokument return to sender +2026-04-22 13:28:14.7797|DEBUG|OnDoc| +2026-04-22 13:28:14.7988|DEBUG|OnDoc| +2026-04-22 13:28:14.7988|DEBUG|OnDoc| +2026-04-22 13:28:14.7988|DEBUG|OnDoc| +2026-04-22 13:28:14.7988|DEBUG|OnDoc| +2026-04-22 13:28:14.8029|DEBUG|OnDoc| +2026-04-22 13:30:41.4204|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:30:53.5566|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:30:53.5964|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:31:20.4110|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:31:32.5228|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:31:32.5572|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:31:40.6332|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:31:52.7494|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:31:52.7837|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:32:28.2218|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:32:40.3374|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:32:40.3719|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:33:24.0917|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:33:36.2182|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:33:36.2525|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:34:40.1426|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:34:52.2655|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:34:52.3007|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:35:00.1617|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:35:39.4089|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:35:39.4432|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:36:19.7998|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:36:31.9099|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 13:36:31.9443|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 13:37:27.8024|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 13:37:27.8964|INFO|APIDocLog|CreateDoks Start +2026-04-22 13:37:28.7097|INFO|APIDocLog|Input Json +2026-04-22 13:37:28.7097|DEBUG|OnDoc|Start GenDoc +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7249|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7404|DEBUG|OnDoc| +2026-04-22 13:37:28.7651|DEBUG|OnDoc| +2026-04-22 13:37:28.7651|DEBUG|OnDoc| +2026-04-22 13:37:28.7773|DEBUG|OnDoc| +2026-04-22 13:37:28.7773|DEBUG|OnDoc| +2026-04-22 13:37:28.7773|DEBUG|OnDoc| +2026-04-22 13:37:28.7773|DEBUG|OnDoc| +2026-04-22 13:37:28.7906|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 13:37:28.7906|DEBUG|OnDoc| +2026-04-22 13:37:28.7906|DEBUG|OnDoc| +2026-04-22 13:37:28.7906|DEBUG|OnDoc| +2026-04-22 13:37:28.7906|DEBUG|OnDoc| +2026-04-22 13:37:28.7906|DEBUG|OnDoc| +2026-04-22 13:37:28.8053|DEBUG|OnDoc| +2026-04-22 13:37:28.8053|DEBUG|OnDoc| +2026-04-22 13:37:28.8053|DEBUG|OnDoc| +2026-04-22 13:37:28.8053|DEBUG|OnDoc|Generate_Word +2026-04-22 13:37:28.8216|DEBUG|OnDoc|Word2013 +2026-04-22 13:37:28.8216|DEBUG|OnDoc|Word2013 +2026-04-22 13:37:29.0953|DEBUG|OnDoc|Generate_Word +2026-04-22 13:37:29.1053|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024246 +2026-04-22 13:37:29.1053|INFO|DocLog|Dokument über API erstellt +2026-04-22 13:37:29.1053|INFO|APIDocLog|Dok erstellt +2026-04-22 13:37:29.1053|INFO|APIDocLog|Attachment angefügt +2026-04-22 13:37:29.1053|DEBUG|OnDoc| +2026-04-22 13:37:29.1053|DEBUG|OnDoc| +2026-04-22 13:37:29.1053|DEBUG|OnDoc| +2026-04-22 13:37:29.1411|DEBUG|OnDoc| +2026-04-22 13:37:29.1411|DEBUG|OnDoc| +2026-04-22 13:37:29.1466|DEBUG|OnDoc| +2026-04-22 13:37:29.1466|DEBUG|OnDoc| +2026-04-22 13:37:29.1466|DEBUG|OnDoc| +2026-04-22 13:37:29.1466|DEBUG|OnDoc| +2026-04-22 13:37:29.1466|DEBUG|OnDoc| +2026-04-22 13:37:29.1466|DEBUG|OnDoc| +2026-04-22 13:37:29.1768|DEBUG|OnDoc| +2026-04-22 13:37:29.2288|DEBUG|OnDoc| +2026-04-22 13:37:29.2288|DEBUG|OnDoc| +2026-04-22 13:37:29.4509|DEBUG|OnDoc| +2026-04-22 13:37:29.4613|DEBUG|OnDoc| +2026-04-22 14:06:07.9144|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:06:08.1249|INFO|APIDocLog|CreateDoks Start +2026-04-22 14:06:08.7604|INFO|APIDocLog|Input Json +2026-04-22 14:06:08.7604|DEBUG|OnDoc|Start GenDoc +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7720|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.7871|DEBUG|OnDoc| +2026-04-22 14:06:08.8054|DEBUG|OnDoc| +2026-04-22 14:06:08.8054|DEBUG|OnDoc| +2026-04-22 14:06:08.8054|DEBUG|OnDoc| +2026-04-22 14:06:08.8054|DEBUG|OnDoc| +2026-04-22 14:06:08.8189|DEBUG|OnDoc| +2026-04-22 14:06:08.8189|DEBUG|OnDoc| +2026-04-22 14:06:08.8189|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 14:06:08.8189|DEBUG|OnDoc| +2026-04-22 14:06:08.8419|DEBUG|OnDoc| +2026-04-22 14:06:08.8419|DEBUG|OnDoc| +2026-04-22 14:06:08.8419|DEBUG|OnDoc| +2026-04-22 14:06:08.8419|DEBUG|OnDoc| +2026-04-22 14:06:08.8533|DEBUG|OnDoc| +2026-04-22 14:06:08.8533|DEBUG|OnDoc| +2026-04-22 14:06:08.8533|DEBUG|OnDoc| +2026-04-22 14:06:08.8533|DEBUG|OnDoc|Generate_Word +2026-04-22 14:06:08.8688|DEBUG|OnDoc|Word2013 +2026-04-22 14:06:08.8688|DEBUG|OnDoc|Word2013 +2026-04-22 14:06:09.1551|DEBUG|OnDoc|Generate_Word +2026-04-22 14:06:09.1674|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024254 +2026-04-22 14:06:09.1674|INFO|DocLog|Dokument über API erstellt +2026-04-22 14:06:09.1674|INFO|APIDocLog|Dok erstellt +2026-04-22 14:06:09.1674|INFO|APIDocLog|Attachment angefügt +2026-04-22 14:06:09.1674|DEBUG|OnDoc| +2026-04-22 14:06:09.1674|DEBUG|OnDoc| +2026-04-22 14:06:09.1674|DEBUG|OnDoc| +2026-04-22 14:06:09.2020|DEBUG|OnDoc| +2026-04-22 14:06:09.2020|DEBUG|OnDoc| +2026-04-22 14:06:09.2020|DEBUG|OnDoc| +2026-04-22 14:06:09.2020|DEBUG|OnDoc| +2026-04-22 14:06:09.2088|DEBUG|OnDoc| +2026-04-22 14:06:09.2088|DEBUG|OnDoc| +2026-04-22 14:06:09.2088|DEBUG|OnDoc| +2026-04-22 14:06:09.2088|DEBUG|OnDoc| +2026-04-22 14:06:09.2411|DEBUG|OnDoc| +2026-04-22 14:06:09.2850|DEBUG|OnDoc| +2026-04-22 14:06:09.2881|DEBUG|OnDoc| +2026-04-22 14:06:09.3419|DEBUG|OnDoc| +2026-04-22 14:06:09.3419|DEBUG|OnDoc| +2026-04-22 14:06:18.7030|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:06:18.7590|INFO|APIDocLog|CreateDoks Start +2026-04-22 14:06:19.4178|INFO|APIDocLog|Input Json +2026-04-22 14:06:19.4289|DEBUG|OnDoc|Start GenDoc +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4289|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4431|DEBUG|OnDoc| +2026-04-22 14:06:19.4638|DEBUG|OnDoc| +2026-04-22 14:06:19.4638|DEBUG|OnDoc| +2026-04-22 14:06:19.4764|DEBUG|OnDoc| +2026-04-22 14:06:19.4764|DEBUG|OnDoc| +2026-04-22 14:06:19.4764|DEBUG|OnDoc| +2026-04-22 14:06:19.4764|DEBUG|OnDoc| +2026-04-22 14:06:19.4917|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 14:06:19.4917|DEBUG|OnDoc| +2026-04-22 14:06:19.4917|DEBUG|OnDoc| +2026-04-22 14:06:19.4917|DEBUG|OnDoc| +2026-04-22 14:06:19.4917|DEBUG|OnDoc| +2026-04-22 14:06:19.4917|DEBUG|OnDoc| +2026-04-22 14:06:19.4917|DEBUG|OnDoc| +2026-04-22 14:06:19.5059|DEBUG|OnDoc| +2026-04-22 14:06:19.5059|DEBUG|OnDoc| +2026-04-22 14:06:19.5059|DEBUG|OnDoc|Generate_Word +2026-04-22 14:06:19.5059|DEBUG|OnDoc|Word2013 +2026-04-22 14:06:19.5059|DEBUG|OnDoc|Word2013 +2026-04-22 14:06:19.8062|DEBUG|OnDoc|Generate_Word +2026-04-22 14:06:19.8062|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024262 +2026-04-22 14:06:19.8187|INFO|DocLog|Dokument über API erstellt +2026-04-22 14:06:19.8187|INFO|APIDocLog|Dok erstellt +2026-04-22 14:06:19.8187|INFO|APIDocLog|Attachment angefügt +2026-04-22 14:06:19.8187|DEBUG|OnDoc| +2026-04-22 14:06:19.8187|DEBUG|OnDoc| +2026-04-22 14:06:19.8187|DEBUG|OnDoc| +2026-04-22 14:06:19.8517|DEBUG|OnDoc| +2026-04-22 14:06:19.8517|DEBUG|OnDoc| +2026-04-22 14:06:19.8517|DEBUG|OnDoc| +2026-04-22 14:06:19.8517|DEBUG|OnDoc| +2026-04-22 14:06:19.8517|DEBUG|OnDoc| +2026-04-22 14:06:19.8517|DEBUG|OnDoc| +2026-04-22 14:06:19.8517|DEBUG|OnDoc| +2026-04-22 14:06:19.8517|DEBUG|OnDoc| +2026-04-22 14:06:19.8851|DEBUG|OnDoc| +2026-04-22 14:06:19.9331|DEBUG|OnDoc| +2026-04-22 14:06:19.9331|DEBUG|OnDoc| +2026-04-22 14:06:19.9891|DEBUG|OnDoc| +2026-04-22 14:06:19.9920|DEBUG|OnDoc| +2026-04-22 14:06:40.4252|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:06:52.5379|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 14:06:52.5735|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 14:07:01.0038|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:07:13.1299|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 14:07:13.1660|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 14:07:47.9723|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:07:48.0249|INFO|APIDocLog|CreateDoks Start +2026-04-22 14:07:48.7566|INFO|APIDocLog|Input Json +2026-04-22 14:07:48.7566|DEBUG|OnDoc|Start GenDoc +2026-04-22 14:07:48.7566|DEBUG|OnDoc| +2026-04-22 14:07:48.7566|DEBUG|OnDoc| +2026-04-22 14:07:48.7566|DEBUG|OnDoc| +2026-04-22 14:07:48.7566|DEBUG|OnDoc| +2026-04-22 14:07:48.7566|DEBUG|OnDoc| +2026-04-22 14:07:48.7566|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7717|DEBUG|OnDoc| +2026-04-22 14:07:48.7878|DEBUG|OnDoc| +2026-04-22 14:07:48.7878|DEBUG|OnDoc| +2026-04-22 14:07:48.7878|DEBUG|OnDoc| +2026-04-22 14:07:48.7878|DEBUG|OnDoc| +2026-04-22 14:07:48.7878|DEBUG|OnDoc| +2026-04-22 14:07:48.8039|DEBUG|OnDoc| +2026-04-22 14:07:48.8039|DEBUG|OnDoc| +2026-04-22 14:07:48.8039|DEBUG|OnDoc| +2026-04-22 14:07:48.8039|DEBUG|OnDoc| +2026-04-22 14:07:48.8039|DEBUG|OnDoc| +2026-04-22 14:07:48.8039|DEBUG|OnDoc| +2026-04-22 14:07:48.8267|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 14:07:48.8267|DEBUG|OnDoc| +2026-04-22 14:07:48.8337|DEBUG|OnDoc| +2026-04-22 14:07:48.8337|DEBUG|OnDoc| +2026-04-22 14:07:48.8337|DEBUG|OnDoc| +2026-04-22 14:07:48.8337|DEBUG|OnDoc| +2026-04-22 14:07:48.8337|DEBUG|OnDoc| +2026-04-22 14:07:48.8337|DEBUG|OnDoc| +2026-04-22 14:07:48.8337|DEBUG|OnDoc| +2026-04-22 14:07:48.8337|DEBUG|OnDoc|Generate_Word +2026-04-22 14:07:48.8553|DEBUG|OnDoc|Word2013 +2026-04-22 14:07:48.8553|DEBUG|OnDoc|Word2013 +2026-04-22 14:07:49.1364|DEBUG|OnDoc|Generate_Word +2026-04-22 14:07:49.1481|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024278 +2026-04-22 14:07:49.1481|INFO|DocLog|Dokument über API erstellt +2026-04-22 14:07:49.1481|INFO|APIDocLog|Dok erstellt +2026-04-22 14:07:49.1481|INFO|APIDocLog|Attachment angefügt +2026-04-22 14:07:49.1481|DEBUG|OnDoc| +2026-04-22 14:07:49.1481|DEBUG|OnDoc| +2026-04-22 14:07:49.1481|DEBUG|OnDoc| +2026-04-22 14:07:49.1822|DEBUG|OnDoc| +2026-04-22 14:07:49.1822|DEBUG|OnDoc| +2026-04-22 14:07:49.1822|DEBUG|OnDoc| +2026-04-22 14:07:49.1822|DEBUG|OnDoc| +2026-04-22 14:07:49.1822|DEBUG|OnDoc| +2026-04-22 14:07:49.1822|DEBUG|OnDoc| +2026-04-22 14:07:49.1822|DEBUG|OnDoc| +2026-04-22 14:07:49.1822|DEBUG|OnDoc| +2026-04-22 14:07:49.2161|DEBUG|OnDoc| +2026-04-22 14:07:49.2614|DEBUG|OnDoc| +2026-04-22 14:07:49.2614|DEBUG|OnDoc| +2026-04-22 14:07:49.3608|DEBUG|OnDoc| +2026-04-22 14:07:49.3704|DEBUG|OnDoc| +2026-04-22 14:07:55.3438|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:07:55.3992|INFO|APIDocLog|CreateDoks Start +2026-04-22 14:07:55.8649|INFO|APIDocLog|Input Json +2026-04-22 14:07:55.8649|DEBUG|OnDoc|Start GenDoc +2026-04-22 14:07:55.8649|DEBUG|OnDoc| +2026-04-22 14:07:55.8649|DEBUG|OnDoc| +2026-04-22 14:07:55.8649|DEBUG|OnDoc| +2026-04-22 14:07:55.8649|DEBUG|OnDoc| +2026-04-22 14:07:55.8649|DEBUG|OnDoc| +2026-04-22 14:07:55.8649|DEBUG|OnDoc| +2026-04-22 14:07:55.8649|DEBUG|OnDoc| +2026-04-22 14:07:55.8649|DEBUG|OnDoc| +2026-04-22 14:07:55.8649|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8810|DEBUG|OnDoc| +2026-04-22 14:07:55.8962|DEBUG|OnDoc| +2026-04-22 14:07:55.8962|DEBUG|OnDoc| +2026-04-22 14:07:55.8962|DEBUG|OnDoc| +2026-04-22 14:07:55.8962|DEBUG|OnDoc| +2026-04-22 14:07:55.8962|DEBUG|OnDoc| +2026-04-22 14:07:55.8962|DEBUG|OnDoc| +2026-04-22 14:07:55.8962|DEBUG|OnDoc| +2026-04-22 14:07:55.9122|DEBUG|OnDoc| +2026-04-22 14:07:55.9122|DEBUG|OnDoc| +2026-04-22 14:07:55.9122|DEBUG|OnDoc| +2026-04-22 14:07:55.9122|DEBUG|OnDoc| +2026-04-22 14:07:55.9122|DEBUG|OnDoc| +2026-04-22 14:07:55.9122|DEBUG|OnDoc| +2026-04-22 14:07:55.9382|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 14:07:55.9382|DEBUG|OnDoc| +2026-04-22 14:07:55.9487|DEBUG|OnDoc| +2026-04-22 14:07:55.9487|DEBUG|OnDoc| +2026-04-22 14:07:55.9487|DEBUG|OnDoc| +2026-04-22 14:07:55.9487|DEBUG|OnDoc| +2026-04-22 14:07:55.9487|DEBUG|OnDoc| +2026-04-22 14:07:55.9591|DEBUG|OnDoc| +2026-04-22 14:07:55.9591|DEBUG|OnDoc| +2026-04-22 14:07:55.9591|DEBUG|OnDoc|Generate_Word +2026-04-22 14:07:55.9791|DEBUG|OnDoc|Word2013 +2026-04-22 14:07:55.9791|DEBUG|OnDoc|Word2013 +2026-04-22 14:07:56.2581|DEBUG|OnDoc|Generate_Word +2026-04-22 14:07:56.2581|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024283 +2026-04-22 14:07:56.2581|INFO|DocLog|Dokument über API erstellt +2026-04-22 14:07:56.2726|INFO|APIDocLog|Dok erstellt +2026-04-22 14:07:56.2726|INFO|APIDocLog|Attachment angefügt +2026-04-22 14:07:56.2726|DEBUG|OnDoc| +2026-04-22 14:07:56.2726|DEBUG|OnDoc| +2026-04-22 14:07:56.2726|DEBUG|OnDoc| +2026-04-22 14:07:56.2962|DEBUG|OnDoc| +2026-04-22 14:07:56.2962|DEBUG|OnDoc| +2026-04-22 14:07:56.2962|DEBUG|OnDoc| +2026-04-22 14:07:56.2962|DEBUG|OnDoc| +2026-04-22 14:07:56.2962|DEBUG|OnDoc| +2026-04-22 14:07:56.3029|DEBUG|OnDoc| +2026-04-22 14:07:56.3029|DEBUG|OnDoc| +2026-04-22 14:07:56.3029|DEBUG|OnDoc| +2026-04-22 14:07:56.3271|DEBUG|OnDoc| +2026-04-22 14:07:56.3736|DEBUG|OnDoc| +2026-04-22 14:07:56.3736|DEBUG|OnDoc| +2026-04-22 14:07:56.4298|DEBUG|OnDoc| +2026-04-22 14:07:56.4298|DEBUG|OnDoc| +2026-04-22 14:08:18.5572|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:08:18.6113|INFO|APIDocLog|CreateDoks Start +2026-04-22 14:08:19.2459|INFO|APIDocLog|Input Json +2026-04-22 14:08:19.2590|DEBUG|OnDoc|Start GenDoc +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2590|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2736|DEBUG|OnDoc| +2026-04-22 14:08:19.2890|DEBUG|OnDoc| +2026-04-22 14:08:19.2890|DEBUG|OnDoc| +2026-04-22 14:08:19.2890|DEBUG|OnDoc| +2026-04-22 14:08:19.2890|DEBUG|OnDoc| +2026-04-22 14:08:19.2890|DEBUG|OnDoc| +2026-04-22 14:08:19.2890|DEBUG|OnDoc| +2026-04-22 14:08:19.3113|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 14:08:19.3113|DEBUG|OnDoc| +2026-04-22 14:08:19.3113|DEBUG|OnDoc| +2026-04-22 14:08:19.3113|DEBUG|OnDoc| +2026-04-22 14:08:19.3113|DEBUG|OnDoc| +2026-04-22 14:08:19.3113|DEBUG|OnDoc| +2026-04-22 14:08:19.3241|DEBUG|OnDoc| +2026-04-22 14:08:19.3241|DEBUG|OnDoc| +2026-04-22 14:08:19.3241|DEBUG|OnDoc| +2026-04-22 14:08:19.3241|DEBUG|OnDoc|Generate_Word +2026-04-22 14:08:19.3374|DEBUG|OnDoc|Word2013 +2026-04-22 14:08:19.3374|DEBUG|OnDoc|Word2013 +2026-04-22 14:08:19.6169|DEBUG|OnDoc|Generate_Word +2026-04-22 14:08:19.6169|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024299 +2026-04-22 14:08:19.6169|INFO|DocLog|Dokument über API erstellt +2026-04-22 14:08:19.6169|INFO|APIDocLog|Dok erstellt +2026-04-22 14:08:19.6169|INFO|APIDocLog|Attachment angefügt +2026-04-22 14:08:19.6169|DEBUG|OnDoc| +2026-04-22 14:08:19.6319|DEBUG|OnDoc| +2026-04-22 14:08:19.6319|DEBUG|OnDoc| +2026-04-22 14:08:19.6550|DEBUG|OnDoc| +2026-04-22 14:08:19.6550|DEBUG|OnDoc| +2026-04-22 14:08:19.6550|DEBUG|OnDoc| +2026-04-22 14:08:19.6550|DEBUG|OnDoc| +2026-04-22 14:08:19.6550|DEBUG|OnDoc| +2026-04-22 14:08:19.6550|DEBUG|OnDoc| +2026-04-22 14:08:19.6550|DEBUG|OnDoc| +2026-04-22 14:08:19.6550|DEBUG|OnDoc| +2026-04-22 14:08:19.6835|DEBUG|OnDoc| +2026-04-22 14:08:19.7278|DEBUG|OnDoc| +2026-04-22 14:08:19.7278|DEBUG|OnDoc| +2026-04-22 14:08:19.8108|DEBUG|OnDoc| +2026-04-22 14:08:19.8206|DEBUG|OnDoc| +2026-04-22 14:09:12.5087|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:09:24.6274|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 14:09:24.6631|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 14:09:42.2491|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:09:54.3574|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 14:09:54.3929|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 14:10:12.1261|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:10:24.2341|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-22 14:10:24.2690|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-22 14:10:43.4572|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:10:43.5108|INFO|APIDocLog|CreateDoks Start +2026-04-22 14:10:44.1267|INFO|APIDocLog|Input Json +2026-04-22 14:10:44.1397|DEBUG|OnDoc|Start GenDoc +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1397|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1469|DEBUG|OnDoc| +2026-04-22 14:10:44.1740|DEBUG|OnDoc| +2026-04-22 14:10:44.1740|DEBUG|OnDoc| +2026-04-22 14:10:44.1861|DEBUG|OnDoc| +2026-04-22 14:10:44.1861|DEBUG|OnDoc| +2026-04-22 14:10:44.1861|DEBUG|OnDoc| +2026-04-22 14:10:44.1861|DEBUG|OnDoc| +2026-04-22 14:10:44.2015|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 14:10:44.2015|DEBUG|OnDoc| +2026-04-22 14:10:44.2096|DEBUG|OnDoc| +2026-04-22 14:10:44.2096|DEBUG|OnDoc| +2026-04-22 14:10:44.2096|DEBUG|OnDoc| +2026-04-22 14:10:44.2096|DEBUG|OnDoc| +2026-04-22 14:10:44.2096|DEBUG|OnDoc| +2026-04-22 14:10:44.2096|DEBUG|OnDoc| +2026-04-22 14:10:44.2258|DEBUG|OnDoc| +2026-04-22 14:10:44.2258|DEBUG|OnDoc|Generate_Word +2026-04-22 14:10:44.2258|DEBUG|OnDoc|Word2013 +2026-04-22 14:10:44.2258|DEBUG|OnDoc|Word2013 +2026-04-22 14:10:44.5147|DEBUG|OnDoc|Generate_Word +2026-04-22 14:10:44.5252|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024306 +2026-04-22 14:10:44.5252|INFO|DocLog|Dokument über API erstellt +2026-04-22 14:10:44.5252|INFO|APIDocLog|Dok erstellt +2026-04-22 14:10:44.5252|INFO|APIDocLog|Attachment angefügt +2026-04-22 14:10:44.5252|DEBUG|OnDoc| +2026-04-22 14:10:44.5252|DEBUG|OnDoc| +2026-04-22 14:10:44.5252|DEBUG|OnDoc| +2026-04-22 14:10:44.5614|DEBUG|OnDoc| +2026-04-22 14:10:44.5614|DEBUG|OnDoc| +2026-04-22 14:10:44.5614|DEBUG|OnDoc| +2026-04-22 14:10:44.5614|DEBUG|OnDoc| +2026-04-22 14:10:44.5614|DEBUG|OnDoc| +2026-04-22 14:10:44.5684|DEBUG|OnDoc| +2026-04-22 14:10:44.5684|DEBUG|OnDoc| +2026-04-22 14:10:44.5684|DEBUG|OnDoc| +2026-04-22 14:10:44.5929|DEBUG|OnDoc| +2026-04-22 14:10:44.6320|DEBUG|OnDoc| +2026-04-22 14:10:44.6320|DEBUG|OnDoc| +2026-04-22 14:10:44.6878|DEBUG|OnDoc| +2026-04-22 14:10:44.6878|DEBUG|OnDoc| +2026-04-22 14:11:01.2818|INFO|APIDocLog|DokumentGegnerator Start +2026-04-22 14:11:01.3357|INFO|APIDocLog|CreateDoks Start +2026-04-22 14:11:01.8975|INFO|APIDocLog|Input Json +2026-04-22 14:11:01.8975|DEBUG|OnDoc|Start GenDoc +2026-04-22 14:11:01.8975|DEBUG|OnDoc| +2026-04-22 14:11:01.8975|DEBUG|OnDoc| +2026-04-22 14:11:01.8975|DEBUG|OnDoc| +2026-04-22 14:11:01.8975|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9123|DEBUG|OnDoc| +2026-04-22 14:11:01.9283|DEBUG|OnDoc| +2026-04-22 14:11:01.9283|DEBUG|OnDoc| +2026-04-22 14:11:01.9283|DEBUG|OnDoc| +2026-04-22 14:11:01.9283|DEBUG|OnDoc| +2026-04-22 14:11:01.9283|DEBUG|OnDoc| +2026-04-22 14:11:01.9283|DEBUG|OnDoc| +2026-04-22 14:11:01.9430|DEBUG|OnDoc| +2026-04-22 14:11:01.9430|DEBUG|OnDoc| +2026-04-22 14:11:01.9430|DEBUG|OnDoc| +2026-04-22 14:11:01.9430|DEBUG|OnDoc| +2026-04-22 14:11:01.9430|DEBUG|OnDoc| +2026-04-22 14:11:01.9430|DEBUG|OnDoc| +2026-04-22 14:11:01.9699|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-22 14:11:01.9699|DEBUG|OnDoc| +2026-04-22 14:11:01.9800|DEBUG|OnDoc| +2026-04-22 14:11:01.9800|DEBUG|OnDoc| +2026-04-22 14:11:01.9800|DEBUG|OnDoc| +2026-04-22 14:11:01.9800|DEBUG|OnDoc| +2026-04-22 14:11:01.9800|DEBUG|OnDoc| +2026-04-22 14:11:01.9800|DEBUG|OnDoc| +2026-04-22 14:11:01.9956|DEBUG|OnDoc| +2026-04-22 14:11:01.9956|DEBUG|OnDoc|Generate_Word +2026-04-22 14:11:01.9956|DEBUG|OnDoc|Word2013 +2026-04-22 14:11:02.0058|DEBUG|OnDoc|Word2013 +2026-04-22 14:11:02.2801|DEBUG|OnDoc|Generate_Word +2026-04-22 14:11:02.2922|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024314 +2026-04-22 14:11:02.2922|INFO|DocLog|Dokument über API erstellt +2026-04-22 14:11:02.2922|INFO|APIDocLog|Dok erstellt +2026-04-22 14:11:02.2922|INFO|APIDocLog|Attachment angefügt +2026-04-22 14:11:02.2922|DEBUG|OnDoc| +2026-04-22 14:11:02.2922|DEBUG|OnDoc| +2026-04-22 14:11:02.2922|DEBUG|OnDoc| +2026-04-22 14:11:02.3255|DEBUG|OnDoc| +2026-04-22 14:11:02.3255|DEBUG|OnDoc| +2026-04-22 14:11:02.3255|DEBUG|OnDoc| +2026-04-22 14:11:02.3255|DEBUG|OnDoc| +2026-04-22 14:11:02.3255|DEBUG|OnDoc| +2026-04-22 14:11:02.3255|DEBUG|OnDoc| +2026-04-22 14:11:02.3255|DEBUG|OnDoc| +2026-04-22 14:11:02.3340|DEBUG|OnDoc| +2026-04-22 14:11:02.3607|DEBUG|OnDoc| +2026-04-22 14:11:02.4021|DEBUG|OnDoc| +2026-04-22 14:11:02.4021|DEBUG|OnDoc| +2026-04-22 14:11:02.4590|DEBUG|OnDoc| +2026-04-22 14:11:02.4590|DEBUG|OnDoc| +2026-04-23 10:48:11.0891|DEBUG|OnDoc| +2026-04-23 10:48:11.2037|DEBUG|OnDoc| +2026-04-23 10:48:11.2062|DEBUG|OnDoc| +2026-04-23 10:48:11.2062|DEBUG|OnDoc| +2026-04-23 10:48:16.6447|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 10:48:16.9547|INFO|APIDocLog|CreateDoks Start +2026-04-23 10:48:20.4179|INFO|APIDocLog|Input Json +2026-04-23 10:48:20.4315|DEBUG|OnDoc|Start GenDoc +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4315|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4400|DEBUG|OnDoc| +2026-04-23 10:48:20.4664|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.4714|DEBUG|OnDoc| +2026-04-23 10:48:20.5209|DEBUG|OnDoc| +2026-04-23 10:48:20.5209|DEBUG|OnDoc| +2026-04-23 10:48:20.5516|DEBUG|OnDoc| +2026-04-23 10:48:20.5516|DEBUG|OnDoc| +2026-04-23 10:48:20.5516|DEBUG|OnDoc| +2026-04-23 10:48:20.5516|DEBUG|OnDoc| +2026-04-23 10:48:20.5756|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 10:48:20.5756|DEBUG|OnDoc| +2026-04-23 10:48:20.5843|DEBUG|OnDoc| +2026-04-23 10:48:20.5843|DEBUG|OnDoc| +2026-04-23 10:48:20.5843|DEBUG|OnDoc| +2026-04-23 10:48:20.5843|DEBUG|OnDoc| +2026-04-23 10:48:20.5843|DEBUG|OnDoc| +2026-04-23 10:48:20.5843|DEBUG|OnDoc| +2026-04-23 10:48:20.6018|DEBUG|OnDoc| +2026-04-23 10:48:20.6018|DEBUG|OnDoc|Generate_Word +2026-04-23 10:48:21.0890|DEBUG|OnDoc|Word2013 +2026-04-23 10:48:21.1065|DEBUG|OnDoc|Word2013 +2026-04-23 10:48:22.2345|DEBUG|OnDoc|Generate_Word +2026-04-23 10:48:22.2840|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024322 +2026-04-23 10:48:22.2840|INFO|DocLog|Dokument über API erstellt +2026-04-23 10:48:22.2840|INFO|APIDocLog|Dok erstellt +2026-04-23 10:48:22.2840|INFO|APIDocLog|Attachment angefügt +2026-04-23 10:48:22.2840|DEBUG|OnDoc| +2026-04-23 10:48:22.2840|DEBUG|OnDoc| +2026-04-23 10:48:22.2840|DEBUG|OnDoc| +2026-04-23 10:48:22.3260|DEBUG|OnDoc| +2026-04-23 10:48:22.3260|DEBUG|OnDoc| +2026-04-23 10:48:22.3330|DEBUG|OnDoc| +2026-04-23 10:48:22.3330|DEBUG|OnDoc| +2026-04-23 10:48:22.3330|DEBUG|OnDoc| +2026-04-23 10:48:22.3330|DEBUG|OnDoc| +2026-04-23 10:48:22.3330|DEBUG|OnDoc| +2026-04-23 10:48:22.3330|DEBUG|OnDoc| +2026-04-23 10:48:22.3616|DEBUG|OnDoc| +2026-04-23 10:48:22.7320|DEBUG|OnDoc| +2026-04-23 10:48:22.7415|DEBUG|OnDoc| +2026-04-23 10:49:44.2052|DEBUG|OnDoc| +2026-04-23 10:49:44.2458|DEBUG|OnDoc| +2026-04-23 10:49:44.2800|DEBUG|OnDoc| +2026-04-23 10:49:44.2846|DEBUG|OnDoc| +2026-04-23 10:49:46.3884|DEBUG|OnDoc| +2026-04-23 10:49:46.3884|DEBUG|OnDoc| +2026-04-23 10:49:46.3884|DEBUG|OnDoc| +2026-04-23 10:49:46.3939|DEBUG|OnDoc| +2026-04-23 10:49:53.9929|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 10:49:54.0348|INFO|APIDocLog|CreateDoks Start +2026-04-23 10:49:54.0617|INFO|APIDocLog|Input Json +2026-04-23 10:49:54.0737|DEBUG|OnDoc|Start GenDoc +2026-04-23 10:49:54.0737|DEBUG|OnDoc| +2026-04-23 10:49:54.0737|DEBUG|OnDoc| +2026-04-23 10:49:54.0737|DEBUG|OnDoc| +2026-04-23 10:49:54.0737|DEBUG|OnDoc| +2026-04-23 10:49:54.0737|DEBUG|OnDoc| +2026-04-23 10:49:54.0737|DEBUG|OnDoc| +2026-04-23 10:49:54.0737|DEBUG|OnDoc| +2026-04-23 10:49:54.0737|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0807|DEBUG|OnDoc| +2026-04-23 10:49:54.0967|DEBUG|OnDoc| +2026-04-23 10:49:54.0967|DEBUG|OnDoc| +2026-04-23 10:49:54.0967|DEBUG|OnDoc| +2026-04-23 10:49:54.1131|DEBUG|OnDoc| +2026-04-23 10:49:54.1282|DEBUG|OnDoc| +2026-04-23 10:49:54.1282|DEBUG|OnDoc| +2026-04-23 10:49:54.1282|DEBUG|OnDoc| +2026-04-23 10:49:54.1282|DEBUG|OnDoc| +2026-04-23 10:49:54.1514|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 10:49:54.1514|DEBUG|OnDoc| +2026-04-23 10:49:54.1609|DEBUG|OnDoc| +2026-04-23 10:49:54.1609|DEBUG|OnDoc| +2026-04-23 10:49:54.1609|DEBUG|OnDoc| +2026-04-23 10:49:54.1609|DEBUG|OnDoc| +2026-04-23 10:49:54.1609|DEBUG|OnDoc| +2026-04-23 10:49:54.1609|DEBUG|OnDoc| +2026-04-23 10:49:54.1765|DEBUG|OnDoc| +2026-04-23 10:49:54.1765|DEBUG|OnDoc|Generate_Word +2026-04-23 10:49:54.1765|DEBUG|OnDoc|Word2013 +2026-04-23 10:49:54.1765|DEBUG|OnDoc|Word2013 +2026-04-23 10:49:54.4856|DEBUG|OnDoc|Generate_Word +2026-04-23 10:49:54.4984|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024338 +2026-04-23 10:49:54.4984|INFO|DocLog|Dokument über API erstellt +2026-04-23 10:49:54.4984|INFO|APIDocLog|Dok erstellt +2026-04-23 10:49:54.5030|INFO|APIDocLog|Attachment angefügt +2026-04-23 10:49:54.5030|DEBUG|OnDoc| +2026-04-23 10:49:54.5030|DEBUG|OnDoc| +2026-04-23 10:49:54.5030|DEBUG|OnDoc| +2026-04-23 10:49:54.5446|DEBUG|OnDoc| +2026-04-23 10:49:54.5446|DEBUG|OnDoc| +2026-04-23 10:49:54.5500|DEBUG|OnDoc| +2026-04-23 10:49:54.5500|DEBUG|OnDoc| +2026-04-23 10:49:54.5500|DEBUG|OnDoc| +2026-04-23 10:49:54.5500|DEBUG|OnDoc| +2026-04-23 10:49:54.5500|DEBUG|OnDoc| +2026-04-23 10:49:54.5500|DEBUG|OnDoc| +2026-04-23 10:49:54.5854|DEBUG|OnDoc| +2026-04-23 10:49:54.6430|DEBUG|OnDoc| +2026-04-23 10:49:54.6471|DEBUG|OnDoc| +2026-04-23 10:49:59.3368|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. stefan.hutter@tkb.ch +2026-04-23 10:49:59.3513|DEBUG|OnDoc| +2026-04-23 10:49:59.3743|DEBUG|OnDoc| +2026-04-23 10:49:59.4159|DEBUG|OnDoc| +2026-04-23 10:49:59.4159|DEBUG|OnDoc| +2026-04-23 10:49:59.4159|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-23 10:49:59.4159|INFO|DocLog|Versandpaket vorbereitet +2026-04-23 10:49:59.4249|INFO|APIDocLog|Dokumentpaket abgeschlossen +2026-04-23 10:50:00.9571|DEBUG|OnDoc| +2026-04-23 10:50:00.9571|DEBUG|OnDoc| +2026-04-23 10:50:00.9571|DEBUG|OnDoc| +2026-04-23 10:50:00.9571|DEBUG|OnDoc| +2026-04-23 10:50:13.0233|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. stefan.hutter@tkb.ch +2026-04-23 10:50:13.0233|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-23 10:50:13.0337|INFO|DocLog|Versandpaket vorbereitet +2026-04-23 10:50:13.0337|INFO|APIDocLog|Dokumentpaket abgeschlossen +2026-04-23 10:50:16.9352|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 10:50:16.9986|INFO|APIDocLog|CreateDoks Start +2026-04-23 10:50:17.0182|INFO|APIDocLog|Input Json +2026-04-23 10:50:17.0182|DEBUG|OnDoc|Start GenDoc +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0182|DEBUG|OnDoc| +2026-04-23 10:50:17.0346|DEBUG|OnDoc| +2026-04-23 10:50:17.0346|DEBUG|OnDoc| +2026-04-23 10:50:17.0346|DEBUG|OnDoc| +2026-04-23 10:50:17.0346|DEBUG|OnDoc| +2026-04-23 10:50:17.0346|DEBUG|OnDoc| +2026-04-23 10:50:17.0346|DEBUG|OnDoc| +2026-04-23 10:50:17.0346|DEBUG|OnDoc| +2026-04-23 10:50:17.0346|DEBUG|OnDoc| +2026-04-23 10:50:17.0346|DEBUG|OnDoc| +2026-04-23 10:50:17.0346|DEBUG|OnDoc| +2026-04-23 10:50:17.0500|DEBUG|OnDoc| +2026-04-23 10:50:17.0500|DEBUG|OnDoc| +2026-04-23 10:50:17.0500|DEBUG|OnDoc| +2026-04-23 10:50:17.0500|DEBUG|OnDoc| +2026-04-23 10:50:17.0500|DEBUG|OnDoc| +2026-04-23 10:50:17.0697|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 10:50:17.0697|DEBUG|OnDoc| +2026-04-23 10:50:17.0697|DEBUG|OnDoc| +2026-04-23 10:50:17.0697|DEBUG|OnDoc| +2026-04-23 10:50:17.0697|DEBUG|OnDoc| +2026-04-23 10:50:17.0697|DEBUG|OnDoc| +2026-04-23 10:50:17.0904|DEBUG|OnDoc| +2026-04-23 10:50:17.0904|DEBUG|OnDoc| +2026-04-23 10:50:17.0988|DEBUG|OnDoc| +2026-04-23 10:50:17.0988|DEBUG|OnDoc|Generate_Word +2026-04-23 10:50:17.0988|DEBUG|OnDoc|Word2013 +2026-04-23 10:50:17.0988|DEBUG|OnDoc|Word2013 +2026-04-23 10:50:17.3839|DEBUG|OnDoc|Generate_Word +2026-04-23 10:50:17.3955|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024343 +2026-04-23 10:50:17.3955|INFO|DocLog|Dokument über API erstellt +2026-04-23 10:50:17.3955|INFO|APIDocLog|Dok erstellt +2026-04-23 10:50:17.3955|INFO|APIDocLog|Attachment angefügt +2026-04-23 10:50:17.3955|DEBUG|OnDoc| +2026-04-23 10:50:17.3955|DEBUG|OnDoc| +2026-04-23 10:50:17.3955|DEBUG|OnDoc| +2026-04-23 10:50:17.4293|DEBUG|OnDoc| +2026-04-23 10:50:17.4293|DEBUG|OnDoc| +2026-04-23 10:50:17.4293|DEBUG|OnDoc| +2026-04-23 10:50:17.4293|DEBUG|OnDoc| +2026-04-23 10:50:17.4293|DEBUG|OnDoc| +2026-04-23 10:50:17.4293|DEBUG|OnDoc| +2026-04-23 10:50:17.4293|DEBUG|OnDoc| +2026-04-23 10:50:17.4293|DEBUG|OnDoc| +2026-04-23 10:50:17.4684|DEBUG|OnDoc| +2026-04-23 10:50:17.5151|DEBUG|OnDoc| +2026-04-23 10:50:17.5191|DEBUG|OnDoc| +2026-04-23 10:50:24.8453|DEBUG|OnDoc| +2026-04-23 10:50:24.8821|DEBUG|OnDoc| +2026-04-23 10:50:24.8821|DEBUG|OnDoc| +2026-04-23 10:50:24.8930|DEBUG|OnDoc| +2026-04-23 10:50:26.5525|DEBUG|OnDoc| +2026-04-23 10:50:26.5525|DEBUG|OnDoc| +2026-04-23 10:50:26.5525|DEBUG|OnDoc| +2026-04-23 10:50:26.5525|DEBUG|OnDoc| +2026-04-23 10:50:38.6246|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. stefan.hutter@tkb.ch +2026-04-23 10:50:38.6606|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-23 10:50:38.6606|INFO|DocLog|Versandpaket vorbereitet +2026-04-23 10:50:38.6606|INFO|APIDocLog|Dokumentpaket abgeschlossen +2026-04-23 10:50:49.1638|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 10:50:49.2233|INFO|APIDocLog|CreateDoks Start +2026-04-23 10:50:49.2443|INFO|APIDocLog|Input Json +2026-04-23 10:50:49.2443|DEBUG|OnDoc|Start GenDoc +2026-04-23 10:50:49.2443|DEBUG|OnDoc| +2026-04-23 10:50:49.2443|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2529|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2692|DEBUG|OnDoc| +2026-04-23 10:50:49.2839|DEBUG|OnDoc| +2026-04-23 10:50:49.2839|DEBUG|OnDoc| +2026-04-23 10:50:49.2839|DEBUG|OnDoc| +2026-04-23 10:50:49.2839|DEBUG|OnDoc| +2026-04-23 10:50:49.2839|DEBUG|OnDoc| +2026-04-23 10:50:49.2839|DEBUG|OnDoc| +2026-04-23 10:50:49.2839|DEBUG|OnDoc| +2026-04-23 10:50:49.3003|DEBUG|OnDoc| +2026-04-23 10:50:49.3163|DEBUG|OnDoc| +2026-04-23 10:50:49.3163|DEBUG|OnDoc| +2026-04-23 10:50:49.3163|DEBUG|OnDoc| +2026-04-23 10:50:49.3163|DEBUG|OnDoc| +2026-04-23 10:50:49.3338|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 10:50:49.3338|DEBUG|OnDoc| +2026-04-23 10:50:49.3479|DEBUG|OnDoc| +2026-04-23 10:50:49.3479|DEBUG|OnDoc| +2026-04-23 10:50:49.3479|DEBUG|OnDoc| +2026-04-23 10:50:49.3479|DEBUG|OnDoc| +2026-04-23 10:50:49.3479|DEBUG|OnDoc| +2026-04-23 10:50:49.3479|DEBUG|OnDoc| +2026-04-23 10:50:49.3704|DEBUG|OnDoc| +2026-04-23 10:50:49.3704|DEBUG|OnDoc|Generate_Word +2026-04-23 10:50:49.3800|DEBUG|OnDoc|Word2013 +2026-04-23 10:50:49.3800|DEBUG|OnDoc|Word2013 +2026-04-23 10:50:49.6692|DEBUG|OnDoc|Generate_Word +2026-04-23 10:50:49.6817|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024359 +2026-04-23 10:50:49.6817|INFO|DocLog|Dokument über API erstellt +2026-04-23 10:50:49.6817|INFO|APIDocLog|Dok erstellt +2026-04-23 10:50:49.6817|INFO|APIDocLog|Attachment angefügt +2026-04-23 10:50:49.6817|DEBUG|OnDoc| +2026-04-23 10:50:49.6954|DEBUG|OnDoc| +2026-04-23 10:50:49.6954|DEBUG|OnDoc| +2026-04-23 10:50:49.7258|DEBUG|OnDoc| +2026-04-23 10:50:49.7258|DEBUG|OnDoc| +2026-04-23 10:50:49.7258|DEBUG|OnDoc| +2026-04-23 10:50:49.7258|DEBUG|OnDoc| +2026-04-23 10:50:49.7371|DEBUG|OnDoc| +2026-04-23 10:50:49.7371|DEBUG|OnDoc| +2026-04-23 10:50:49.7371|DEBUG|OnDoc| +2026-04-23 10:50:49.7371|DEBUG|OnDoc| +2026-04-23 10:50:49.7731|DEBUG|OnDoc| +2026-04-23 10:50:49.8343|DEBUG|OnDoc| +2026-04-23 10:50:49.8343|DEBUG|OnDoc| +2026-04-23 10:50:57.3931|DEBUG|OnDoc| +2026-04-23 10:50:57.4300|DEBUG|OnDoc| +2026-04-23 10:51:19.0981|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 10:51:19.1656|INFO|APIDocLog|CreateDoks Start +2026-04-23 10:51:19.2023|INFO|APIDocLog|Input Json +2026-04-23 10:51:19.2023|DEBUG|OnDoc|Start GenDoc +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2063|DEBUG|OnDoc| +2026-04-23 10:51:19.2343|DEBUG|OnDoc| +2026-04-23 10:51:19.2343|DEBUG|OnDoc| +2026-04-23 10:51:19.2439|DEBUG|OnDoc| +2026-04-23 10:51:19.2439|DEBUG|OnDoc| +2026-04-23 10:51:19.2439|DEBUG|OnDoc| +2026-04-23 10:51:19.2439|DEBUG|OnDoc| +2026-04-23 10:51:19.2605|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 10:51:19.2605|DEBUG|OnDoc| +2026-04-23 10:51:19.2721|DEBUG|OnDoc| +2026-04-23 10:51:19.2721|DEBUG|OnDoc| +2026-04-23 10:51:19.2721|DEBUG|OnDoc| +2026-04-23 10:51:19.2721|DEBUG|OnDoc| +2026-04-23 10:51:19.2721|DEBUG|OnDoc| +2026-04-23 10:51:19.2721|DEBUG|OnDoc| +2026-04-23 10:51:19.2721|DEBUG|OnDoc| +2026-04-23 10:51:19.2844|DEBUG|OnDoc|Generate_Word +2026-04-23 10:51:19.2844|DEBUG|OnDoc|Word2013 +2026-04-23 10:51:19.2844|DEBUG|OnDoc|Word2013 +2026-04-23 10:51:19.6041|DEBUG|OnDoc|Generate_Word +2026-04-23 10:51:19.6165|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024367 +2026-04-23 10:51:19.6165|INFO|DocLog|Dokument über API erstellt +2026-04-23 10:51:19.6165|INFO|APIDocLog|Dok erstellt +2026-04-23 10:51:19.6165|INFO|APIDocLog|Attachment angefügt +2026-04-23 10:51:19.6165|DEBUG|OnDoc| +2026-04-23 10:51:19.6165|DEBUG|OnDoc| +2026-04-23 10:51:19.6165|DEBUG|OnDoc| +2026-04-23 10:51:19.6517|DEBUG|OnDoc| +2026-04-23 10:51:19.6517|DEBUG|OnDoc| +2026-04-23 10:51:19.6517|DEBUG|OnDoc| +2026-04-23 10:51:19.6597|DEBUG|OnDoc| +2026-04-23 10:51:19.6597|DEBUG|OnDoc| +2026-04-23 10:51:19.6597|DEBUG|OnDoc| +2026-04-23 10:51:19.6597|DEBUG|OnDoc| +2026-04-23 10:51:19.6597|DEBUG|OnDoc| +2026-04-23 10:51:19.6883|DEBUG|OnDoc| +2026-04-23 10:51:19.7382|DEBUG|OnDoc| +2026-04-23 10:51:19.7382|DEBUG|OnDoc| +2026-04-23 10:51:23.7276|DEBUG|OnDoc| +2026-04-23 10:51:23.7654|DEBUG|OnDoc| +2026-04-23 10:51:40.4974|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 10:51:40.5590|INFO|APIDocLog|CreateDoks Start +2026-04-23 10:51:40.5870|INFO|APIDocLog|Input Json +2026-04-23 10:51:40.5870|DEBUG|OnDoc|Start GenDoc +2026-04-23 10:51:40.5870|DEBUG|OnDoc| +2026-04-23 10:51:40.5870|DEBUG|OnDoc| +2026-04-23 10:51:40.5870|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.5963|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6123|DEBUG|OnDoc| +2026-04-23 10:51:40.6354|DEBUG|OnDoc| +2026-04-23 10:51:40.6354|DEBUG|OnDoc| +2026-04-23 10:51:40.6543|DEBUG|OnDoc| +2026-04-23 10:51:40.6543|DEBUG|OnDoc| +2026-04-23 10:51:40.6543|DEBUG|OnDoc| +2026-04-23 10:51:40.6588|DEBUG|OnDoc| +2026-04-23 10:51:40.6748|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 10:51:40.6748|DEBUG|OnDoc| +2026-04-23 10:51:40.6748|DEBUG|OnDoc| +2026-04-23 10:51:40.6748|DEBUG|OnDoc| +2026-04-23 10:51:40.6919|DEBUG|OnDoc| +2026-04-23 10:51:40.6919|DEBUG|OnDoc| +2026-04-23 10:51:40.6919|DEBUG|OnDoc| +2026-04-23 10:51:40.6919|DEBUG|OnDoc| +2026-04-23 10:51:40.7105|DEBUG|OnDoc| +2026-04-23 10:51:40.7105|DEBUG|OnDoc|Generate_Word +2026-04-23 10:51:40.7213|DEBUG|OnDoc|Word2013 +2026-04-23 10:51:40.7213|DEBUG|OnDoc|Word2013 +2026-04-23 10:51:41.0462|DEBUG|OnDoc|Generate_Word +2026-04-23 10:51:41.0598|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024375 +2026-04-23 10:51:41.0598|INFO|DocLog|Dokument über API erstellt +2026-04-23 10:51:41.0598|INFO|APIDocLog|Dok erstellt +2026-04-23 10:51:41.0598|INFO|APIDocLog|Attachment angefügt +2026-04-23 10:51:41.0598|DEBUG|OnDoc| +2026-04-23 10:51:41.0689|DEBUG|OnDoc| +2026-04-23 10:51:41.0689|DEBUG|OnDoc| +2026-04-23 10:51:41.0957|DEBUG|OnDoc| +2026-04-23 10:51:41.0987|DEBUG|OnDoc| +2026-04-23 10:51:41.0987|DEBUG|OnDoc| +2026-04-23 10:51:41.0987|DEBUG|OnDoc| +2026-04-23 10:51:41.0987|DEBUG|OnDoc| +2026-04-23 10:51:41.0987|DEBUG|OnDoc| +2026-04-23 10:51:41.0987|DEBUG|OnDoc| +2026-04-23 10:51:41.0987|DEBUG|OnDoc| +2026-04-23 10:51:41.1273|DEBUG|OnDoc| +2026-04-23 10:51:41.2347|DEBUG|OnDoc| +2026-04-23 10:51:41.2477|DEBUG|OnDoc| +2026-04-23 10:51:49.7469|DEBUG|OnDoc| +2026-04-23 10:51:49.7838|DEBUG|OnDoc| +2026-04-23 10:58:36.2816|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 10:58:36.3671|INFO|APIDocLog|CreateDoks Start +2026-04-23 10:58:36.3970|INFO|APIDocLog|Input Json +2026-04-23 10:58:36.3970|DEBUG|OnDoc|Start GenDoc +2026-04-23 10:58:36.3970|DEBUG|OnDoc| +2026-04-23 10:58:36.3970|DEBUG|OnDoc| +2026-04-23 10:58:36.3970|DEBUG|OnDoc| +2026-04-23 10:58:36.3970|DEBUG|OnDoc| +2026-04-23 10:58:36.3970|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4096|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4251|DEBUG|OnDoc| +2026-04-23 10:58:36.4403|DEBUG|OnDoc| +2026-04-23 10:58:36.4688|DEBUG|OnDoc| +2026-04-23 10:58:36.4688|DEBUG|OnDoc| +2026-04-23 10:58:36.4845|DEBUG|OnDoc| +2026-04-23 10:58:36.4845|DEBUG|OnDoc| +2026-04-23 10:58:36.4880|DEBUG|OnDoc| +2026-04-23 10:58:36.4880|DEBUG|OnDoc| +2026-04-23 10:58:36.5103|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 10:58:36.5103|DEBUG|OnDoc| +2026-04-23 10:58:36.5187|DEBUG|OnDoc| +2026-04-23 10:58:36.5187|DEBUG|OnDoc| +2026-04-23 10:58:36.5187|DEBUG|OnDoc| +2026-04-23 10:58:36.5187|DEBUG|OnDoc| +2026-04-23 10:58:36.5187|DEBUG|OnDoc| +2026-04-23 10:58:36.5187|DEBUG|OnDoc| +2026-04-23 10:58:36.5364|DEBUG|OnDoc| +2026-04-23 10:58:36.5364|DEBUG|OnDoc|Generate_Word +2026-04-23 10:58:36.5515|DEBUG|OnDoc|Word2013 +2026-04-23 10:58:36.5515|DEBUG|OnDoc|Word2013 +2026-04-23 10:58:37.0053|DEBUG|OnDoc|Generate_Word +2026-04-23 10:58:37.0053|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024380 +2026-04-23 10:58:37.0183|INFO|DocLog|Dokument über API erstellt +2026-04-23 10:58:37.0183|INFO|APIDocLog|Dok erstellt +2026-04-23 10:58:37.0183|INFO|APIDocLog|Attachment angefügt +2026-04-23 10:58:37.0183|DEBUG|OnDoc| +2026-04-23 10:58:37.0183|DEBUG|OnDoc| +2026-04-23 10:58:37.0183|DEBUG|OnDoc| +2026-04-23 10:58:37.0558|DEBUG|OnDoc| +2026-04-23 10:58:37.0558|DEBUG|OnDoc| +2026-04-23 10:58:37.0558|DEBUG|OnDoc| +2026-04-23 10:58:37.0558|DEBUG|OnDoc| +2026-04-23 10:58:37.0558|DEBUG|OnDoc| +2026-04-23 10:58:37.0667|DEBUG|OnDoc| +2026-04-23 10:58:37.0667|DEBUG|OnDoc| +2026-04-23 10:58:37.0667|DEBUG|OnDoc| +2026-04-23 10:58:37.1018|DEBUG|OnDoc| +2026-04-23 10:58:37.1815|DEBUG|OnDoc| +2026-04-23 10:58:37.1922|DEBUG|OnDoc| +2026-04-23 10:58:41.3322|DEBUG|OnDoc| +2026-04-23 10:58:41.3690|DEBUG|OnDoc| +2026-04-23 10:59:05.6269|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 10:59:05.6877|INFO|APIDocLog|CreateDoks Start +2026-04-23 10:59:05.7112|INFO|APIDocLog|Input Json +2026-04-23 10:59:05.7112|DEBUG|OnDoc|Start GenDoc +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7112|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7213|DEBUG|OnDoc| +2026-04-23 10:59:05.7510|DEBUG|OnDoc| +2026-04-23 10:59:05.7510|DEBUG|OnDoc| +2026-04-23 10:59:05.7615|DEBUG|OnDoc| +2026-04-23 10:59:05.7615|DEBUG|OnDoc| +2026-04-23 10:59:05.7615|DEBUG|OnDoc| +2026-04-23 10:59:05.7615|DEBUG|OnDoc| +2026-04-23 10:59:05.7796|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 10:59:05.7796|DEBUG|OnDoc| +2026-04-23 10:59:05.7893|DEBUG|OnDoc| +2026-04-23 10:59:05.7893|DEBUG|OnDoc| +2026-04-23 10:59:05.7893|DEBUG|OnDoc| +2026-04-23 10:59:05.7893|DEBUG|OnDoc| +2026-04-23 10:59:05.7893|DEBUG|OnDoc| +2026-04-23 10:59:05.7893|DEBUG|OnDoc| +2026-04-23 10:59:05.8026|DEBUG|OnDoc| +2026-04-23 10:59:05.8026|DEBUG|OnDoc|Generate_Word +2026-04-23 10:59:05.8026|DEBUG|OnDoc|Word2013 +2026-04-23 10:59:05.8026|DEBUG|OnDoc|Word2013 +2026-04-23 10:59:06.1497|DEBUG|OnDoc|Generate_Word +2026-04-23 10:59:06.1606|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024391 +2026-04-23 10:59:06.1606|INFO|DocLog|Dokument über API erstellt +2026-04-23 10:59:06.1606|INFO|APIDocLog|Dok erstellt +2026-04-23 10:59:06.1606|INFO|APIDocLog|Attachment angefügt +2026-04-23 10:59:06.1606|DEBUG|OnDoc| +2026-04-23 10:59:06.1606|DEBUG|OnDoc| +2026-04-23 10:59:06.1606|DEBUG|OnDoc| +2026-04-23 10:59:06.1929|DEBUG|OnDoc| +2026-04-23 10:59:06.1929|DEBUG|OnDoc| +2026-04-23 10:59:06.1929|DEBUG|OnDoc| +2026-04-23 10:59:06.1929|DEBUG|OnDoc| +2026-04-23 10:59:06.1929|DEBUG|OnDoc| +2026-04-23 10:59:06.1929|DEBUG|OnDoc| +2026-04-23 10:59:06.1929|DEBUG|OnDoc| +2026-04-23 10:59:06.1929|DEBUG|OnDoc| +2026-04-23 10:59:06.2229|DEBUG|OnDoc| +2026-04-23 10:59:06.2690|DEBUG|OnDoc| +2026-04-23 10:59:06.2690|DEBUG|OnDoc| +2026-04-23 10:59:10.0905|DEBUG|OnDoc| +2026-04-23 10:59:10.1272|DEBUG|OnDoc| +2026-04-23 10:59:38.2292|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 10:59:38.2929|INFO|APIDocLog|CreateDoks Start +2026-04-23 10:59:38.3191|INFO|APIDocLog|Input Json +2026-04-23 10:59:38.3191|DEBUG|OnDoc|Start GenDoc +2026-04-23 10:59:38.3191|DEBUG|OnDoc| +2026-04-23 10:59:38.3191|DEBUG|OnDoc| +2026-04-23 10:59:38.3191|DEBUG|OnDoc| +2026-04-23 10:59:38.3191|DEBUG|OnDoc| +2026-04-23 10:59:38.3191|DEBUG|OnDoc| +2026-04-23 10:59:38.3191|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3310|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3464|DEBUG|OnDoc| +2026-04-23 10:59:38.3762|DEBUG|OnDoc| +2026-04-23 10:59:38.3762|DEBUG|OnDoc| +2026-04-23 10:59:38.3860|DEBUG|OnDoc| +2026-04-23 10:59:38.3860|DEBUG|OnDoc| +2026-04-23 10:59:38.3860|DEBUG|OnDoc| +2026-04-23 10:59:38.3860|DEBUG|OnDoc| +2026-04-23 10:59:38.4073|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 10:59:38.4093|DEBUG|OnDoc| +2026-04-23 10:59:38.4093|DEBUG|OnDoc| +2026-04-23 10:59:38.4093|DEBUG|OnDoc| +2026-04-23 10:59:38.4093|DEBUG|OnDoc| +2026-04-23 10:59:38.4093|DEBUG|OnDoc| +2026-04-23 10:59:38.4282|DEBUG|OnDoc| +2026-04-23 10:59:38.4282|DEBUG|OnDoc| +2026-04-23 10:59:38.4282|DEBUG|OnDoc| +2026-04-23 10:59:38.4282|DEBUG|OnDoc|Generate_Word +2026-04-23 10:59:38.4447|DEBUG|OnDoc|Word2013 +2026-04-23 10:59:38.4447|DEBUG|OnDoc|Word2013 +2026-04-23 10:59:38.7854|DEBUG|OnDoc|Generate_Word +2026-04-23 10:59:38.7854|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024409 +2026-04-23 10:59:38.7854|INFO|DocLog|Dokument über API erstellt +2026-04-23 10:59:38.8006|INFO|APIDocLog|Dok erstellt +2026-04-23 10:59:38.8006|INFO|APIDocLog|Attachment angefügt +2026-04-23 10:59:38.8006|DEBUG|OnDoc| +2026-04-23 10:59:38.8006|DEBUG|OnDoc| +2026-04-23 10:59:38.8006|DEBUG|OnDoc| +2026-04-23 10:59:38.8347|DEBUG|OnDoc| +2026-04-23 10:59:38.8347|DEBUG|OnDoc| +2026-04-23 10:59:38.8347|DEBUG|OnDoc| +2026-04-23 10:59:38.8347|DEBUG|OnDoc| +2026-04-23 10:59:38.8347|DEBUG|OnDoc| +2026-04-23 10:59:38.8347|DEBUG|OnDoc| +2026-04-23 10:59:38.8347|DEBUG|OnDoc| +2026-04-23 10:59:38.8347|DEBUG|OnDoc| +2026-04-23 10:59:38.8753|DEBUG|OnDoc| +2026-04-23 10:59:38.9204|DEBUG|OnDoc| +2026-04-23 10:59:38.9274|DEBUG|OnDoc| +2026-04-23 10:59:42.9012|DEBUG|OnDoc| +2026-04-23 10:59:42.9383|DEBUG|OnDoc| +2026-04-23 11:00:01.2565|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 11:00:01.3387|INFO|APIDocLog|CreateDoks Start +2026-04-23 11:00:01.3659|INFO|APIDocLog|Input Json +2026-04-23 11:00:01.3659|DEBUG|OnDoc|Start GenDoc +2026-04-23 11:00:01.3659|DEBUG|OnDoc| +2026-04-23 11:00:01.3659|DEBUG|OnDoc| +2026-04-23 11:00:01.3659|DEBUG|OnDoc| +2026-04-23 11:00:01.3659|DEBUG|OnDoc| +2026-04-23 11:00:01.3659|DEBUG|OnDoc| +2026-04-23 11:00:01.3659|DEBUG|OnDoc| +2026-04-23 11:00:01.3659|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3775|DEBUG|OnDoc| +2026-04-23 11:00:01.3938|DEBUG|OnDoc| +2026-04-23 11:00:01.3938|DEBUG|OnDoc| +2026-04-23 11:00:01.4114|DEBUG|OnDoc| +2026-04-23 11:00:01.4114|DEBUG|OnDoc| +2026-04-23 11:00:01.4114|DEBUG|OnDoc| +2026-04-23 11:00:01.4247|DEBUG|OnDoc| +2026-04-23 11:00:01.4247|DEBUG|OnDoc| +2026-04-23 11:00:01.4247|DEBUG|OnDoc| +2026-04-23 11:00:01.4452|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 11:00:01.4452|DEBUG|OnDoc| +2026-04-23 11:00:01.4452|DEBUG|OnDoc| +2026-04-23 11:00:01.4452|DEBUG|OnDoc| +2026-04-23 11:00:01.4452|DEBUG|OnDoc| +2026-04-23 11:00:01.4567|DEBUG|OnDoc| +2026-04-23 11:00:01.4567|DEBUG|OnDoc| +2026-04-23 11:00:01.4567|DEBUG|OnDoc| +2026-04-23 11:00:01.4567|DEBUG|OnDoc| +2026-04-23 11:00:01.4769|DEBUG|OnDoc|Generate_Word +2026-04-23 11:00:01.4769|DEBUG|OnDoc|Word2013 +2026-04-23 11:00:01.4769|DEBUG|OnDoc|Word2013 +2026-04-23 11:00:01.8326|DEBUG|OnDoc|Generate_Word +2026-04-23 11:00:01.8326|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024417 +2026-04-23 11:00:01.8326|INFO|DocLog|Dokument über API erstellt +2026-04-23 11:00:01.8468|INFO|APIDocLog|Dok erstellt +2026-04-23 11:00:01.8468|INFO|APIDocLog|Attachment angefügt +2026-04-23 11:00:01.8468|DEBUG|OnDoc| +2026-04-23 11:00:01.8468|DEBUG|OnDoc| +2026-04-23 11:00:01.8468|DEBUG|OnDoc| +2026-04-23 11:00:01.8783|DEBUG|OnDoc| +2026-04-23 11:00:01.8783|DEBUG|OnDoc| +2026-04-23 11:00:01.8783|DEBUG|OnDoc| +2026-04-23 11:00:01.8783|DEBUG|OnDoc| +2026-04-23 11:00:01.8783|DEBUG|OnDoc| +2026-04-23 11:00:01.8783|DEBUG|OnDoc| +2026-04-23 11:00:01.8783|DEBUG|OnDoc| +2026-04-23 11:00:01.8783|DEBUG|OnDoc| +2026-04-23 11:00:01.9165|DEBUG|OnDoc| +2026-04-23 11:00:01.9651|DEBUG|OnDoc| +2026-04-23 11:00:01.9651|DEBUG|OnDoc| +2026-04-23 11:00:05.2370|DEBUG|OnDoc| +2026-04-23 11:00:05.2748|DEBUG|OnDoc| +2026-04-23 11:00:26.2878|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 11:00:26.3518|INFO|APIDocLog|CreateDoks Start +2026-04-23 11:00:26.3785|INFO|APIDocLog|Input Json +2026-04-23 11:00:26.3785|DEBUG|OnDoc|Start GenDoc +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3785|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.3931|DEBUG|OnDoc| +2026-04-23 11:00:26.4133|DEBUG|OnDoc| +2026-04-23 11:00:26.4133|DEBUG|OnDoc| +2026-04-23 11:00:26.4133|DEBUG|OnDoc| +2026-04-23 11:00:26.4133|DEBUG|OnDoc| +2026-04-23 11:00:26.4133|DEBUG|OnDoc| +2026-04-23 11:00:26.4133|DEBUG|OnDoc| +2026-04-23 11:00:26.4439|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 11:00:26.4439|DEBUG|OnDoc| +2026-04-23 11:00:26.4439|DEBUG|OnDoc| +2026-04-23 11:00:26.4439|DEBUG|OnDoc| +2026-04-23 11:00:26.4439|DEBUG|OnDoc| +2026-04-23 11:00:26.4439|DEBUG|OnDoc| +2026-04-23 11:00:26.4560|DEBUG|OnDoc| +2026-04-23 11:00:26.4560|DEBUG|OnDoc| +2026-04-23 11:00:26.4560|DEBUG|OnDoc| +2026-04-23 11:00:26.4560|DEBUG|OnDoc|Generate_Word +2026-04-23 11:00:26.4560|DEBUG|OnDoc|Word2013 +2026-04-23 11:00:26.4560|DEBUG|OnDoc|Word2013 +2026-04-23 11:00:26.8128|DEBUG|OnDoc|Generate_Word +2026-04-23 11:00:26.8241|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024425 +2026-04-23 11:00:26.8241|INFO|DocLog|Dokument über API erstellt +2026-04-23 11:00:26.8241|INFO|APIDocLog|Dok erstellt +2026-04-23 11:00:26.8241|INFO|APIDocLog|Attachment angefügt +2026-04-23 11:00:26.8241|DEBUG|OnDoc| +2026-04-23 11:00:26.8241|DEBUG|OnDoc| +2026-04-23 11:00:26.8241|DEBUG|OnDoc| +2026-04-23 11:00:26.8580|DEBUG|OnDoc| +2026-04-23 11:00:26.8580|DEBUG|OnDoc| +2026-04-23 11:00:26.8635|DEBUG|OnDoc| +2026-04-23 11:00:26.8635|DEBUG|OnDoc| +2026-04-23 11:00:26.8635|DEBUG|OnDoc| +2026-04-23 11:00:26.8635|DEBUG|OnDoc| +2026-04-23 11:00:26.8635|DEBUG|OnDoc| +2026-04-23 11:00:26.8635|DEBUG|OnDoc| +2026-04-23 11:00:26.8931|DEBUG|OnDoc| +2026-04-23 11:00:26.9409|DEBUG|OnDoc| +2026-04-23 11:00:26.9409|DEBUG|OnDoc| +2026-04-23 11:00:30.6329|DEBUG|OnDoc| +2026-04-23 11:00:30.6699|DEBUG|OnDoc| +2026-04-23 11:00:54.0019|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 11:00:54.0769|INFO|APIDocLog|CreateDoks Start +2026-04-23 11:00:54.1062|INFO|APIDocLog|Input Json +2026-04-23 11:00:54.1062|DEBUG|OnDoc|Start GenDoc +2026-04-23 11:00:54.1062|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1134|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1277|DEBUG|OnDoc| +2026-04-23 11:00:54.1436|DEBUG|OnDoc| +2026-04-23 11:00:54.1436|DEBUG|OnDoc| +2026-04-23 11:00:54.1436|DEBUG|OnDoc| +2026-04-23 11:00:54.1436|DEBUG|OnDoc| +2026-04-23 11:00:54.1436|DEBUG|OnDoc| +2026-04-23 11:00:54.1436|DEBUG|OnDoc| +2026-04-23 11:00:54.1436|DEBUG|OnDoc| +2026-04-23 11:00:54.1710|DEBUG|OnDoc| +2026-04-23 11:00:54.1710|DEBUG|OnDoc| +2026-04-23 11:00:54.1810|DEBUG|OnDoc| +2026-04-23 11:00:54.1810|DEBUG|OnDoc| +2026-04-23 11:00:54.1810|DEBUG|OnDoc| +2026-04-23 11:00:54.1810|DEBUG|OnDoc| +2026-04-23 11:00:54.2034|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 11:00:54.2034|DEBUG|OnDoc| +2026-04-23 11:00:54.2116|DEBUG|OnDoc| +2026-04-23 11:00:54.2116|DEBUG|OnDoc| +2026-04-23 11:00:54.2116|DEBUG|OnDoc| +2026-04-23 11:00:54.2116|DEBUG|OnDoc| +2026-04-23 11:00:54.2215|DEBUG|OnDoc| +2026-04-23 11:00:54.2215|DEBUG|OnDoc| +2026-04-23 11:00:54.2215|DEBUG|OnDoc| +2026-04-23 11:00:54.2215|DEBUG|OnDoc|Generate_Word +2026-04-23 11:00:54.2407|DEBUG|OnDoc|Word2013 +2026-04-23 11:00:54.2407|DEBUG|OnDoc|Word2013 +2026-04-23 11:00:54.6567|DEBUG|OnDoc|Generate_Word +2026-04-23 11:00:54.6684|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024430 +2026-04-23 11:00:54.6780|INFO|DocLog|Dokument über API erstellt +2026-04-23 11:00:54.6780|INFO|APIDocLog|Dok erstellt +2026-04-23 11:00:54.6780|INFO|APIDocLog|Attachment angefügt +2026-04-23 11:00:54.6780|DEBUG|OnDoc| +2026-04-23 11:00:54.6780|DEBUG|OnDoc| +2026-04-23 11:00:54.6780|DEBUG|OnDoc| +2026-04-23 11:00:54.7181|DEBUG|OnDoc| +2026-04-23 11:00:54.7216|DEBUG|OnDoc| +2026-04-23 11:00:54.7216|DEBUG|OnDoc| +2026-04-23 11:00:54.7216|DEBUG|OnDoc| +2026-04-23 11:00:54.7216|DEBUG|OnDoc| +2026-04-23 11:00:54.7216|DEBUG|OnDoc| +2026-04-23 11:00:54.7216|DEBUG|OnDoc| +2026-04-23 11:00:54.7216|DEBUG|OnDoc| +2026-04-23 11:00:54.7629|DEBUG|OnDoc| +2026-04-23 11:00:54.8168|DEBUG|OnDoc| +2026-04-23 11:00:54.8168|DEBUG|OnDoc| +2026-04-23 11:00:58.0425|DEBUG|OnDoc| +2026-04-23 11:00:58.0800|DEBUG|OnDoc| +2026-04-23 11:01:27.8746|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 11:01:27.9503|INFO|APIDocLog|CreateDoks Start +2026-04-23 11:01:27.9764|INFO|APIDocLog|Input Json +2026-04-23 11:01:27.9764|DEBUG|OnDoc|Start GenDoc +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9764|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:27.9869|DEBUG|OnDoc| +2026-04-23 11:01:28.0138|DEBUG|OnDoc| +2026-04-23 11:01:28.0138|DEBUG|OnDoc| +2026-04-23 11:01:28.0223|DEBUG|OnDoc| +2026-04-23 11:01:28.0223|DEBUG|OnDoc| +2026-04-23 11:01:28.0223|DEBUG|OnDoc| +2026-04-23 11:01:28.0223|DEBUG|OnDoc| +2026-04-23 11:01:28.0415|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 11:01:28.0415|DEBUG|OnDoc| +2026-04-23 11:01:28.0415|DEBUG|OnDoc| +2026-04-23 11:01:28.0415|DEBUG|OnDoc| +2026-04-23 11:01:28.0495|DEBUG|OnDoc| +2026-04-23 11:01:28.0495|DEBUG|OnDoc| +2026-04-23 11:01:28.0495|DEBUG|OnDoc| +2026-04-23 11:01:28.0495|DEBUG|OnDoc| +2026-04-23 11:01:28.0495|DEBUG|OnDoc| +2026-04-23 11:01:28.0495|DEBUG|OnDoc|Generate_Word +2026-04-23 11:01:28.0673|DEBUG|OnDoc|Word2013 +2026-04-23 11:01:28.0673|DEBUG|OnDoc|Word2013 +2026-04-23 11:01:28.4212|DEBUG|OnDoc|Generate_Word +2026-04-23 11:01:28.4313|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024441 +2026-04-23 11:01:28.4313|INFO|DocLog|Dokument über API erstellt +2026-04-23 11:01:28.4313|INFO|APIDocLog|Dok erstellt +2026-04-23 11:01:28.4313|INFO|APIDocLog|Attachment angefügt +2026-04-23 11:01:28.4313|DEBUG|OnDoc| +2026-04-23 11:01:28.4313|DEBUG|OnDoc| +2026-04-23 11:01:28.4313|DEBUG|OnDoc| +2026-04-23 11:01:28.4653|DEBUG|OnDoc| +2026-04-23 11:01:28.4653|DEBUG|OnDoc| +2026-04-23 11:01:28.4653|DEBUG|OnDoc| +2026-04-23 11:01:28.4713|DEBUG|OnDoc| +2026-04-23 11:01:28.4713|DEBUG|OnDoc| +2026-04-23 11:01:28.4713|DEBUG|OnDoc| +2026-04-23 11:01:28.4713|DEBUG|OnDoc| +2026-04-23 11:01:28.4713|DEBUG|OnDoc| +2026-04-23 11:01:28.5017|DEBUG|OnDoc| +2026-04-23 11:01:28.5474|DEBUG|OnDoc| +2026-04-23 11:01:28.5517|DEBUG|OnDoc| +2026-04-23 11:04:52.2034|DEBUG|OnDoc| +2026-04-23 11:04:52.2410|DEBUG|OnDoc| +2026-04-23 11:05:21.5025|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 11:05:21.5832|INFO|APIDocLog|CreateDoks Start +2026-04-23 11:05:21.6153|INFO|APIDocLog|Input Json +2026-04-23 11:05:21.6153|DEBUG|OnDoc|Start GenDoc +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6153|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6276|DEBUG|OnDoc| +2026-04-23 11:05:21.6605|DEBUG|OnDoc| +2026-04-23 11:05:21.6605|DEBUG|OnDoc| +2026-04-23 11:05:21.6766|DEBUG|OnDoc| +2026-04-23 11:05:21.6766|DEBUG|OnDoc| +2026-04-23 11:05:21.6766|DEBUG|OnDoc| +2026-04-23 11:05:21.6766|DEBUG|OnDoc| +2026-04-23 11:05:21.6977|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 11:05:21.6977|DEBUG|OnDoc| +2026-04-23 11:05:21.6977|DEBUG|OnDoc| +2026-04-23 11:05:21.6977|DEBUG|OnDoc| +2026-04-23 11:05:21.7064|DEBUG|OnDoc| +2026-04-23 11:05:21.7064|DEBUG|OnDoc| +2026-04-23 11:05:21.7064|DEBUG|OnDoc| +2026-04-23 11:05:21.7064|DEBUG|OnDoc| +2026-04-23 11:05:21.7064|DEBUG|OnDoc| +2026-04-23 11:05:21.7064|DEBUG|OnDoc|Generate_Word +2026-04-23 11:05:21.7228|DEBUG|OnDoc|Word2013 +2026-04-23 11:05:21.7228|DEBUG|OnDoc|Word2013 +2026-04-23 11:05:22.1112|DEBUG|OnDoc|Generate_Word +2026-04-23 11:05:22.1217|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024456 +2026-04-23 11:05:22.1217|INFO|DocLog|Dokument über API erstellt +2026-04-23 11:05:22.1217|INFO|APIDocLog|Dok erstellt +2026-04-23 11:05:22.1217|INFO|APIDocLog|Attachment angefügt +2026-04-23 11:05:22.1217|DEBUG|OnDoc| +2026-04-23 11:05:22.1217|DEBUG|OnDoc| +2026-04-23 11:05:22.1217|DEBUG|OnDoc| +2026-04-23 11:05:22.1535|DEBUG|OnDoc| +2026-04-23 11:05:22.1535|DEBUG|OnDoc| +2026-04-23 11:05:22.1535|DEBUG|OnDoc| +2026-04-23 11:05:22.1535|DEBUG|OnDoc| +2026-04-23 11:05:22.1535|DEBUG|OnDoc| +2026-04-23 11:05:22.1595|DEBUG|OnDoc| +2026-04-23 11:05:22.1595|DEBUG|OnDoc| +2026-04-23 11:05:22.1595|DEBUG|OnDoc| +2026-04-23 11:05:22.1908|DEBUG|OnDoc| +2026-04-23 11:05:22.2460|DEBUG|OnDoc| +2026-04-23 11:05:22.2460|DEBUG|OnDoc| +2026-04-23 11:05:25.7878|DEBUG|OnDoc| +2026-04-23 11:05:25.8246|DEBUG|OnDoc| +2026-04-23 11:14:47.6563|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 11:14:47.7341|INFO|APIDocLog|CreateDoks Start +2026-04-23 11:14:47.7643|INFO|APIDocLog|Input Json +2026-04-23 11:14:47.7688|DEBUG|OnDoc|Start GenDoc +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7688|DEBUG|OnDoc| +2026-04-23 11:14:47.7843|DEBUG|OnDoc| +2026-04-23 11:14:47.7843|DEBUG|OnDoc| +2026-04-23 11:14:47.7843|DEBUG|OnDoc| +2026-04-23 11:14:47.7843|DEBUG|OnDoc| +2026-04-23 11:14:47.7843|DEBUG|OnDoc| +2026-04-23 11:14:47.7843|DEBUG|OnDoc| +2026-04-23 11:14:47.7843|DEBUG|OnDoc| +2026-04-23 11:14:47.7843|DEBUG|OnDoc| +2026-04-23 11:14:47.7843|DEBUG|OnDoc| +2026-04-23 11:14:47.8079|DEBUG|OnDoc| +2026-04-23 11:14:47.8079|DEBUG|OnDoc| +2026-04-23 11:14:47.8214|DEBUG|OnDoc| +2026-04-23 11:14:47.8214|DEBUG|OnDoc| +2026-04-23 11:14:47.8214|DEBUG|OnDoc| +2026-04-23 11:14:47.8214|DEBUG|OnDoc| +2026-04-23 11:14:47.8435|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 11:14:47.8435|DEBUG|OnDoc| +2026-04-23 11:14:47.8519|DEBUG|OnDoc| +2026-04-23 11:14:47.8519|DEBUG|OnDoc| +2026-04-23 11:14:47.8519|DEBUG|OnDoc| +2026-04-23 11:14:47.8519|DEBUG|OnDoc| +2026-04-23 11:14:47.8519|DEBUG|OnDoc| +2026-04-23 11:14:47.8519|DEBUG|OnDoc| +2026-04-23 11:14:47.8648|DEBUG|OnDoc| +2026-04-23 11:14:47.8648|DEBUG|OnDoc|Generate_Word +2026-04-23 11:14:47.8648|DEBUG|OnDoc|Word2013 +2026-04-23 11:14:47.8648|DEBUG|OnDoc|Word2013 +2026-04-23 11:14:48.2582|DEBUG|OnDoc|Generate_Word +2026-04-23 11:14:48.2692|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024464 +2026-04-23 11:14:48.2692|INFO|DocLog|Dokument über API erstellt +2026-04-23 11:14:48.2692|INFO|APIDocLog|Dok erstellt +2026-04-23 11:14:48.2692|INFO|APIDocLog|Attachment angefügt +2026-04-23 11:14:48.2692|DEBUG|OnDoc| +2026-04-23 11:14:48.2692|DEBUG|OnDoc| +2026-04-23 11:14:48.2692|DEBUG|OnDoc| +2026-04-23 11:14:48.3127|DEBUG|OnDoc| +2026-04-23 11:14:48.3150|DEBUG|OnDoc| +2026-04-23 11:14:48.3150|DEBUG|OnDoc| +2026-04-23 11:14:48.3150|DEBUG|OnDoc| +2026-04-23 11:14:48.3150|DEBUG|OnDoc| +2026-04-23 11:14:48.3150|DEBUG|OnDoc| +2026-04-23 11:14:48.3150|DEBUG|OnDoc| +2026-04-23 11:14:48.3150|DEBUG|OnDoc| +2026-04-23 11:14:48.3473|DEBUG|OnDoc| +2026-04-23 11:14:48.3907|DEBUG|OnDoc| +2026-04-23 11:14:48.3967|DEBUG|OnDoc| +2026-04-23 11:14:50.0393|DEBUG|OnDoc| +2026-04-23 11:14:50.0507|DEBUG|OnDoc| +2026-04-23 11:20:08.1808|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 11:20:08.2824|INFO|APIDocLog|CreateDoks Start +2026-04-23 11:20:08.3187|INFO|APIDocLog|Input Json +2026-04-23 11:20:08.3187|DEBUG|OnDoc|Start GenDoc +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3187|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3315|DEBUG|OnDoc| +2026-04-23 11:20:08.3667|DEBUG|OnDoc| +2026-04-23 11:20:08.3667|DEBUG|OnDoc| +2026-04-23 11:20:08.3667|DEBUG|OnDoc| +2026-04-23 11:20:08.3780|DEBUG|OnDoc| +2026-04-23 11:20:08.3780|DEBUG|OnDoc| +2026-04-23 11:20:08.3780|DEBUG|OnDoc| +2026-04-23 11:20:08.4059|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 11:20:08.4059|DEBUG|OnDoc| +2026-04-23 11:20:08.4134|DEBUG|OnDoc| +2026-04-23 11:20:08.4134|DEBUG|OnDoc| +2026-04-23 11:20:08.4134|DEBUG|OnDoc| +2026-04-23 11:20:08.4134|DEBUG|OnDoc| +2026-04-23 11:20:08.4134|DEBUG|OnDoc| +2026-04-23 11:20:08.4134|DEBUG|OnDoc| +2026-04-23 11:20:08.4282|DEBUG|OnDoc| +2026-04-23 11:20:08.4282|DEBUG|OnDoc|Generate_Word +2026-04-23 11:20:08.4506|DEBUG|OnDoc|Word2013 +2026-04-23 11:20:08.4506|DEBUG|OnDoc|Word2013 +2026-04-23 11:20:09.0542|DEBUG|OnDoc|Generate_Word +2026-04-23 11:20:09.0673|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024472 +2026-04-23 11:20:09.0673|INFO|DocLog|Dokument über API erstellt +2026-04-23 11:20:09.0673|INFO|APIDocLog|Dok erstellt +2026-04-23 11:20:09.0673|INFO|APIDocLog|Attachment angefügt +2026-04-23 11:20:09.0673|DEBUG|OnDoc| +2026-04-23 11:20:09.0673|DEBUG|OnDoc| +2026-04-23 11:20:09.0815|DEBUG|OnDoc| +2026-04-23 11:20:09.1140|DEBUG|OnDoc| +2026-04-23 11:20:09.1140|DEBUG|OnDoc| +2026-04-23 11:20:09.1140|DEBUG|OnDoc| +2026-04-23 11:20:09.1140|DEBUG|OnDoc| +2026-04-23 11:20:09.1140|DEBUG|OnDoc| +2026-04-23 11:20:09.1140|DEBUG|OnDoc| +2026-04-23 11:20:09.1140|DEBUG|OnDoc| +2026-04-23 11:20:09.1140|DEBUG|OnDoc| +2026-04-23 11:20:09.1533|DEBUG|OnDoc| +2026-04-23 11:20:09.2326|DEBUG|OnDoc| +2026-04-23 11:20:09.2444|DEBUG|OnDoc| +2026-04-23 11:20:11.6316|DEBUG|OnDoc| +2026-04-23 11:20:11.7272|DEBUG|OnDoc| +2026-04-23 11:20:38.0428|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 11:20:38.1170|INFO|APIDocLog|CreateDoks Start +2026-04-23 11:20:38.1771|INFO|APIDocLog|Input Json +2026-04-23 11:20:38.1771|DEBUG|OnDoc|Start GenDoc +2026-04-23 11:20:38.1771|DEBUG|OnDoc| +2026-04-23 11:20:38.1771|DEBUG|OnDoc| +2026-04-23 11:20:38.1771|DEBUG|OnDoc| +2026-04-23 11:20:38.1911|DEBUG|OnDoc| +2026-04-23 11:20:38.1911|DEBUG|OnDoc| +2026-04-23 11:20:38.1911|DEBUG|OnDoc| +2026-04-23 11:20:38.1911|DEBUG|OnDoc| +2026-04-23 11:20:38.1911|DEBUG|OnDoc| +2026-04-23 11:20:38.1911|DEBUG|OnDoc| +2026-04-23 11:20:38.1911|DEBUG|OnDoc| +2026-04-23 11:20:38.1911|DEBUG|OnDoc| +2026-04-23 11:20:38.1911|DEBUG|OnDoc| +2026-04-23 11:20:38.2070|DEBUG|OnDoc| +2026-04-23 11:20:38.2070|DEBUG|OnDoc| +2026-04-23 11:20:38.2070|DEBUG|OnDoc| +2026-04-23 11:20:38.2070|DEBUG|OnDoc| +2026-04-23 11:20:38.2070|DEBUG|OnDoc| +2026-04-23 11:20:38.2070|DEBUG|OnDoc| +2026-04-23 11:20:38.2070|DEBUG|OnDoc| +2026-04-23 11:20:38.2228|DEBUG|OnDoc| +2026-04-23 11:20:38.2228|DEBUG|OnDoc| +2026-04-23 11:20:38.2228|DEBUG|OnDoc| +2026-04-23 11:20:38.2228|DEBUG|OnDoc| +2026-04-23 11:20:38.2228|DEBUG|OnDoc| +2026-04-23 11:20:38.2228|DEBUG|OnDoc| +2026-04-23 11:20:38.2228|DEBUG|OnDoc| +2026-04-23 11:20:38.2439|DEBUG|OnDoc| +2026-04-23 11:20:38.2439|DEBUG|OnDoc| +2026-04-23 11:20:38.2439|DEBUG|OnDoc| +2026-04-23 11:20:38.2555|DEBUG|OnDoc| +2026-04-23 11:20:38.2555|DEBUG|OnDoc| +2026-04-23 11:20:38.2555|DEBUG|OnDoc| +2026-04-23 11:20:38.2555|DEBUG|OnDoc| +2026-04-23 11:20:38.2685|DEBUG|OnDoc| +2026-04-23 11:20:38.2685|DEBUG|OnDoc| +2026-04-23 11:20:38.2685|DEBUG|OnDoc| +2026-04-23 11:20:38.2685|DEBUG|OnDoc| +2026-04-23 11:20:38.2685|DEBUG|OnDoc| +2026-04-23 11:20:38.3042|DEBUG|OnDoc| +2026-04-23 11:20:38.3042|DEBUG|OnDoc| +2026-04-23 11:20:38.3042|DEBUG|OnDoc| +2026-04-23 11:20:38.3155|DEBUG|OnDoc| +2026-04-23 11:20:38.3155|DEBUG|OnDoc| +2026-04-23 11:20:38.3155|DEBUG|OnDoc| +2026-04-23 11:20:38.3354|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 11:20:38.3354|DEBUG|OnDoc| +2026-04-23 11:20:38.3354|DEBUG|OnDoc| +2026-04-23 11:20:38.3354|DEBUG|OnDoc| +2026-04-23 11:20:38.3354|DEBUG|OnDoc| +2026-04-23 11:20:38.3354|DEBUG|OnDoc| +2026-04-23 11:20:38.3488|DEBUG|OnDoc| +2026-04-23 11:20:38.3488|DEBUG|OnDoc| +2026-04-23 11:20:38.3488|DEBUG|OnDoc| +2026-04-23 11:20:38.3488|DEBUG|OnDoc|Generate_Word +2026-04-23 11:20:38.3620|DEBUG|OnDoc|Word2013 +2026-04-23 11:20:38.3620|DEBUG|OnDoc|Word2013 +2026-04-23 11:20:38.7431|DEBUG|OnDoc|Generate_Word +2026-04-23 11:20:38.7547|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024488 +2026-04-23 11:20:38.7547|INFO|DocLog|Dokument über API erstellt +2026-04-23 11:20:38.7547|INFO|APIDocLog|Dok erstellt +2026-04-23 11:20:38.7547|INFO|APIDocLog|Attachment angefügt +2026-04-23 11:20:38.7547|DEBUG|OnDoc| +2026-04-23 11:20:38.7547|DEBUG|OnDoc| +2026-04-23 11:20:38.7547|DEBUG|OnDoc| +2026-04-23 11:20:38.7863|DEBUG|OnDoc| +2026-04-23 11:20:38.7863|DEBUG|OnDoc| +2026-04-23 11:20:38.7863|DEBUG|OnDoc| +2026-04-23 11:20:38.7863|DEBUG|OnDoc| +2026-04-23 11:20:38.7863|DEBUG|OnDoc| +2026-04-23 11:20:38.7863|DEBUG|OnDoc| +2026-04-23 11:20:38.7863|DEBUG|OnDoc| +2026-04-23 11:20:38.7863|DEBUG|OnDoc| +2026-04-23 11:20:38.8272|DEBUG|OnDoc| +2026-04-23 11:20:38.8748|DEBUG|OnDoc| +2026-04-23 11:20:38.8804|DEBUG|OnDoc| +2026-04-23 11:20:40.4549|DEBUG|OnDoc| +2026-04-23 11:20:40.4654|DEBUG|OnDoc| +2026-04-23 19:05:22.6865|DEBUG|OnDoc| +2026-04-23 19:05:22.7513|DEBUG|OnDoc| +2026-04-23 19:05:22.7544|DEBUG|OnDoc| +2026-04-23 19:05:22.7544|DEBUG|OnDoc| +2026-04-23 19:05:50.9090|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:05:51.1103|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:05:51.1472|INFO|APIDocLog|Input JSON +2026-04-23 19:05:51.1674|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:05:51.2654|DEBUG|OnDoc| +2026-04-23 19:05:51.2771|DEBUG|OnDoc| +2026-04-23 19:05:51.2873|DEBUG|OnDoc| +2026-04-23 19:05:51.2873|DEBUG|OnDoc| +2026-04-23 19:05:51.3034|DEBUG|OnDoc| +2026-04-23 19:05:51.3034|DEBUG|OnDoc| +2026-04-23 19:05:51.3251|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:05:51.3399|DEBUG|OnDoc| +2026-04-23 19:05:51.3399|DEBUG|OnDoc| +2026-04-23 19:05:51.3399|DEBUG|OnDoc| +2026-04-23 19:05:51.3489|DEBUG|OnDoc| +2026-04-23 19:05:51.3489|DEBUG|OnDoc| +2026-04-23 19:05:51.3489|DEBUG|OnDoc| +2026-04-23 19:05:51.3489|DEBUG|OnDoc| +2026-04-23 19:05:51.3489|DEBUG|OnDoc| +2026-04-23 19:05:51.4034|DEBUG|OnDoc| +2026-04-23 19:05:51.4034|DEBUG|OnDoc| +2026-04-23 19:05:51.4475|DEBUG|OnDoc| +2026-04-23 19:05:51.4475|DEBUG|OnDoc| +2026-04-23 19:05:51.4649|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:05:51.4719|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:05:51.4719|DEBUG|OnDoc| +2026-04-23 19:05:51.4884|DEBUG|OnDoc| +2026-04-23 19:05:51.4884|DEBUG|OnDoc| +2026-04-23 19:05:51.4884|DEBUG|OnDoc| +2026-04-23 19:05:51.4884|DEBUG|OnDoc| +2026-04-23 19:05:51.5029|DEBUG|OnDoc| +2026-04-23 19:05:51.5029|DEBUG|OnDoc| +2026-04-23 19:05:51.5029|DEBUG|OnDoc| +2026-04-23 19:05:51.5029|DEBUG|OnDoc|Generate_Word +2026-04-23 19:05:51.9420|DEBUG|OnDoc|Word2013 +2026-04-23 19:05:51.9420|DEBUG|OnDoc|Word2013 +2026-04-23 19:05:52.9942|DEBUG|OnDoc|Generate_Word +2026-04-23 19:05:53.0259|DEBUG|OnDoc| +2026-04-23 19:05:53.0259|DEBUG|OnDoc| +2026-04-23 19:05:53.4755|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024493 +2026-04-23 19:05:53.4755|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:05:53.4755|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:07:34.0086|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:07:34.0838|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:07:34.1086|INFO|APIDocLog|Input JSON +2026-04-23 19:07:34.1123|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:07:34.1123|DEBUG|OnDoc| +2026-04-23 19:07:34.1123|DEBUG|OnDoc| +2026-04-23 19:07:34.1123|DEBUG|OnDoc| +2026-04-23 19:07:34.1123|DEBUG|OnDoc| +2026-04-23 19:08:43.7963|DEBUG|OnDoc| +2026-04-23 19:08:43.8325|DEBUG|OnDoc| +2026-04-23 19:08:43.8325|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:08:43.8325|DEBUG|OnDoc| +2026-04-23 19:08:43.8325|DEBUG|OnDoc| +2026-04-23 19:08:43.8325|DEBUG|OnDoc| +2026-04-23 19:08:43.8325|DEBUG|OnDoc| +2026-04-23 19:08:43.8325|DEBUG|OnDoc| +2026-04-23 19:08:43.8325|DEBUG|OnDoc| +2026-04-23 19:08:43.8471|DEBUG|OnDoc| +2026-04-23 19:08:43.8471|DEBUG|OnDoc| +2026-04-23 19:08:43.8631|DEBUG|OnDoc| +2026-04-23 19:08:43.8631|DEBUG|OnDoc| +2026-04-23 19:08:43.8971|DEBUG|OnDoc| +2026-04-23 19:08:43.8971|DEBUG|OnDoc| +2026-04-23 19:08:43.9117|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:08:43.9117|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:08:43.9117|DEBUG|OnDoc| +2026-04-23 19:08:43.9117|DEBUG|OnDoc| +2026-04-23 19:08:43.9117|DEBUG|OnDoc| +2026-04-23 19:08:43.9117|DEBUG|OnDoc| +2026-04-23 19:08:43.9247|DEBUG|OnDoc| +2026-04-23 19:08:43.9247|DEBUG|OnDoc| +2026-04-23 19:08:43.9247|DEBUG|OnDoc| +2026-04-23 19:08:43.9247|DEBUG|OnDoc| +2026-04-23 19:08:43.9247|DEBUG|OnDoc|Generate_Word +2026-04-23 19:08:43.9478|DEBUG|OnDoc|Word2013 +2026-04-23 19:08:43.9478|DEBUG|OnDoc|Word2013 +2026-04-23 19:08:44.2472|DEBUG|OnDoc|Generate_Word +2026-04-23 19:08:44.2924|DEBUG|OnDoc| +2026-04-23 19:08:44.2924|DEBUG|OnDoc| +2026-04-23 19:08:44.3825|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024501 +2026-04-23 19:08:44.3825|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:08:44.3825|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:10:33.9779|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:10:34.0905|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:10:34.1248|INFO|APIDocLog|Input JSON +2026-04-23 19:10:34.1288|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:10:34.1288|DEBUG|OnDoc| +2026-04-23 19:10:34.1288|DEBUG|OnDoc| +2026-04-23 19:10:34.1434|DEBUG|OnDoc| +2026-04-23 19:10:34.1434|DEBUG|OnDoc| +2026-04-23 19:12:10.4584|DEBUG|OnDoc| +2026-04-23 19:12:10.4950|DEBUG|OnDoc| +2026-04-23 19:12:10.4950|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:12:10.4950|DEBUG|OnDoc| +2026-04-23 19:12:10.4950|DEBUG|OnDoc| +2026-04-23 19:12:10.5026|DEBUG|OnDoc| +2026-04-23 19:12:10.5026|DEBUG|OnDoc| +2026-04-23 19:12:10.5026|DEBUG|OnDoc| +2026-04-23 19:12:10.5026|DEBUG|OnDoc| +2026-04-23 19:12:10.5026|DEBUG|OnDoc| +2026-04-23 19:12:10.5026|DEBUG|OnDoc| +2026-04-23 19:12:10.5232|DEBUG|OnDoc| +2026-04-23 19:12:10.5232|DEBUG|OnDoc| +2026-04-23 19:12:10.5501|DEBUG|OnDoc| +2026-04-23 19:12:10.5501|DEBUG|OnDoc| +2026-04-23 19:12:10.5687|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:12:10.5687|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:12:10.5687|DEBUG|OnDoc| +2026-04-23 19:12:10.5835|DEBUG|OnDoc| +2026-04-23 19:12:10.5835|DEBUG|OnDoc| +2026-04-23 19:12:10.5835|DEBUG|OnDoc| +2026-04-23 19:12:10.5835|DEBUG|OnDoc| +2026-04-23 19:12:10.5835|DEBUG|OnDoc| +2026-04-23 19:12:10.5835|DEBUG|OnDoc| +2026-04-23 19:12:10.5962|DEBUG|OnDoc| +2026-04-23 19:12:10.5962|DEBUG|OnDoc|Generate_Word +2026-04-23 19:12:10.5962|DEBUG|OnDoc|Word2013 +2026-04-23 19:12:10.5962|DEBUG|OnDoc|Word2013 +2026-04-23 19:12:10.9696|DEBUG|OnDoc|Generate_Word +2026-04-23 19:12:10.9969|DEBUG|OnDoc| +2026-04-23 19:12:10.9969|DEBUG|OnDoc| +2026-04-23 19:12:11.0951|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024516 +2026-04-23 19:12:11.0951|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:12:11.0981|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:12:13.7601|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:12:13.8431|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:12:13.8737|INFO|APIDocLog|Input JSON +2026-04-23 19:12:13.8787|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:12:13.8787|DEBUG|OnDoc| +2026-04-23 19:12:13.8787|DEBUG|OnDoc| +2026-04-23 19:12:13.8787|DEBUG|OnDoc| +2026-04-23 19:12:13.8787|DEBUG|OnDoc| +2026-04-23 19:12:32.0659|DEBUG|OnDoc| +2026-04-23 19:12:32.1020|DEBUG|OnDoc| +2026-04-23 19:12:32.1020|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:12:32.1020|DEBUG|OnDoc| +2026-04-23 19:12:32.1020|DEBUG|OnDoc| +2026-04-23 19:12:32.1020|DEBUG|OnDoc| +2026-04-23 19:12:32.1020|DEBUG|OnDoc| +2026-04-23 19:12:32.1020|DEBUG|OnDoc| +2026-04-23 19:12:32.1020|DEBUG|OnDoc| +2026-04-23 19:12:32.1125|DEBUG|OnDoc| +2026-04-23 19:12:32.1125|DEBUG|OnDoc| +2026-04-23 19:12:32.1323|DEBUG|OnDoc| +2026-04-23 19:12:32.1323|DEBUG|OnDoc| +2026-04-23 19:12:32.1656|DEBUG|OnDoc| +2026-04-23 19:12:32.1656|DEBUG|OnDoc| +2026-04-23 19:12:32.1819|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:12:32.1819|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:12:32.1819|DEBUG|OnDoc| +2026-04-23 19:12:32.1911|DEBUG|OnDoc| +2026-04-23 19:12:32.1911|DEBUG|OnDoc| +2026-04-23 19:12:32.1911|DEBUG|OnDoc| +2026-04-23 19:12:32.1911|DEBUG|OnDoc| +2026-04-23 19:12:32.1911|DEBUG|OnDoc| +2026-04-23 19:12:32.1911|DEBUG|OnDoc| +2026-04-23 19:12:32.1911|DEBUG|OnDoc| +2026-04-23 19:12:32.1911|DEBUG|OnDoc|Generate_Word +2026-04-23 19:12:32.2085|DEBUG|OnDoc|Word2013 +2026-04-23 19:12:32.2085|DEBUG|OnDoc|Word2013 +2026-04-23 19:12:32.5423|DEBUG|OnDoc|Generate_Word +2026-04-23 19:12:32.5706|DEBUG|OnDoc| +2026-04-23 19:12:32.5706|DEBUG|OnDoc| +2026-04-23 19:12:32.6323|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024524 +2026-04-23 19:12:32.6323|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:12:32.6323|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:12:34.7741|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:12:34.8515|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:12:34.8851|INFO|APIDocLog|Input JSON +2026-04-23 19:12:34.8851|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:12:34.8951|DEBUG|OnDoc| +2026-04-23 19:12:34.8951|DEBUG|OnDoc| +2026-04-23 19:12:34.8951|DEBUG|OnDoc| +2026-04-23 19:12:34.8951|DEBUG|OnDoc| +2026-04-23 19:14:16.3387|DEBUG|OnDoc| +2026-04-23 19:14:16.3750|DEBUG|OnDoc| +2026-04-23 19:14:16.3750|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:14:16.3780|DEBUG|OnDoc| +2026-04-23 19:14:16.3780|DEBUG|OnDoc| +2026-04-23 19:14:16.3780|DEBUG|OnDoc| +2026-04-23 19:14:16.3780|DEBUG|OnDoc| +2026-04-23 19:14:16.3780|DEBUG|OnDoc| +2026-04-23 19:14:16.3780|DEBUG|OnDoc| +2026-04-23 19:14:16.3780|DEBUG|OnDoc| +2026-04-23 19:14:16.3780|DEBUG|OnDoc| +2026-04-23 19:14:16.3997|DEBUG|OnDoc| +2026-04-23 19:14:16.3997|DEBUG|OnDoc| +2026-04-23 19:14:16.4288|DEBUG|OnDoc| +2026-04-23 19:14:16.4288|DEBUG|OnDoc| +2026-04-23 19:14:16.4469|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:14:16.4469|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:14:16.4469|DEBUG|OnDoc| +2026-04-23 19:14:16.4595|DEBUG|OnDoc| +2026-04-23 19:14:16.4595|DEBUG|OnDoc| +2026-04-23 19:14:16.4595|DEBUG|OnDoc| +2026-04-23 19:14:16.4595|DEBUG|OnDoc| +2026-04-23 19:14:16.4595|DEBUG|OnDoc| +2026-04-23 19:14:16.4595|DEBUG|OnDoc| +2026-04-23 19:14:16.4734|DEBUG|OnDoc| +2026-04-23 19:14:16.4734|DEBUG|OnDoc|Generate_Word +2026-04-23 19:14:16.4734|DEBUG|OnDoc|Word2013 +2026-04-23 19:14:16.4734|DEBUG|OnDoc|Word2013 +2026-04-23 19:14:16.8444|DEBUG|OnDoc|Generate_Word +2026-04-23 19:14:16.8817|DEBUG|OnDoc| +2026-04-23 19:14:16.8817|DEBUG|OnDoc| +2026-04-23 19:14:16.9502|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024532 +2026-04-23 19:14:16.9502|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:14:16.9502|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:14:24.2487|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:14:24.3498|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:14:24.3754|INFO|APIDocLog|Input JSON +2026-04-23 19:14:24.3796|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:14:24.3796|DEBUG|OnDoc| +2026-04-23 19:14:24.3796|DEBUG|OnDoc| +2026-04-23 19:14:24.3796|DEBUG|OnDoc| +2026-04-23 19:14:24.3796|DEBUG|OnDoc| +2026-04-23 19:15:25.1559|DEBUG|OnDoc| +2026-04-23 19:15:25.1922|DEBUG|OnDoc| +2026-04-23 19:15:25.1922|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:15:25.1922|DEBUG|OnDoc| +2026-04-23 19:15:25.1922|DEBUG|OnDoc| +2026-04-23 19:15:25.1922|DEBUG|OnDoc| +2026-04-23 19:15:25.1922|DEBUG|OnDoc| +2026-04-23 19:15:25.1922|DEBUG|OnDoc| +2026-04-23 19:15:25.1922|DEBUG|OnDoc| +2026-04-23 19:15:25.1922|DEBUG|OnDoc| +2026-04-23 19:15:25.1922|DEBUG|OnDoc| +2026-04-23 19:15:25.2201|DEBUG|OnDoc| +2026-04-23 19:15:25.2212|DEBUG|OnDoc| +2026-04-23 19:15:25.2473|DEBUG|OnDoc| +2026-04-23 19:15:25.2473|DEBUG|OnDoc| +2026-04-23 19:15:25.2683|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:15:25.2683|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:15:25.2683|DEBUG|OnDoc| +2026-04-23 19:15:25.2683|DEBUG|OnDoc| +2026-04-23 19:15:25.2683|DEBUG|OnDoc| +2026-04-23 19:15:25.2683|DEBUG|OnDoc| +2026-04-23 19:15:25.2683|DEBUG|OnDoc| +2026-04-23 19:15:25.2866|DEBUG|OnDoc| +2026-04-23 19:15:25.2866|DEBUG|OnDoc| +2026-04-23 19:15:25.2866|DEBUG|OnDoc| +2026-04-23 19:15:25.2866|DEBUG|OnDoc|Generate_Word +2026-04-23 19:15:25.3027|DEBUG|OnDoc|Word2013 +2026-04-23 19:15:25.3027|DEBUG|OnDoc|Word2013 +2026-04-23 19:15:25.6794|DEBUG|OnDoc|Generate_Word +2026-04-23 19:15:25.7046|DEBUG|OnDoc| +2026-04-23 19:15:25.7081|DEBUG|OnDoc| +2026-04-23 19:15:25.7853|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024548 +2026-04-23 19:15:25.7853|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:15:25.7853|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:15:39.0920|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:15:39.1959|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:15:39.2322|INFO|APIDocLog|Input JSON +2026-04-23 19:15:39.2383|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:15:39.2383|DEBUG|OnDoc| +2026-04-23 19:15:39.2383|DEBUG|OnDoc| +2026-04-23 19:15:39.2383|DEBUG|OnDoc| +2026-04-23 19:15:39.2383|DEBUG|OnDoc| +2026-04-23 19:15:39.2595|DEBUG|OnDoc| +2026-04-23 19:15:39.2595|DEBUG|OnDoc| +2026-04-23 19:16:04.3001|DEBUG|OnDoc| +2026-04-23 19:16:04.3416|DEBUG|OnDoc| +2026-04-23 19:16:05.4884|INFO|OnDoc|Image-Bezug: 4 +2026-04-23 19:16:06.5757|DEBUG|OnDoc| +2026-04-23 19:16:06.5853|DEBUG|OnDoc| +2026-04-23 19:16:06.5853|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:16:06.5853|DEBUG|OnDoc| +2026-04-23 19:16:06.5853|DEBUG|OnDoc| +2026-04-23 19:16:06.5853|DEBUG|OnDoc| +2026-04-23 19:16:06.5853|DEBUG|OnDoc| +2026-04-23 19:16:06.5853|DEBUG|OnDoc| +2026-04-23 19:16:06.5853|DEBUG|OnDoc| +2026-04-23 19:16:06.5853|DEBUG|OnDoc| +2026-04-23 19:16:06.5853|DEBUG|OnDoc| +2026-04-23 19:16:06.6109|DEBUG|OnDoc| +2026-04-23 19:16:06.6119|DEBUG|OnDoc| +2026-04-23 19:16:06.6392|DEBUG|OnDoc| +2026-04-23 19:16:06.6392|DEBUG|OnDoc| +2026-04-23 19:16:06.6570|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:16:06.6600|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:16:06.6600|DEBUG|OnDoc| +2026-04-23 19:16:06.6841|DEBUG|OnDoc| +2026-04-23 19:16:06.6841|DEBUG|OnDoc| +2026-04-23 19:16:06.6841|DEBUG|OnDoc| +2026-04-23 19:16:06.6841|DEBUG|OnDoc| +2026-04-23 19:16:06.6934|DEBUG|OnDoc| +2026-04-23 19:16:06.6934|DEBUG|OnDoc| +2026-04-23 19:16:06.6934|DEBUG|OnDoc| +2026-04-23 19:16:06.6934|DEBUG|OnDoc|Generate_Word +2026-04-23 19:16:06.7509|DEBUG|OnDoc|Word2013 +2026-04-23 19:16:06.7529|DEBUG|OnDoc|Word2013 +2026-04-23 19:16:07.7325|DEBUG|OnDoc|Generate_Word +2026-04-23 19:16:07.7683|DEBUG|OnDoc| +2026-04-23 19:16:07.7683|DEBUG|OnDoc| +2026-04-23 19:16:08.4118|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024553 +2026-04-23 19:16:08.4118|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:16:08.4118|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:18:49.7938|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:18:49.9041|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:18:49.9388|INFO|APIDocLog|Input JSON +2026-04-23 19:18:49.9438|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:18:49.9438|DEBUG|OnDoc| +2026-04-23 19:18:49.9438|DEBUG|OnDoc| +2026-04-23 19:18:49.9438|DEBUG|OnDoc| +2026-04-23 19:18:49.9438|DEBUG|OnDoc| +2026-04-23 19:18:49.9438|DEBUG|OnDoc| +2026-04-23 19:18:49.9438|DEBUG|OnDoc| +2026-04-23 19:18:49.9569|ERROR|APIDocLog|Error Verify +2026-04-23 19:18:54.8669|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:18:54.9627|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:18:54.9902|INFO|APIDocLog|Input JSON +2026-04-23 19:18:54.9902|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:18:54.9902|DEBUG|OnDoc| +2026-04-23 19:18:54.9902|DEBUG|OnDoc| +2026-04-23 19:18:54.9902|DEBUG|OnDoc| +2026-04-23 19:18:54.9902|DEBUG|OnDoc| +2026-04-23 19:18:54.9902|DEBUG|OnDoc| +2026-04-23 19:18:54.9902|DEBUG|OnDoc| +2026-04-23 19:18:54.9902|ERROR|APIDocLog|Error Verify +2026-04-23 19:18:59.1190|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:18:59.2098|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:18:59.2338|INFO|APIDocLog|Input JSON +2026-04-23 19:18:59.2399|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:18:59.2399|DEBUG|OnDoc| +2026-04-23 19:18:59.2399|DEBUG|OnDoc| +2026-04-23 19:18:59.2399|DEBUG|OnDoc| +2026-04-23 19:18:59.2399|DEBUG|OnDoc| +2026-04-23 19:18:59.2399|DEBUG|OnDoc| +2026-04-23 19:18:59.2399|DEBUG|OnDoc| +2026-04-23 19:18:59.2399|ERROR|APIDocLog|Error Verify +2026-04-23 19:19:14.6937|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:19:14.7871|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:19:14.8140|INFO|APIDocLog|Input JSON +2026-04-23 19:19:14.8187|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:19:14.8187|DEBUG|OnDoc| +2026-04-23 19:19:14.8187|DEBUG|OnDoc| +2026-04-23 19:19:14.8187|DEBUG|OnDoc| +2026-04-23 19:19:14.8187|DEBUG|OnDoc| +2026-04-23 19:19:14.8187|DEBUG|OnDoc| +2026-04-23 19:19:14.8187|DEBUG|OnDoc| +2026-04-23 19:19:14.8187|ERROR|APIDocLog|Error Verify +2026-04-23 19:19:21.5546|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:19:21.6667|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:19:21.6976|INFO|APIDocLog|Input JSON +2026-04-23 19:19:21.6976|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:19:21.6976|DEBUG|OnDoc| +2026-04-23 19:19:21.6976|DEBUG|OnDoc| +2026-04-23 19:19:21.6976|DEBUG|OnDoc| +2026-04-23 19:19:21.6976|DEBUG|OnDoc| +2026-04-23 19:20:07.4609|DEBUG|OnDoc| +2026-04-23 19:20:07.5023|DEBUG|OnDoc| +2026-04-23 19:20:07.5055|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:20:07.5055|DEBUG|OnDoc| +2026-04-23 19:20:07.5055|DEBUG|OnDoc| +2026-04-23 19:20:07.5055|DEBUG|OnDoc| +2026-04-23 19:20:07.5190|DEBUG|OnDoc| +2026-04-23 19:20:07.5190|DEBUG|OnDoc| +2026-04-23 19:20:07.5190|DEBUG|OnDoc| +2026-04-23 19:20:07.5190|DEBUG|OnDoc| +2026-04-23 19:20:07.5190|DEBUG|OnDoc| +2026-04-23 19:20:07.5460|DEBUG|OnDoc| +2026-04-23 19:20:07.5857|DEBUG|OnDoc| +2026-04-23 19:20:07.6128|DEBUG|OnDoc| +2026-04-23 19:20:07.6128|DEBUG|OnDoc| +2026-04-23 19:20:07.6313|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:20:07.6313|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:20:07.6313|DEBUG|OnDoc| +2026-04-23 19:20:07.6439|DEBUG|OnDoc| +2026-04-23 19:20:07.6439|DEBUG|OnDoc| +2026-04-23 19:20:07.6439|DEBUG|OnDoc| +2026-04-23 19:20:07.6439|DEBUG|OnDoc| +2026-04-23 19:20:07.6439|DEBUG|OnDoc| +2026-04-23 19:20:07.6439|DEBUG|OnDoc| +2026-04-23 19:20:07.6439|DEBUG|OnDoc| +2026-04-23 19:20:07.6439|DEBUG|OnDoc|Generate_Word +2026-04-23 19:20:07.6625|DEBUG|OnDoc|Word2013 +2026-04-23 19:20:07.6625|DEBUG|OnDoc|Word2013 +2026-04-23 19:20:07.9889|DEBUG|OnDoc|Generate_Word +2026-04-23 19:20:08.0126|DEBUG|OnDoc| +2026-04-23 19:20:08.0126|DEBUG|OnDoc| +2026-04-23 19:20:08.0764|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024569 +2026-04-23 19:20:08.0764|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:20:08.0764|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:20:46.8885|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:20:46.9929|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:20:47.0270|INFO|APIDocLog|Input JSON +2026-04-23 19:20:47.0270|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:20:47.0270|DEBUG|OnDoc| +2026-04-23 19:20:47.0344|DEBUG|OnDoc| +2026-04-23 19:20:47.0344|DEBUG|OnDoc| +2026-04-23 19:20:47.0344|DEBUG|OnDoc| +2026-04-23 19:21:23.7749|DEBUG|OnDoc| +2026-04-23 19:21:23.8109|DEBUG|OnDoc| +2026-04-23 19:21:23.8109|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:21:23.8109|DEBUG|OnDoc| +2026-04-23 19:21:23.8109|DEBUG|OnDoc| +2026-04-23 19:21:23.8109|DEBUG|OnDoc| +2026-04-23 19:21:23.8109|DEBUG|OnDoc| +2026-04-23 19:21:23.8109|DEBUG|OnDoc| +2026-04-23 19:21:23.8152|DEBUG|OnDoc| +2026-04-23 19:21:23.8152|DEBUG|OnDoc| +2026-04-23 19:21:23.8152|DEBUG|OnDoc| +2026-04-23 19:21:23.8323|DEBUG|OnDoc| +2026-04-23 19:21:23.8323|DEBUG|OnDoc| +2026-04-23 19:21:23.8601|DEBUG|OnDoc| +2026-04-23 19:21:23.8626|DEBUG|OnDoc| +2026-04-23 19:21:23.8777|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:21:23.8777|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:21:23.8777|DEBUG|OnDoc| +2026-04-23 19:21:23.8777|DEBUG|OnDoc| +2026-04-23 19:21:23.8777|DEBUG|OnDoc| +2026-04-23 19:21:23.8777|DEBUG|OnDoc| +2026-04-23 19:21:23.8777|DEBUG|OnDoc| +2026-04-23 19:21:23.8931|DEBUG|OnDoc| +2026-04-23 19:21:23.8931|DEBUG|OnDoc| +2026-04-23 19:21:23.8931|DEBUG|OnDoc| +2026-04-23 19:21:23.8931|DEBUG|OnDoc|Generate_Word +2026-04-23 19:21:23.8931|DEBUG|OnDoc|Word2013 +2026-04-23 19:21:23.9095|DEBUG|OnDoc|Word2013 +2026-04-23 19:21:24.2376|DEBUG|OnDoc|Generate_Word +2026-04-23 19:21:24.2752|DEBUG|OnDoc| +2026-04-23 19:21:24.2752|DEBUG|OnDoc| +2026-04-23 19:21:24.3398|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024577 +2026-04-23 19:21:24.3398|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:21:24.3398|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:21:27.6910|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:21:27.7852|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:21:27.8114|INFO|APIDocLog|Input JSON +2026-04-23 19:21:27.8158|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:21:27.8158|DEBUG|OnDoc| +2026-04-23 19:21:27.8158|DEBUG|OnDoc| +2026-04-23 19:21:27.8158|DEBUG|OnDoc| +2026-04-23 19:21:27.8158|DEBUG|OnDoc| +2026-04-23 19:24:28.3295|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-23 19:24:36.0416|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:24:36.1404|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:24:36.1713|INFO|APIDocLog|Input JSON +2026-04-23 19:24:36.1792|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:24:36.1792|DEBUG|OnDoc| +2026-04-23 19:24:36.1792|DEBUG|OnDoc| +2026-04-23 19:24:36.1792|DEBUG|OnDoc| +2026-04-23 19:24:36.1792|DEBUG|OnDoc| +2026-04-23 19:24:46.0610|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-23 19:24:53.1349|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:24:53.2350|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:24:53.2673|INFO|APIDocLog|Input JSON +2026-04-23 19:24:53.2723|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:24:53.2723|DEBUG|OnDoc| +2026-04-23 19:24:53.2723|DEBUG|OnDoc| +2026-04-23 19:24:53.2723|DEBUG|OnDoc| +2026-04-23 19:24:53.2723|DEBUG|OnDoc| +2026-04-23 19:25:13.4611|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-23 19:25:22.1430|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:25:22.2443|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:25:22.2725|INFO|APIDocLog|Input JSON +2026-04-23 19:25:22.2725|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:25:22.2725|DEBUG|OnDoc| +2026-04-23 19:25:22.2725|DEBUG|OnDoc| +2026-04-23 19:25:22.2725|DEBUG|OnDoc| +2026-04-23 19:25:22.2725|DEBUG|OnDoc| +2026-04-23 19:25:58.4893|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-23 19:26:51.9568|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:26:52.0844|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:26:52.1271|INFO|APIDocLog|Input JSON +2026-04-23 19:26:52.1331|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:26:52.1331|DEBUG|OnDoc| +2026-04-23 19:26:52.1331|DEBUG|OnDoc| +2026-04-23 19:26:52.1331|DEBUG|OnDoc| +2026-04-23 19:26:52.1331|DEBUG|OnDoc| +2026-04-23 19:27:13.9725|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-23 19:27:24.1783|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:27:24.2825|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:27:24.3127|INFO|APIDocLog|Input JSON +2026-04-23 19:27:24.3170|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:27:24.3170|DEBUG|OnDoc| +2026-04-23 19:27:24.3170|DEBUG|OnDoc| +2026-04-23 19:27:24.3170|DEBUG|OnDoc| +2026-04-23 19:27:24.3170|DEBUG|OnDoc| +2026-04-23 19:29:48.8323|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-23 19:29:54.2568|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:29:54.3627|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:29:54.4003|INFO|APIDocLog|Input JSON +2026-04-23 19:29:54.4003|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:29:54.4003|DEBUG|OnDoc| +2026-04-23 19:29:54.4003|DEBUG|OnDoc| +2026-04-23 19:29:54.4087|DEBUG|OnDoc| +2026-04-23 19:29:54.4087|DEBUG|OnDoc| +2026-04-23 19:30:38.4859|DEBUG|OnDoc| +2026-04-23 19:30:38.5215|DEBUG|OnDoc| +2026-04-23 19:30:38.5215|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:30:38.5215|DEBUG|OnDoc| +2026-04-23 19:30:38.5215|DEBUG|OnDoc| +2026-04-23 19:30:38.5215|DEBUG|OnDoc| +2026-04-23 19:30:38.5215|DEBUG|OnDoc| +2026-04-23 19:30:38.5215|DEBUG|OnDoc| +2026-04-23 19:30:38.5215|DEBUG|OnDoc| +2026-04-23 19:30:38.5215|DEBUG|OnDoc| +2026-04-23 19:30:38.5215|DEBUG|OnDoc| +2026-04-23 19:30:38.5486|DEBUG|OnDoc| +2026-04-23 19:30:38.5506|DEBUG|OnDoc| +2026-04-23 19:30:38.5799|DEBUG|OnDoc| +2026-04-23 19:30:38.5832|DEBUG|OnDoc| +2026-04-23 19:30:38.6044|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:30:38.6044|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:30:38.6044|DEBUG|OnDoc| +2026-04-23 19:30:38.6155|DEBUG|OnDoc| +2026-04-23 19:30:38.6155|DEBUG|OnDoc| +2026-04-23 19:30:38.6155|DEBUG|OnDoc| +2026-04-23 19:30:38.6155|DEBUG|OnDoc| +2026-04-23 19:30:38.6155|DEBUG|OnDoc| +2026-04-23 19:30:38.6155|DEBUG|OnDoc| +2026-04-23 19:30:38.6327|DEBUG|OnDoc| +2026-04-23 19:30:38.6327|DEBUG|OnDoc|Generate_Word +2026-04-23 19:30:38.6327|DEBUG|OnDoc|Word2013 +2026-04-23 19:30:38.6327|DEBUG|OnDoc|Word2013 +2026-04-23 19:30:39.0188|DEBUG|OnDoc|Generate_Word +2026-04-23 19:30:39.0489|DEBUG|OnDoc| +2026-04-23 19:30:39.0519|DEBUG|OnDoc| +2026-04-23 19:30:39.1459|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024585 +2026-04-23 19:30:39.1459|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:30:39.1459|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:32:09.5644|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:32:09.6874|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:32:09.7357|INFO|APIDocLog|Input JSON +2026-04-23 19:32:09.7397|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:32:09.7397|DEBUG|OnDoc| +2026-04-23 19:32:09.7397|DEBUG|OnDoc| +2026-04-23 19:32:09.7397|DEBUG|OnDoc| +2026-04-23 19:32:09.7397|DEBUG|OnDoc| +2026-04-23 19:32:13.4863|DEBUG|OnDoc| +2026-04-23 19:32:13.5217|DEBUG|OnDoc| +2026-04-23 19:32:13.5217|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:32:13.5217|DEBUG|OnDoc| +2026-04-23 19:32:13.5217|DEBUG|OnDoc| +2026-04-23 19:32:13.5217|DEBUG|OnDoc| +2026-04-23 19:32:13.5217|DEBUG|OnDoc| +2026-04-23 19:32:13.5217|DEBUG|OnDoc| +2026-04-23 19:32:13.5217|DEBUG|OnDoc| +2026-04-23 19:32:13.5217|DEBUG|OnDoc| +2026-04-23 19:32:13.5217|DEBUG|OnDoc| +2026-04-23 19:32:13.5445|DEBUG|OnDoc| +2026-04-23 19:32:13.5445|DEBUG|OnDoc| +2026-04-23 19:32:13.5729|DEBUG|OnDoc| +2026-04-23 19:32:13.5729|DEBUG|OnDoc| +2026-04-23 19:32:13.5927|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:32:13.5927|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:32:13.5927|DEBUG|OnDoc| +2026-04-23 19:32:13.6042|DEBUG|OnDoc| +2026-04-23 19:32:13.6042|DEBUG|OnDoc| +2026-04-23 19:32:13.6042|DEBUG|OnDoc| +2026-04-23 19:32:13.6042|DEBUG|OnDoc| +2026-04-23 19:32:13.6042|DEBUG|OnDoc| +2026-04-23 19:32:13.6042|DEBUG|OnDoc| +2026-04-23 19:32:13.6161|DEBUG|OnDoc| +2026-04-23 19:32:13.6161|DEBUG|OnDoc|Generate_Word +2026-04-23 19:32:13.6161|DEBUG|OnDoc|Word2013 +2026-04-23 19:32:13.6161|DEBUG|OnDoc|Word2013 +2026-04-23 19:32:13.9888|DEBUG|OnDoc|Generate_Word +2026-04-23 19:32:14.0118|DEBUG|OnDoc| +2026-04-23 19:32:14.0118|DEBUG|OnDoc| +2026-04-23 19:32:14.0751|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024590 +2026-04-23 19:32:14.0751|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:32:14.0751|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:32:19.3207|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:32:19.4371|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:32:19.4704|INFO|APIDocLog|Input JSON +2026-04-23 19:32:19.4740|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:32:19.4740|DEBUG|OnDoc| +2026-04-23 19:32:19.4740|DEBUG|OnDoc| +2026-04-23 19:32:19.4740|DEBUG|OnDoc| +2026-04-23 19:32:19.4740|DEBUG|OnDoc| +2026-04-23 19:32:28.1788|DEBUG|OnDoc| +2026-04-23 19:32:28.2150|DEBUG|OnDoc| +2026-04-23 19:32:28.2150|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:32:28.2150|DEBUG|OnDoc| +2026-04-23 19:32:28.2150|DEBUG|OnDoc| +2026-04-23 19:32:28.2150|DEBUG|OnDoc| +2026-04-23 19:32:28.2150|DEBUG|OnDoc| +2026-04-23 19:32:28.2150|DEBUG|OnDoc| +2026-04-23 19:32:28.2150|DEBUG|OnDoc| +2026-04-23 19:32:28.2150|DEBUG|OnDoc| +2026-04-23 19:32:28.2150|DEBUG|OnDoc| +2026-04-23 19:32:28.2431|DEBUG|OnDoc| +2026-04-23 19:32:28.2431|DEBUG|OnDoc| +2026-04-23 19:32:28.2724|DEBUG|OnDoc| +2026-04-23 19:32:28.2724|DEBUG|OnDoc| +2026-04-23 19:32:28.2923|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:32:28.2923|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:32:28.2923|DEBUG|OnDoc| +2026-04-23 19:32:28.3018|DEBUG|OnDoc| +2026-04-23 19:32:28.3018|DEBUG|OnDoc| +2026-04-23 19:32:28.3018|DEBUG|OnDoc| +2026-04-23 19:32:28.3018|DEBUG|OnDoc| +2026-04-23 19:32:28.3018|DEBUG|OnDoc| +2026-04-23 19:32:28.3018|DEBUG|OnDoc| +2026-04-23 19:32:28.3018|DEBUG|OnDoc| +2026-04-23 19:32:28.3151|DEBUG|OnDoc|Generate_Word +2026-04-23 19:32:28.3151|DEBUG|OnDoc|Word2013 +2026-04-23 19:32:28.3151|DEBUG|OnDoc|Word2013 +2026-04-23 19:32:28.6804|DEBUG|OnDoc|Generate_Word +2026-04-23 19:32:28.7075|DEBUG|OnDoc| +2026-04-23 19:32:28.7075|DEBUG|OnDoc| +2026-04-23 19:32:28.7691|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024604 +2026-04-23 19:32:28.7691|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:32:28.7691|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:32:34.7308|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:32:34.8508|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:32:34.8885|INFO|APIDocLog|Input JSON +2026-04-23 19:32:34.8885|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:32:34.8885|DEBUG|OnDoc| +2026-04-23 19:32:34.8945|DEBUG|OnDoc| +2026-04-23 19:32:34.8945|DEBUG|OnDoc| +2026-04-23 19:32:34.8945|DEBUG|OnDoc| +2026-04-23 19:34:05.1620|DEBUG|OnDoc| +2026-04-23 19:34:05.1983|DEBUG|OnDoc| +2026-04-23 19:34:05.1983|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:34:05.1983|DEBUG|OnDoc| +2026-04-23 19:34:05.1983|DEBUG|OnDoc| +2026-04-23 19:34:05.1983|DEBUG|OnDoc| +2026-04-23 19:34:05.1983|DEBUG|OnDoc| +2026-04-23 19:34:05.1983|DEBUG|OnDoc| +2026-04-23 19:34:05.2058|DEBUG|OnDoc| +2026-04-23 19:34:05.2058|DEBUG|OnDoc| +2026-04-23 19:34:05.2058|DEBUG|OnDoc| +2026-04-23 19:34:05.2310|DEBUG|OnDoc| +2026-04-23 19:34:05.2310|DEBUG|OnDoc| +2026-04-23 19:34:05.2662|DEBUG|OnDoc| +2026-04-23 19:34:05.2706|DEBUG|OnDoc| +2026-04-23 19:34:05.2943|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:34:05.2943|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:34:05.2997|DEBUG|OnDoc| +2026-04-23 19:34:05.3169|DEBUG|OnDoc| +2026-04-23 19:34:05.3169|DEBUG|OnDoc| +2026-04-23 19:34:05.3169|DEBUG|OnDoc| +2026-04-23 19:34:05.3169|DEBUG|OnDoc| +2026-04-23 19:34:05.3338|DEBUG|OnDoc| +2026-04-23 19:34:05.3338|DEBUG|OnDoc| +2026-04-23 19:34:05.3338|DEBUG|OnDoc| +2026-04-23 19:34:05.3338|DEBUG|OnDoc|Generate_Word +2026-04-23 19:34:05.3535|DEBUG|OnDoc|Word2013 +2026-04-23 19:34:05.3535|DEBUG|OnDoc|Word2013 +2026-04-23 19:34:05.7673|DEBUG|OnDoc|Generate_Word +2026-04-23 19:34:05.8035|DEBUG|OnDoc| +2026-04-23 19:34:05.8035|DEBUG|OnDoc| +2026-04-23 19:34:05.8727|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024612 +2026-04-23 19:34:05.8727|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:34:05.8727|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:34:34.6064|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:34:34.7169|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:34:34.7540|INFO|APIDocLog|Input JSON +2026-04-23 19:34:34.7540|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:34:34.7540|DEBUG|OnDoc| +2026-04-23 19:34:34.7540|DEBUG|OnDoc| +2026-04-23 19:34:34.7540|DEBUG|OnDoc| +2026-04-23 19:34:34.7540|DEBUG|OnDoc| +2026-04-23 19:34:34.7540|DEBUG|OnDoc| +2026-04-23 19:34:34.7540|DEBUG|OnDoc| +2026-04-23 19:34:34.7540|ERROR|APIDocLog|Error Verify +2026-04-23 19:34:37.5302|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:34:37.6160|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:34:37.6991|INFO|APIDocLog|Input JSON +2026-04-23 19:34:37.7499|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:34:37.8004|DEBUG|OnDoc| +2026-04-23 19:34:37.8004|DEBUG|OnDoc| +2026-04-23 19:34:37.8004|DEBUG|OnDoc| +2026-04-23 19:34:37.8004|DEBUG|OnDoc| +2026-04-23 19:34:37.8004|DEBUG|OnDoc| +2026-04-23 19:34:37.8004|DEBUG|OnDoc| +2026-04-23 19:34:37.8004|ERROR|APIDocLog|Error Verify +2026-04-23 19:34:49.6460|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:34:49.7592|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:34:49.7984|INFO|APIDocLog|Input JSON +2026-04-23 19:34:49.8061|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:34:49.8061|DEBUG|OnDoc| +2026-04-23 19:34:49.8061|DEBUG|OnDoc| +2026-04-23 19:34:49.8061|DEBUG|OnDoc| +2026-04-23 19:34:49.8061|DEBUG|OnDoc| +2026-04-23 19:35:10.1787|DEBUG|OnDoc| +2026-04-23 19:35:10.2148|DEBUG|OnDoc| +2026-04-23 19:35:10.2148|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:35:10.2148|DEBUG|OnDoc| +2026-04-23 19:35:10.2148|DEBUG|OnDoc| +2026-04-23 19:35:10.2148|DEBUG|OnDoc| +2026-04-23 19:35:10.2224|DEBUG|OnDoc| +2026-04-23 19:35:10.2224|DEBUG|OnDoc| +2026-04-23 19:35:10.2224|DEBUG|OnDoc| +2026-04-23 19:35:10.2224|DEBUG|OnDoc| +2026-04-23 19:35:10.2224|DEBUG|OnDoc| +2026-04-23 19:35:10.2467|DEBUG|OnDoc| +2026-04-23 19:35:10.2467|DEBUG|OnDoc| +2026-04-23 19:35:10.2761|DEBUG|OnDoc| +2026-04-23 19:35:10.2761|DEBUG|OnDoc| +2026-04-23 19:35:10.2982|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:35:10.3005|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:35:10.3005|DEBUG|OnDoc| +2026-04-23 19:35:10.3005|DEBUG|OnDoc| +2026-04-23 19:35:10.3005|DEBUG|OnDoc| +2026-04-23 19:35:10.3005|DEBUG|OnDoc| +2026-04-23 19:35:10.3005|DEBUG|OnDoc| +2026-04-23 19:35:10.3164|DEBUG|OnDoc| +2026-04-23 19:35:10.3164|DEBUG|OnDoc| +2026-04-23 19:35:10.3164|DEBUG|OnDoc| +2026-04-23 19:35:10.3164|DEBUG|OnDoc|Generate_Word +2026-04-23 19:35:10.3315|DEBUG|OnDoc|Word2013 +2026-04-23 19:35:10.3315|DEBUG|OnDoc|Word2013 +2026-04-23 19:35:10.7436|DEBUG|OnDoc|Generate_Word +2026-04-23 19:35:10.7686|DEBUG|OnDoc| +2026-04-23 19:35:10.7686|DEBUG|OnDoc| +2026-04-23 19:35:10.8807|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024628 +2026-04-23 19:35:10.8807|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:35:10.8807|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:35:41.7433|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:35:41.8479|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:35:41.8859|INFO|APIDocLog|Input JSON +2026-04-23 19:35:41.8859|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:35:41.8859|DEBUG|OnDoc| +2026-04-23 19:35:41.8936|DEBUG|OnDoc| +2026-04-23 19:35:41.8936|DEBUG|OnDoc| +2026-04-23 19:35:41.8936|DEBUG|OnDoc| +2026-04-23 19:36:13.4312|DEBUG|OnDoc| +2026-04-23 19:36:13.4684|DEBUG|OnDoc| +2026-04-23 19:36:13.4684|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:36:13.4727|DEBUG|OnDoc| +2026-04-23 19:36:13.4727|DEBUG|OnDoc| +2026-04-23 19:36:13.4727|DEBUG|OnDoc| +2026-04-23 19:36:13.4727|DEBUG|OnDoc| +2026-04-23 19:36:13.4727|DEBUG|OnDoc| +2026-04-23 19:36:13.4727|DEBUG|OnDoc| +2026-04-23 19:36:13.4727|DEBUG|OnDoc| +2026-04-23 19:36:13.4727|DEBUG|OnDoc| +2026-04-23 19:36:13.5077|DEBUG|OnDoc| +2026-04-23 19:36:13.5077|DEBUG|OnDoc| +2026-04-23 19:36:13.5416|DEBUG|OnDoc| +2026-04-23 19:36:13.5416|DEBUG|OnDoc| +2026-04-23 19:36:13.5659|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:36:13.5659|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:36:13.5659|DEBUG|OnDoc| +2026-04-23 19:36:13.5659|DEBUG|OnDoc| +2026-04-23 19:36:13.5659|DEBUG|OnDoc| +2026-04-23 19:36:13.5659|DEBUG|OnDoc| +2026-04-23 19:36:13.5659|DEBUG|OnDoc| +2026-04-23 19:36:13.5824|DEBUG|OnDoc| +2026-04-23 19:36:13.5824|DEBUG|OnDoc| +2026-04-23 19:36:13.5824|DEBUG|OnDoc| +2026-04-23 19:36:13.5824|DEBUG|OnDoc|Generate_Word +2026-04-23 19:36:13.5824|DEBUG|OnDoc|Word2013 +2026-04-23 19:36:13.5824|DEBUG|OnDoc|Word2013 +2026-04-23 19:36:13.9861|DEBUG|OnDoc|Generate_Word +2026-04-23 19:36:14.0106|DEBUG|OnDoc| +2026-04-23 19:36:14.0106|DEBUG|OnDoc| +2026-04-23 19:36:14.0732|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024633 +2026-04-23 19:36:14.0732|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:36:14.0732|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:37:09.9668|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:37:10.1118|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:37:10.1642|INFO|APIDocLog|Input JSON +2026-04-23 19:37:10.1642|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:37:10.1642|DEBUG|OnDoc| +2026-04-23 19:37:10.1642|DEBUG|OnDoc| +2026-04-23 19:37:10.1642|DEBUG|OnDoc| +2026-04-23 19:37:10.1642|DEBUG|OnDoc| +2026-04-23 19:37:47.9319|DEBUG|OnDoc| +2026-04-23 19:37:48.0530|DEBUG|OnDoc| +2026-04-23 19:37:48.0530|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:37:48.0530|DEBUG|OnDoc| +2026-04-23 19:37:48.0530|DEBUG|OnDoc| +2026-04-23 19:37:48.0530|DEBUG|OnDoc| +2026-04-23 19:37:48.0530|DEBUG|OnDoc| +2026-04-23 19:37:48.0530|DEBUG|OnDoc| +2026-04-23 19:37:48.0530|DEBUG|OnDoc| +2026-04-23 19:37:48.0655|DEBUG|OnDoc| +2026-04-23 19:37:48.0655|DEBUG|OnDoc| +2026-04-23 19:37:48.0896|DEBUG|OnDoc| +2026-04-23 19:37:48.0896|DEBUG|OnDoc| +2026-04-23 19:37:48.1348|DEBUG|OnDoc| +2026-04-23 19:37:48.1348|DEBUG|OnDoc| +2026-04-23 19:37:48.1585|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:37:48.1624|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:37:48.1624|DEBUG|OnDoc| +2026-04-23 19:37:48.1745|DEBUG|OnDoc| +2026-04-23 19:37:48.1745|DEBUG|OnDoc| +2026-04-23 19:37:48.1745|DEBUG|OnDoc| +2026-04-23 19:37:48.1745|DEBUG|OnDoc| +2026-04-23 19:37:48.1907|DEBUG|OnDoc| +2026-04-23 19:37:48.1907|DEBUG|OnDoc| +2026-04-23 19:37:48.1907|DEBUG|OnDoc| +2026-04-23 19:37:48.2090|DEBUG|OnDoc|Generate_Word +2026-04-23 19:37:48.2090|DEBUG|OnDoc|Word2013 +2026-04-23 19:37:48.2090|DEBUG|OnDoc|Word2013 +2026-04-23 19:37:48.6076|DEBUG|OnDoc|Generate_Word +2026-04-23 19:37:48.6307|DEBUG|OnDoc| +2026-04-23 19:37:48.6307|DEBUG|OnDoc| +2026-04-23 19:37:48.6930|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024649 +2026-04-23 19:37:48.6930|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:37:48.6930|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:37:53.5761|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:37:53.6937|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:37:53.7301|INFO|APIDocLog|Input JSON +2026-04-23 19:37:53.7301|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:37:53.7301|DEBUG|OnDoc| +2026-04-23 19:37:53.7385|DEBUG|OnDoc| +2026-04-23 19:37:53.7385|DEBUG|OnDoc| +2026-04-23 19:37:53.7385|DEBUG|OnDoc| +2026-04-23 19:38:28.8413|DEBUG|OnDoc| +2026-04-23 19:38:28.8820|DEBUG|OnDoc| +2026-04-23 19:38:28.8820|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:38:28.8820|DEBUG|OnDoc| +2026-04-23 19:38:28.8820|DEBUG|OnDoc| +2026-04-23 19:38:28.8820|DEBUG|OnDoc| +2026-04-23 19:38:28.8820|DEBUG|OnDoc| +2026-04-23 19:38:28.8820|DEBUG|OnDoc| +2026-04-23 19:38:28.8930|DEBUG|OnDoc| +2026-04-23 19:38:28.8930|DEBUG|OnDoc| +2026-04-23 19:38:28.8930|DEBUG|OnDoc| +2026-04-23 19:38:28.9169|DEBUG|OnDoc| +2026-04-23 19:38:28.9169|DEBUG|OnDoc| +2026-04-23 19:38:28.9525|DEBUG|OnDoc| +2026-04-23 19:38:28.9525|DEBUG|OnDoc| +2026-04-23 19:38:28.9749|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:38:28.9749|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:38:28.9749|DEBUG|OnDoc| +2026-04-23 19:38:28.9749|DEBUG|OnDoc| +2026-04-23 19:38:28.9749|DEBUG|OnDoc| +2026-04-23 19:38:28.9749|DEBUG|OnDoc| +2026-04-23 19:38:28.9749|DEBUG|OnDoc| +2026-04-23 19:38:28.9906|DEBUG|OnDoc| +2026-04-23 19:38:28.9906|DEBUG|OnDoc| +2026-04-23 19:38:28.9906|DEBUG|OnDoc| +2026-04-23 19:38:28.9906|DEBUG|OnDoc|Generate_Word +2026-04-23 19:38:29.0027|DEBUG|OnDoc|Word2013 +2026-04-23 19:38:29.0027|DEBUG|OnDoc|Word2013 +2026-04-23 19:38:29.3876|DEBUG|OnDoc|Generate_Word +2026-04-23 19:38:29.4231|DEBUG|OnDoc| +2026-04-23 19:38:29.4267|DEBUG|OnDoc| +2026-04-23 19:38:29.4867|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024657 +2026-04-23 19:38:29.4882|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:38:29.4882|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:38:32.4651|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:38:32.5606|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:38:32.5972|INFO|APIDocLog|Input JSON +2026-04-23 19:38:32.5972|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:38:32.5972|DEBUG|OnDoc| +2026-04-23 19:38:32.5972|DEBUG|OnDoc| +2026-04-23 19:38:32.5972|DEBUG|OnDoc| +2026-04-23 19:38:32.5972|DEBUG|OnDoc| +2026-04-23 19:39:32.8658|DEBUG|OnDoc| +2026-04-23 19:39:32.9019|DEBUG|OnDoc| +2026-04-23 19:39:32.9019|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:39:32.9019|DEBUG|OnDoc| +2026-04-23 19:39:32.9019|DEBUG|OnDoc| +2026-04-23 19:39:32.9019|DEBUG|OnDoc| +2026-04-23 19:39:32.9019|DEBUG|OnDoc| +2026-04-23 19:39:32.9019|DEBUG|OnDoc| +2026-04-23 19:39:32.9019|DEBUG|OnDoc| +2026-04-23 19:39:32.9019|DEBUG|OnDoc| +2026-04-23 19:39:32.9019|DEBUG|OnDoc| +2026-04-23 19:39:32.9296|DEBUG|OnDoc| +2026-04-23 19:39:32.9296|DEBUG|OnDoc| +2026-04-23 19:39:32.9658|DEBUG|OnDoc| +2026-04-23 19:39:32.9658|DEBUG|OnDoc| +2026-04-23 19:39:32.9907|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:39:32.9907|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:39:32.9907|DEBUG|OnDoc| +2026-04-23 19:39:33.0050|DEBUG|OnDoc| +2026-04-23 19:39:33.0050|DEBUG|OnDoc| +2026-04-23 19:39:33.0050|DEBUG|OnDoc| +2026-04-23 19:39:33.0050|DEBUG|OnDoc| +2026-04-23 19:39:33.0050|DEBUG|OnDoc| +2026-04-23 19:39:33.0050|DEBUG|OnDoc| +2026-04-23 19:39:33.0218|DEBUG|OnDoc| +2026-04-23 19:39:33.0218|DEBUG|OnDoc|Generate_Word +2026-04-23 19:39:33.0218|DEBUG|OnDoc|Word2013 +2026-04-23 19:39:33.0218|DEBUG|OnDoc|Word2013 +2026-04-23 19:39:33.4271|DEBUG|OnDoc|Generate_Word +2026-04-23 19:39:33.4549|DEBUG|OnDoc| +2026-04-23 19:39:33.4579|DEBUG|OnDoc| +2026-04-23 19:39:33.5203|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024665 +2026-04-23 19:39:33.5203|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:39:33.5203|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:39:49.2222|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:39:49.3619|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:39:49.4142|INFO|APIDocLog|Input JSON +2026-04-23 19:39:49.4142|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:39:49.4142|DEBUG|OnDoc| +2026-04-23 19:39:49.4142|DEBUG|OnDoc| +2026-04-23 19:39:49.4142|DEBUG|OnDoc| +2026-04-23 19:39:49.4277|DEBUG|OnDoc| +2026-04-23 19:41:29.2345|DEBUG|OnDoc| +2026-04-23 19:41:29.2721|DEBUG|OnDoc| +2026-04-23 19:41:29.2721|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:41:29.2721|DEBUG|OnDoc| +2026-04-23 19:41:29.2721|DEBUG|OnDoc| +2026-04-23 19:41:29.2721|DEBUG|OnDoc| +2026-04-23 19:41:29.2721|DEBUG|OnDoc| +2026-04-23 19:41:29.2721|DEBUG|OnDoc| +2026-04-23 19:41:29.2721|DEBUG|OnDoc| +2026-04-23 19:41:29.2721|DEBUG|OnDoc| +2026-04-23 19:41:29.2721|DEBUG|OnDoc| +2026-04-23 19:41:29.3001|DEBUG|OnDoc| +2026-04-23 19:41:29.3001|DEBUG|OnDoc| +2026-04-23 19:41:29.3291|DEBUG|OnDoc| +2026-04-23 19:41:29.3311|DEBUG|OnDoc| +2026-04-23 19:41:29.3518|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:41:29.3518|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:41:29.3518|DEBUG|OnDoc| +2026-04-23 19:41:29.3628|DEBUG|OnDoc| +2026-04-23 19:41:29.3628|DEBUG|OnDoc| +2026-04-23 19:41:29.3628|DEBUG|OnDoc| +2026-04-23 19:41:29.3628|DEBUG|OnDoc| +2026-04-23 19:41:29.3628|DEBUG|OnDoc| +2026-04-23 19:41:29.3628|DEBUG|OnDoc| +2026-04-23 19:41:29.3628|DEBUG|OnDoc| +2026-04-23 19:41:29.3628|DEBUG|OnDoc|Generate_Word +2026-04-23 19:41:29.3816|DEBUG|OnDoc|Word2013 +2026-04-23 19:41:29.3816|DEBUG|OnDoc|Word2013 +2026-04-23 19:41:29.7976|DEBUG|OnDoc|Generate_Word +2026-04-23 19:41:29.8275|DEBUG|OnDoc| +2026-04-23 19:41:29.8275|DEBUG|OnDoc| +2026-04-23 19:41:29.8931|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024670 +2026-04-23 19:41:29.8931|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:41:29.8931|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:41:47.4943|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:41:47.6102|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:41:47.6529|INFO|APIDocLog|Input JSON +2026-04-23 19:41:47.6529|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:41:47.6603|DEBUG|OnDoc| +2026-04-23 19:41:47.6603|DEBUG|OnDoc| +2026-04-23 19:41:47.6603|DEBUG|OnDoc| +2026-04-23 19:41:47.6603|DEBUG|OnDoc| +2026-04-23 19:42:14.3066|DEBUG|OnDoc| +2026-04-23 19:42:14.3849|DEBUG|OnDoc| +2026-04-23 19:42:14.3849|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:42:14.3849|DEBUG|OnDoc| +2026-04-23 19:42:14.3849|DEBUG|OnDoc| +2026-04-23 19:42:14.3849|DEBUG|OnDoc| +2026-04-23 19:42:14.3849|DEBUG|OnDoc| +2026-04-23 19:42:14.3849|DEBUG|OnDoc| +2026-04-23 19:42:14.3849|DEBUG|OnDoc| +2026-04-23 19:42:14.3849|DEBUG|OnDoc| +2026-04-23 19:42:14.3935|DEBUG|OnDoc| +2026-04-23 19:42:14.4182|DEBUG|OnDoc| +2026-04-23 19:42:14.4182|DEBUG|OnDoc| +2026-04-23 19:42:14.4454|DEBUG|OnDoc| +2026-04-23 19:42:14.4454|DEBUG|OnDoc| +2026-04-23 19:42:14.4676|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:42:14.4676|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:42:14.4676|DEBUG|OnDoc| +2026-04-23 19:42:14.4832|DEBUG|OnDoc| +2026-04-23 19:42:14.4832|DEBUG|OnDoc| +2026-04-23 19:42:14.4832|DEBUG|OnDoc| +2026-04-23 19:42:14.4832|DEBUG|OnDoc| +2026-04-23 19:42:14.4900|DEBUG|OnDoc| +2026-04-23 19:42:14.4900|DEBUG|OnDoc| +2026-04-23 19:42:14.4900|DEBUG|OnDoc| +2026-04-23 19:42:14.4900|DEBUG|OnDoc|Generate_Word +2026-04-23 19:42:14.5076|DEBUG|OnDoc|Word2013 +2026-04-23 19:42:14.5076|DEBUG|OnDoc|Word2013 +2026-04-23 19:42:14.8970|DEBUG|OnDoc|Generate_Word +2026-04-23 19:42:14.9225|DEBUG|OnDoc| +2026-04-23 19:42:14.9245|DEBUG|OnDoc| +2026-04-23 19:42:14.9848|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024681 +2026-04-23 19:42:14.9848|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:42:14.9848|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:42:40.2288|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:42:40.3657|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:42:40.4119|INFO|APIDocLog|Input JSON +2026-04-23 19:42:40.4119|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:42:40.4119|DEBUG|OnDoc| +2026-04-23 19:42:40.4119|DEBUG|OnDoc| +2026-04-23 19:42:40.4119|DEBUG|OnDoc| +2026-04-23 19:42:40.4255|DEBUG|OnDoc| +2026-04-23 19:43:03.7902|DEBUG|OnDoc| +2026-04-23 19:43:03.8266|DEBUG|OnDoc| +2026-04-23 19:43:03.8266|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:43:03.8311|DEBUG|OnDoc| +2026-04-23 19:43:03.8311|DEBUG|OnDoc| +2026-04-23 19:43:03.8311|DEBUG|OnDoc| +2026-04-23 19:43:03.8311|DEBUG|OnDoc| +2026-04-23 19:43:03.8311|DEBUG|OnDoc| +2026-04-23 19:43:03.8311|DEBUG|OnDoc| +2026-04-23 19:43:03.8311|DEBUG|OnDoc| +2026-04-23 19:43:03.8311|DEBUG|OnDoc| +2026-04-23 19:43:03.8636|DEBUG|OnDoc| +2026-04-23 19:43:03.8636|DEBUG|OnDoc| +2026-04-23 19:43:03.8938|DEBUG|OnDoc| +2026-04-23 19:43:03.8938|DEBUG|OnDoc| +2026-04-23 19:43:03.9179|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:43:03.9179|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:43:03.9179|DEBUG|OnDoc| +2026-04-23 19:43:03.9319|DEBUG|OnDoc| +2026-04-23 19:43:03.9319|DEBUG|OnDoc| +2026-04-23 19:43:03.9319|DEBUG|OnDoc| +2026-04-23 19:43:03.9319|DEBUG|OnDoc| +2026-04-23 19:43:03.9429|DEBUG|OnDoc| +2026-04-23 19:43:03.9429|DEBUG|OnDoc| +2026-04-23 19:43:03.9429|DEBUG|OnDoc| +2026-04-23 19:43:03.9429|DEBUG|OnDoc|Generate_Word +2026-04-23 19:43:03.9581|DEBUG|OnDoc|Word2013 +2026-04-23 19:43:03.9581|DEBUG|OnDoc|Word2013 +2026-04-23 19:43:04.3510|DEBUG|OnDoc|Generate_Word +2026-04-23 19:43:04.3920|DEBUG|OnDoc| +2026-04-23 19:43:04.3940|DEBUG|OnDoc| +2026-04-23 19:43:04.4579|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024696 +2026-04-23 19:43:04.4579|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:43:04.4579|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:43:07.1572|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:43:07.2448|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:43:07.2816|INFO|APIDocLog|Input JSON +2026-04-23 19:43:07.2846|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:43:07.2846|DEBUG|OnDoc| +2026-04-23 19:43:07.2846|DEBUG|OnDoc| +2026-04-23 19:43:07.2846|DEBUG|OnDoc| +2026-04-23 19:43:07.2846|DEBUG|OnDoc| +2026-04-23 19:44:53.1359|DEBUG|OnDoc| +2026-04-23 19:44:53.1728|DEBUG|OnDoc| +2026-04-23 19:44:53.1728|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:44:53.1753|DEBUG|OnDoc| +2026-04-23 19:44:53.1753|DEBUG|OnDoc| +2026-04-23 19:44:53.1753|DEBUG|OnDoc| +2026-04-23 19:44:53.1753|DEBUG|OnDoc| +2026-04-23 19:44:53.1753|DEBUG|OnDoc| +2026-04-23 19:44:53.1753|DEBUG|OnDoc| +2026-04-23 19:44:53.1753|DEBUG|OnDoc| +2026-04-23 19:44:53.1753|DEBUG|OnDoc| +2026-04-23 19:44:53.2019|DEBUG|OnDoc| +2026-04-23 19:44:53.2019|DEBUG|OnDoc| +2026-04-23 19:44:53.2369|DEBUG|OnDoc| +2026-04-23 19:44:53.2369|DEBUG|OnDoc| +2026-04-23 19:44:53.2651|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:44:53.2651|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:44:53.2681|DEBUG|OnDoc| +2026-04-23 19:44:53.2681|DEBUG|OnDoc| +2026-04-23 19:44:53.2681|DEBUG|OnDoc| +2026-04-23 19:44:53.2681|DEBUG|OnDoc| +2026-04-23 19:44:53.2681|DEBUG|OnDoc| +2026-04-23 19:44:53.2948|DEBUG|OnDoc| +2026-04-23 19:44:53.2948|DEBUG|OnDoc| +2026-04-23 19:44:53.3063|DEBUG|OnDoc| +2026-04-23 19:44:53.3063|DEBUG|OnDoc|Generate_Word +2026-04-23 19:44:53.3161|DEBUG|OnDoc|Word2013 +2026-04-23 19:44:53.3161|DEBUG|OnDoc|Word2013 +2026-04-23 19:44:53.7129|DEBUG|OnDoc|Generate_Word +2026-04-23 19:44:53.7503|DEBUG|OnDoc| +2026-04-23 19:44:53.7539|DEBUG|OnDoc| +2026-04-23 19:44:53.8209|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024708 +2026-04-23 19:44:53.8209|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:44:53.8209|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:47:53.6174|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:47:53.7235|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:47:53.7612|INFO|APIDocLog|Input JSON +2026-04-23 19:47:53.7612|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:47:53.7612|DEBUG|OnDoc| +2026-04-23 19:47:53.7698|DEBUG|OnDoc| +2026-04-23 19:47:53.7698|DEBUG|OnDoc| +2026-04-23 19:47:53.7698|DEBUG|OnDoc| +2026-04-23 19:47:53.7698|DEBUG|OnDoc| +2026-04-23 19:47:53.7698|DEBUG|OnDoc| +2026-04-23 19:47:53.7698|ERROR|APIDocLog|Error Verify +2026-04-23 19:48:05.2077|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:48:05.3107|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:48:05.3497|INFO|APIDocLog|Input JSON +2026-04-23 19:48:05.3497|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:48:05.3497|DEBUG|OnDoc| +2026-04-23 19:48:05.3497|DEBUG|OnDoc| +2026-04-23 19:48:05.3497|DEBUG|OnDoc| +2026-04-23 19:48:05.3497|DEBUG|OnDoc| +2026-04-23 19:48:56.4424|DEBUG|OnDoc| +2026-04-23 19:48:56.4791|DEBUG|OnDoc| +2026-04-23 19:48:56.4791|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:48:56.4791|DEBUG|OnDoc| +2026-04-23 19:48:56.4791|DEBUG|OnDoc| +2026-04-23 19:48:56.4791|DEBUG|OnDoc| +2026-04-23 19:48:56.4885|DEBUG|OnDoc| +2026-04-23 19:48:56.4885|DEBUG|OnDoc| +2026-04-23 19:48:56.4885|DEBUG|OnDoc| +2026-04-23 19:48:56.4885|DEBUG|OnDoc| +2026-04-23 19:48:56.4885|DEBUG|OnDoc| +2026-04-23 19:48:56.5177|DEBUG|OnDoc| +2026-04-23 19:48:56.5197|DEBUG|OnDoc| +2026-04-23 19:48:56.5630|DEBUG|OnDoc| +2026-04-23 19:48:56.5660|DEBUG|OnDoc| +2026-04-23 19:48:56.5891|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:48:56.5891|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:48:56.5891|DEBUG|OnDoc| +2026-04-23 19:48:56.6052|DEBUG|OnDoc| +2026-04-23 19:48:56.6052|DEBUG|OnDoc| +2026-04-23 19:48:56.6052|DEBUG|OnDoc| +2026-04-23 19:48:56.6052|DEBUG|OnDoc| +2026-04-23 19:48:56.6206|DEBUG|OnDoc| +2026-04-23 19:48:56.6206|DEBUG|OnDoc| +2026-04-23 19:48:56.6306|DEBUG|OnDoc| +2026-04-23 19:48:56.6306|DEBUG|OnDoc|Generate_Word +2026-04-23 19:48:56.6306|DEBUG|OnDoc|Word2013 +2026-04-23 19:48:56.6306|DEBUG|OnDoc|Word2013 +2026-04-23 19:48:57.0412|DEBUG|OnDoc|Generate_Word +2026-04-23 19:48:57.0696|DEBUG|OnDoc| +2026-04-23 19:48:57.0696|DEBUG|OnDoc| +2026-04-23 19:48:57.1390|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024713 +2026-04-23 19:48:57.1390|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:48:57.1390|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:49:37.9104|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:49:38.0890|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:49:38.1478|INFO|APIDocLog|Input JSON +2026-04-23 19:49:38.1478|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:49:38.1478|DEBUG|OnDoc| +2026-04-23 19:49:38.1478|DEBUG|OnDoc| +2026-04-23 19:49:38.1478|DEBUG|OnDoc| +2026-04-23 19:49:38.1606|DEBUG|OnDoc| +2026-04-23 19:50:06.9242|DEBUG|OnDoc| +2026-04-23 19:50:06.9604|DEBUG|OnDoc| +2026-04-23 19:50:06.9604|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:50:06.9604|DEBUG|OnDoc| +2026-04-23 19:50:06.9604|DEBUG|OnDoc| +2026-04-23 19:50:06.9604|DEBUG|OnDoc| +2026-04-23 19:50:06.9604|DEBUG|OnDoc| +2026-04-23 19:50:06.9604|DEBUG|OnDoc| +2026-04-23 19:50:06.9604|DEBUG|OnDoc| +2026-04-23 19:50:06.9604|DEBUG|OnDoc| +2026-04-23 19:50:06.9604|DEBUG|OnDoc| +2026-04-23 19:50:06.9890|DEBUG|OnDoc| +2026-04-23 19:50:06.9890|DEBUG|OnDoc| +2026-04-23 19:50:07.0223|DEBUG|OnDoc| +2026-04-23 19:50:07.0223|DEBUG|OnDoc| +2026-04-23 19:50:07.0519|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:50:07.0519|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:50:07.0519|DEBUG|OnDoc| +2026-04-23 19:50:07.0519|DEBUG|OnDoc| +2026-04-23 19:50:07.0519|DEBUG|OnDoc| +2026-04-23 19:50:07.0519|DEBUG|OnDoc| +2026-04-23 19:50:07.0519|DEBUG|OnDoc| +2026-04-23 19:50:07.0715|DEBUG|OnDoc| +2026-04-23 19:50:07.0715|DEBUG|OnDoc| +2026-04-23 19:50:07.0715|DEBUG|OnDoc| +2026-04-23 19:50:07.0715|DEBUG|OnDoc|Generate_Word +2026-04-23 19:50:07.0864|DEBUG|OnDoc|Word2013 +2026-04-23 19:50:07.0864|DEBUG|OnDoc|Word2013 +2026-04-23 19:50:07.5466|DEBUG|OnDoc|Generate_Word +2026-04-23 19:50:07.5715|DEBUG|OnDoc| +2026-04-23 19:50:07.5715|DEBUG|OnDoc| +2026-04-23 19:50:07.6375|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024729 +2026-04-23 19:50:07.6375|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:50:07.6375|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:50:10.4035|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:50:10.4967|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:50:10.5372|INFO|APIDocLog|Input JSON +2026-04-23 19:50:10.5372|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:50:10.5372|DEBUG|OnDoc| +2026-04-23 19:50:10.5372|DEBUG|OnDoc| +2026-04-23 19:50:10.5372|DEBUG|OnDoc| +2026-04-23 19:50:10.5372|DEBUG|OnDoc| +2026-04-23 19:50:32.8427|DEBUG|OnDoc| +2026-04-23 19:50:32.8799|DEBUG|OnDoc| +2026-04-23 19:50:32.8799|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:50:32.8799|DEBUG|OnDoc| +2026-04-23 19:50:32.8799|DEBUG|OnDoc| +2026-04-23 19:50:32.8799|DEBUG|OnDoc| +2026-04-23 19:50:32.8799|DEBUG|OnDoc| +2026-04-23 19:50:32.8799|DEBUG|OnDoc| +2026-04-23 19:50:32.8799|DEBUG|OnDoc| +2026-04-23 19:50:32.8799|DEBUG|OnDoc| +2026-04-23 19:50:32.8799|DEBUG|OnDoc| +2026-04-23 19:50:32.9114|DEBUG|OnDoc| +2026-04-23 19:50:32.9114|DEBUG|OnDoc| +2026-04-23 19:50:32.9431|DEBUG|OnDoc| +2026-04-23 19:50:32.9431|DEBUG|OnDoc| +2026-04-23 19:50:32.9651|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:50:32.9651|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:50:32.9651|DEBUG|OnDoc| +2026-04-23 19:50:32.9745|DEBUG|OnDoc| +2026-04-23 19:50:32.9745|DEBUG|OnDoc| +2026-04-23 19:50:32.9745|DEBUG|OnDoc| +2026-04-23 19:50:32.9745|DEBUG|OnDoc| +2026-04-23 19:50:32.9745|DEBUG|OnDoc| +2026-04-23 19:50:32.9745|DEBUG|OnDoc| +2026-04-23 19:50:32.9745|DEBUG|OnDoc| +2026-04-23 19:50:32.9745|DEBUG|OnDoc|Generate_Word +2026-04-23 19:50:32.9914|DEBUG|OnDoc|Word2013 +2026-04-23 19:50:32.9914|DEBUG|OnDoc|Word2013 +2026-04-23 19:50:33.4092|DEBUG|OnDoc|Generate_Word +2026-04-23 19:50:33.4339|DEBUG|OnDoc| +2026-04-23 19:50:33.4339|DEBUG|OnDoc| +2026-04-23 19:50:33.4935|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024737 +2026-04-23 19:50:33.4935|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:50:33.4935|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:51:13.0629|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:51:13.2396|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:51:13.2998|INFO|APIDocLog|Input JSON +2026-04-23 19:51:13.2998|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:51:13.2998|DEBUG|OnDoc| +2026-04-23 19:51:13.2998|DEBUG|OnDoc| +2026-04-23 19:51:13.2998|DEBUG|OnDoc| +2026-04-23 19:51:13.2998|DEBUG|OnDoc| +2026-04-23 19:51:47.1333|DEBUG|OnDoc| +2026-04-23 19:51:47.1707|DEBUG|OnDoc| +2026-04-23 19:51:47.1707|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:51:47.1767|DEBUG|OnDoc| +2026-04-23 19:51:47.1767|DEBUG|OnDoc| +2026-04-23 19:51:47.1767|DEBUG|OnDoc| +2026-04-23 19:51:47.1767|DEBUG|OnDoc| +2026-04-23 19:51:47.1767|DEBUG|OnDoc| +2026-04-23 19:51:47.1767|DEBUG|OnDoc| +2026-04-23 19:51:47.1767|DEBUG|OnDoc| +2026-04-23 19:51:47.1767|DEBUG|OnDoc| +2026-04-23 19:51:47.2088|DEBUG|OnDoc| +2026-04-23 19:51:47.2088|DEBUG|OnDoc| +2026-04-23 19:51:47.2477|DEBUG|OnDoc| +2026-04-23 19:51:47.2477|DEBUG|OnDoc| +2026-04-23 19:51:47.2724|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:51:47.2845|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:51:47.2845|DEBUG|OnDoc| +2026-04-23 19:51:47.3165|DEBUG|OnDoc| +2026-04-23 19:51:47.3165|DEBUG|OnDoc| +2026-04-23 19:51:47.3165|DEBUG|OnDoc| +2026-04-23 19:51:47.3165|DEBUG|OnDoc| +2026-04-23 19:51:47.3351|DEBUG|OnDoc| +2026-04-23 19:51:47.3351|DEBUG|OnDoc| +2026-04-23 19:51:47.3351|DEBUG|OnDoc| +2026-04-23 19:51:47.3351|DEBUG|OnDoc|Generate_Word +2026-04-23 19:51:47.3550|DEBUG|OnDoc|Word2013 +2026-04-23 19:51:47.3550|DEBUG|OnDoc|Word2013 +2026-04-23 19:51:47.7738|DEBUG|OnDoc|Generate_Word +2026-04-23 19:51:47.8019|DEBUG|OnDoc| +2026-04-23 19:51:47.8019|DEBUG|OnDoc| +2026-04-23 19:51:47.8715|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024745 +2026-04-23 19:51:47.8715|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:51:47.8715|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:52:27.4101|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:52:27.5129|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:52:27.5495|INFO|APIDocLog|Input JSON +2026-04-23 19:52:27.5495|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:52:27.5495|DEBUG|OnDoc| +2026-04-23 19:52:27.5495|DEBUG|OnDoc| +2026-04-23 19:52:27.5495|DEBUG|OnDoc| +2026-04-23 19:52:27.5495|DEBUG|OnDoc| +2026-04-23 19:52:27.5495|DEBUG|OnDoc| +2026-04-23 19:52:27.5495|DEBUG|OnDoc| +2026-04-23 19:52:27.5495|ERROR|APIDocLog|Error Verify +2026-04-23 19:52:36.2179|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:52:36.3295|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:52:36.3693|INFO|APIDocLog|Input JSON +2026-04-23 19:52:36.3693|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:52:36.3693|DEBUG|OnDoc| +2026-04-23 19:52:36.3781|DEBUG|OnDoc| +2026-04-23 19:52:36.3781|DEBUG|OnDoc| +2026-04-23 19:52:36.3781|DEBUG|OnDoc| +2026-04-23 19:53:06.9702|DEBUG|OnDoc| +2026-04-23 19:53:06.9794|DEBUG|OnDoc| +2026-04-23 19:53:06.9794|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:53:06.9794|DEBUG|OnDoc| +2026-04-23 19:53:06.9794|DEBUG|OnDoc| +2026-04-23 19:53:06.9794|DEBUG|OnDoc| +2026-04-23 19:53:06.9794|DEBUG|OnDoc| +2026-04-23 19:53:06.9794|DEBUG|OnDoc| +2026-04-23 19:53:06.9794|DEBUG|OnDoc| +2026-04-23 19:53:06.9794|DEBUG|OnDoc| +2026-04-23 19:53:06.9871|DEBUG|OnDoc| +2026-04-23 19:53:07.0122|DEBUG|OnDoc| +2026-04-23 19:53:07.0122|DEBUG|OnDoc| +2026-04-23 19:53:07.0482|DEBUG|OnDoc| +2026-04-23 19:53:07.0505|DEBUG|OnDoc| +2026-04-23 19:53:07.0715|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:53:07.0715|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:53:07.0715|DEBUG|OnDoc| +2026-04-23 19:53:07.0811|DEBUG|OnDoc| +2026-04-23 19:53:07.0811|DEBUG|OnDoc| +2026-04-23 19:53:07.0811|DEBUG|OnDoc| +2026-04-23 19:53:07.0811|DEBUG|OnDoc| +2026-04-23 19:53:07.0811|DEBUG|OnDoc| +2026-04-23 19:53:07.0811|DEBUG|OnDoc| +2026-04-23 19:53:07.0811|DEBUG|OnDoc| +2026-04-23 19:53:07.0979|DEBUG|OnDoc|Generate_Word +2026-04-23 19:53:07.0979|DEBUG|OnDoc|Word2013 +2026-04-23 19:53:07.0979|DEBUG|OnDoc|Word2013 +2026-04-23 19:53:07.5384|DEBUG|OnDoc|Generate_Word +2026-04-23 19:53:07.5674|DEBUG|OnDoc| +2026-04-23 19:53:07.5674|DEBUG|OnDoc| +2026-04-23 19:53:07.6260|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024750 +2026-04-23 19:53:07.6260|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:53:07.6281|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:54:17.6955|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:54:17.8374|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:54:17.9077|INFO|APIDocLog|Input JSON +2026-04-23 19:54:17.9107|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:54:17.9107|DEBUG|OnDoc| +2026-04-23 19:54:17.9107|DEBUG|OnDoc| +2026-04-23 19:54:17.9107|DEBUG|OnDoc| +2026-04-23 19:54:17.9107|DEBUG|OnDoc| +2026-04-23 19:54:39.6252|DEBUG|OnDoc| +2026-04-23 19:54:39.6609|DEBUG|OnDoc| +2026-04-23 19:54:39.6609|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 19:54:39.6609|DEBUG|OnDoc| +2026-04-23 19:54:39.6609|DEBUG|OnDoc| +2026-04-23 19:54:39.6609|DEBUG|OnDoc| +2026-04-23 19:54:39.6609|DEBUG|OnDoc| +2026-04-23 19:54:39.6609|DEBUG|OnDoc| +2026-04-23 19:54:39.6609|DEBUG|OnDoc| +2026-04-23 19:54:39.6609|DEBUG|OnDoc| +2026-04-23 19:54:39.6609|DEBUG|OnDoc| +2026-04-23 19:54:39.6948|DEBUG|OnDoc| +2026-04-23 19:54:39.6948|DEBUG|OnDoc| +2026-04-23 19:54:39.7420|DEBUG|OnDoc| +2026-04-23 19:54:39.7420|DEBUG|OnDoc| +2026-04-23 19:54:39.7729|DEBUG|APIDocLog|DocGenerator +2026-04-23 19:54:39.7729|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 19:54:39.7729|DEBUG|OnDoc| +2026-04-23 19:54:39.7914|DEBUG|OnDoc| +2026-04-23 19:54:39.7914|DEBUG|OnDoc| +2026-04-23 19:54:39.7914|DEBUG|OnDoc| +2026-04-23 19:54:39.7914|DEBUG|OnDoc| +2026-04-23 19:54:39.8140|DEBUG|OnDoc| +2026-04-23 19:54:39.8160|DEBUG|OnDoc| +2026-04-23 19:54:39.8160|DEBUG|OnDoc| +2026-04-23 19:54:39.8160|DEBUG|OnDoc|Generate_Word +2026-04-23 19:54:39.8362|DEBUG|OnDoc|Word2013 +2026-04-23 19:54:39.8362|DEBUG|OnDoc|Word2013 +2026-04-23 19:54:40.2674|DEBUG|OnDoc|Generate_Word +2026-04-23 19:54:40.2927|DEBUG|OnDoc| +2026-04-23 19:54:40.2927|DEBUG|OnDoc| +2026-04-23 19:54:40.3571|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024761 +2026-04-23 19:54:40.3571|INFO|DocLog|Dokument über API erstellt +2026-04-23 19:54:40.3571|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 19:54:42.7136|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:54:42.8002|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:54:42.8390|INFO|APIDocLog|Input JSON +2026-04-23 19:54:42.8390|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:54:42.8390|DEBUG|OnDoc| +2026-04-23 19:54:42.8465|DEBUG|OnDoc| +2026-04-23 19:54:42.8465|DEBUG|OnDoc| +2026-04-23 19:54:42.8465|DEBUG|OnDoc| +2026-04-23 19:59:44.0386|DEBUG|OnDoc| +2026-04-23 19:59:44.1332|DEBUG|OnDoc| +2026-04-23 19:59:44.1332|DEBUG|OnDoc| +2026-04-23 19:59:44.1332|DEBUG|OnDoc| +2026-04-23 19:59:49.0209|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:59:49.2077|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:59:49.2394|INFO|APIDocLog|Input JSON +2026-04-23 19:59:49.2583|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:59:49.3461|DEBUG|OnDoc| +2026-04-23 19:59:49.3569|DEBUG|OnDoc| +2026-04-23 19:59:49.3634|DEBUG|OnDoc| +2026-04-23 19:59:49.3634|DEBUG|OnDoc| +2026-04-23 19:59:49.3634|DEBUG|OnDoc| +2026-04-23 19:59:49.3634|DEBUG|OnDoc| +2026-04-23 19:59:49.3902|ERROR|APIDocLog|Error Verify +2026-04-23 19:59:59.6143|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 19:59:59.7008|INFO|APIDocLog|Start CreateCLM +2026-04-23 19:59:59.7220|INFO|APIDocLog|Input JSON +2026-04-23 19:59:59.7220|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 19:59:59.7220|DEBUG|OnDoc| +2026-04-23 19:59:59.7220|DEBUG|OnDoc| +2026-04-23 19:59:59.7220|DEBUG|OnDoc| +2026-04-23 19:59:59.7402|DEBUG|OnDoc| +2026-04-23 20:00:40.7884|DEBUG|OnDoc| +2026-04-23 20:00:40.8246|DEBUG|OnDoc| +2026-04-23 20:00:40.8326|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 20:00:40.8326|DEBUG|OnDoc| +2026-04-23 20:00:40.8326|DEBUG|OnDoc| +2026-04-23 20:00:40.8495|DEBUG|OnDoc| +2026-04-23 20:00:40.8495|DEBUG|OnDoc| +2026-04-23 20:00:40.8495|DEBUG|OnDoc| +2026-04-23 20:00:40.8495|DEBUG|OnDoc| +2026-04-23 20:00:40.8495|DEBUG|OnDoc| +2026-04-23 20:00:40.8495|DEBUG|OnDoc| +2026-04-23 20:00:40.9043|DEBUG|OnDoc| +2026-04-23 20:00:40.9095|DEBUG|OnDoc| +2026-04-23 20:00:40.9418|DEBUG|OnDoc| +2026-04-23 20:00:40.9418|DEBUG|OnDoc| +2026-04-23 20:00:40.9558|DEBUG|APIDocLog|DocGenerator +2026-04-23 20:00:40.9558|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 20:00:40.9558|DEBUG|OnDoc| +2026-04-23 20:00:40.9716|DEBUG|OnDoc| +2026-04-23 20:00:40.9716|DEBUG|OnDoc| +2026-04-23 20:00:40.9716|DEBUG|OnDoc| +2026-04-23 20:00:40.9716|DEBUG|OnDoc| +2026-04-23 20:00:40.9716|DEBUG|OnDoc| +2026-04-23 20:00:40.9716|DEBUG|OnDoc| +2026-04-23 20:00:40.9926|DEBUG|OnDoc| +2026-04-23 20:00:40.9926|DEBUG|OnDoc|Generate_Word +2026-04-23 20:00:41.5112|DEBUG|OnDoc|Word2013 +2026-04-23 20:00:41.5218|DEBUG|OnDoc|Word2013 +2026-04-23 20:00:42.5688|DEBUG|OnDoc|Generate_Word +2026-04-23 20:00:42.6012|DEBUG|OnDoc| +2026-04-23 20:00:42.6012|DEBUG|OnDoc| +2026-04-23 20:00:43.0394|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024776 +2026-04-23 20:00:43.0394|INFO|DocLog|Dokument über API erstellt +2026-04-23 20:00:43.0394|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 20:01:06.7294|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 20:01:06.8087|INFO|APIDocLog|Start CreateCLM +2026-04-23 20:01:06.8277|INFO|APIDocLog|Input JSON +2026-04-23 20:01:06.8311|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 20:01:06.8311|DEBUG|OnDoc| +2026-04-23 20:01:06.8311|DEBUG|OnDoc| +2026-04-23 20:01:06.8311|DEBUG|OnDoc| +2026-04-23 20:01:06.8311|DEBUG|OnDoc| +2026-04-23 20:01:33.8724|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-23 20:01:59.1224|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 20:01:59.1994|INFO|APIDocLog|Start CreateCLM +2026-04-23 20:01:59.2197|INFO|APIDocLog|Input JSON +2026-04-23 20:01:59.2237|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 20:01:59.2237|DEBUG|OnDoc| +2026-04-23 20:01:59.2237|DEBUG|OnDoc| +2026-04-23 20:01:59.2237|DEBUG|OnDoc| +2026-04-23 20:01:59.2237|DEBUG|OnDoc| +2026-04-23 20:07:31.9501|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-23 20:07:53.6927|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 20:07:53.7847|INFO|APIDocLog|Start CreateCLM +2026-04-23 20:07:53.8081|INFO|APIDocLog|Input JSON +2026-04-23 20:07:53.8081|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 20:07:53.8081|DEBUG|OnDoc| +2026-04-23 20:07:53.8156|DEBUG|OnDoc| +2026-04-23 20:07:53.8156|DEBUG|OnDoc| +2026-04-23 20:07:53.8156|DEBUG|OnDoc| +2026-04-23 20:08:07.7236|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-23 20:21:59.7827|DEBUG|OnDoc| +2026-04-23 20:21:59.8814|DEBUG|OnDoc| +2026-04-23 20:21:59.8814|DEBUG|OnDoc| +2026-04-23 20:21:59.8814|DEBUG|OnDoc| +2026-04-23 20:22:40.6538|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 20:22:52.9300|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-23 20:22:52.9823|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-23 20:23:02.9776|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 20:23:15.1154|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-23 20:23:15.1504|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-23 20:24:40.2761|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 20:24:40.3960|INFO|APIDocLog|Start CreateCLM +2026-04-23 20:24:40.4306|INFO|APIDocLog|Input JSON +2026-04-23 20:24:40.4464|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 20:24:40.5338|DEBUG|OnDoc| +2026-04-23 20:24:40.5338|DEBUG|OnDoc| +2026-04-23 20:24:40.5522|DEBUG|OnDoc| +2026-04-23 20:24:40.5522|DEBUG|OnDoc| +2026-04-23 20:24:54.7979|ERROR|APIDocLog|ONDOC-ERR-CreateCLM +2026-04-23 20:25:03.3362|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 20:25:03.4192|INFO|APIDocLog|Start CreateCLM +2026-04-23 20:25:03.4401|INFO|APIDocLog|Input JSON +2026-04-23 20:25:03.4401|DEBUG|APIDocLog|Create CLMDocItem +2026-04-23 20:25:03.4401|DEBUG|OnDoc| +2026-04-23 20:25:03.4401|DEBUG|OnDoc| +2026-04-23 20:25:03.4401|DEBUG|OnDoc| +2026-04-23 20:25:03.4401|DEBUG|OnDoc| +2026-04-23 20:25:35.7777|DEBUG|OnDoc| +2026-04-23 20:25:35.8140|DEBUG|OnDoc| +2026-04-23 20:25:35.8326|DEBUG|APIDocLog|Start GenDocCLM +2026-04-23 20:25:35.8326|DEBUG|OnDoc| +2026-04-23 20:25:35.8471|DEBUG|OnDoc| +2026-04-23 20:25:35.8471|DEBUG|OnDoc| +2026-04-23 20:25:35.8471|DEBUG|OnDoc| +2026-04-23 20:25:35.8471|DEBUG|OnDoc| +2026-04-23 20:25:35.8471|DEBUG|OnDoc| +2026-04-23 20:25:35.8471|DEBUG|OnDoc| +2026-04-23 20:25:35.8471|DEBUG|OnDoc| +2026-04-23 20:25:35.9045|DEBUG|OnDoc| +2026-04-23 20:25:35.9090|DEBUG|OnDoc| +2026-04-23 20:25:35.9449|DEBUG|OnDoc| +2026-04-23 20:25:35.9449|DEBUG|OnDoc| +2026-04-23 20:25:35.9612|DEBUG|APIDocLog|DocGenerator +2026-04-23 20:25:35.9612|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 20:25:35.9612|DEBUG|OnDoc| +2026-04-23 20:25:35.9789|DEBUG|OnDoc| +2026-04-23 20:25:35.9789|DEBUG|OnDoc| +2026-04-23 20:25:35.9789|DEBUG|OnDoc| +2026-04-23 20:25:35.9789|DEBUG|OnDoc| +2026-04-23 20:25:35.9895|DEBUG|OnDoc| +2026-04-23 20:25:35.9895|DEBUG|OnDoc| +2026-04-23 20:25:35.9895|DEBUG|OnDoc| +2026-04-23 20:25:35.9895|DEBUG|OnDoc|Generate_Word +2026-04-23 20:25:36.4304|DEBUG|OnDoc|Word2013 +2026-04-23 20:25:36.4402|DEBUG|OnDoc|Word2013 +2026-04-23 20:25:37.4781|DEBUG|OnDoc|Generate_Word +2026-04-23 20:25:37.5052|DEBUG|OnDoc| +2026-04-23 20:25:37.5052|DEBUG|OnDoc| +2026-04-23 20:25:37.9404|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024784 +2026-04-23 20:25:37.9404|INFO|DocLog|Dokument über API erstellt +2026-04-23 20:25:37.9404|INFO|APIDocLog|Dokument abgeschlossen +2026-04-23 21:00:15.4945|DEBUG|OnDoc| +2026-04-23 21:00:15.6051|DEBUG|OnDoc| +2026-04-23 21:00:15.6051|DEBUG|OnDoc| +2026-04-23 21:00:15.6051|DEBUG|OnDoc| +2026-04-23 21:00:15.8607|INFO|APIDocLog|DokumentGegnerator Start +2026-04-23 21:00:16.2961|INFO|APIDocLog|Start CreateDoc +2026-04-23 21:00:16.3976|INFO|APIDocLog|Input JSON +2026-04-23 21:00:16.4204|DEBUG|OnDoc|Start GenDoc +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:16.4245|DEBUG|OnDoc| +2026-04-23 21:00:20.3331|DEBUG|OnDoc| +2026-04-23 21:00:20.4416|DEBUG|OnDoc| +2026-04-23 21:00:42.1940|DEBUG|OnDoc| +2026-04-23 21:00:42.2479|DEBUG|OnDoc| +2026-04-23 21:01:09.4372|DEBUG|OnDoc| +2026-04-23 21:01:09.4732|DEBUG|OnDoc| +2026-04-23 21:01:09.4732|DEBUG|OnDoc| +2026-04-23 21:01:09.4732|DEBUG|OnDoc| +2026-04-23 21:01:09.4732|DEBUG|OnDoc| +2026-04-23 21:01:09.4732|DEBUG|OnDoc| +2026-04-23 21:01:09.4732|DEBUG|OnDoc| +2026-04-23 21:01:09.4732|DEBUG|OnDoc| +2026-04-23 21:01:09.4911|DEBUG|OnDoc| +2026-04-23 21:01:09.4911|DEBUG|OnDoc| +2026-04-23 21:01:09.4911|DEBUG|OnDoc| +2026-04-23 21:01:09.4911|DEBUG|OnDoc| +2026-04-23 21:01:09.4911|DEBUG|OnDoc| +2026-04-23 21:01:09.4911|DEBUG|OnDoc| +2026-04-23 21:01:09.4911|DEBUG|OnDoc| +2026-04-23 21:01:09.4911|DEBUG|OnDoc| +2026-04-23 21:01:09.4911|DEBUG|OnDoc| +2026-04-23 21:01:09.4911|DEBUG|OnDoc| +2026-04-23 21:01:09.5029|DEBUG|OnDoc| +2026-04-23 21:01:09.5029|DEBUG|OnDoc| +2026-04-23 21:01:09.5029|DEBUG|OnDoc| +2026-04-23 21:01:09.5029|DEBUG|OnDoc| +2026-04-23 21:01:09.5264|DEBUG|OnDoc| +2026-04-23 21:01:09.5264|DEBUG|OnDoc| +2026-04-23 21:01:09.5418|INFO|OnDoc|Image-Bezug: 4 +2026-04-23 21:01:09.7464|DEBUG|OnDoc| +2026-04-23 21:01:09.7559|DEBUG|OnDoc| +2026-04-23 21:01:09.8228|DEBUG|OnDoc| +2026-04-23 21:01:09.8228|DEBUG|OnDoc| +2026-04-23 21:01:09.8531|DEBUG|OnDoc| +2026-04-23 21:01:09.8531|DEBUG|OnDoc| +2026-04-23 21:01:09.8531|DEBUG|OnDoc| +2026-04-23 21:01:09.8531|DEBUG|OnDoc| +2026-04-23 21:01:09.8988|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-23 21:01:09.8988|DEBUG|OnDoc| +2026-04-23 21:01:09.9131|DEBUG|OnDoc| +2026-04-23 21:01:09.9131|DEBUG|OnDoc| +2026-04-23 21:01:09.9131|DEBUG|OnDoc| +2026-04-23 21:01:09.9131|DEBUG|OnDoc| +2026-04-23 21:01:09.9296|DEBUG|OnDoc| +2026-04-23 21:01:09.9296|DEBUG|OnDoc| +2026-04-23 21:01:09.9296|DEBUG|OnDoc| +2026-04-23 21:01:09.9296|DEBUG|OnDoc|Generate_Word +2026-04-23 21:01:10.5044|DEBUG|OnDoc|Word2013 +2026-04-23 21:01:10.5044|DEBUG|OnDoc|Word2013 +2026-04-23 21:01:12.8719|DEBUG|OnDoc|Generate_Word +2026-04-23 21:01:12.9176|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024792 +2026-04-23 21:01:12.9176|INFO|DocLog|Dokument über API erstellt +2026-04-23 21:01:12.9176|INFO|APIDocLog|Dokument return to sender +2026-04-23 21:01:12.9176|DEBUG|OnDoc| +2026-04-23 21:01:12.9317|DEBUG|OnDoc| +2026-04-23 21:01:12.9317|DEBUG|OnDoc| +2026-04-23 21:01:12.9317|DEBUG|OnDoc| +2026-04-23 21:01:12.9317|DEBUG|OnDoc| +2026-04-23 21:01:12.9317|DEBUG|OnDoc| +2026-04-25 09:07:57.4954|DEBUG|OnDoc| +2026-04-25 09:07:57.5944|DEBUG|OnDoc| +2026-04-25 09:07:57.5984|DEBUG|OnDoc| +2026-04-25 09:07:57.5984|DEBUG|OnDoc| +2026-04-25 09:09:30.0461|DEBUG|OnDoc| +2026-04-25 09:09:30.1085|DEBUG|OnDoc| +2026-04-25 09:09:30.1085|DEBUG|OnDoc| +2026-04-25 09:09:30.1140|DEBUG|OnDoc| +2026-04-25 09:13:58.6636|DEBUG|OnDoc| +2026-04-25 09:13:58.7350|DEBUG|OnDoc| +2026-04-25 09:13:58.7350|DEBUG|OnDoc| +2026-04-25 09:13:58.7390|DEBUG|OnDoc| +2026-04-25 09:19:12.8518|DEBUG|OnDoc| +2026-04-25 09:19:12.9189|DEBUG|OnDoc| +2026-04-25 09:19:12.9189|DEBUG|OnDoc| +2026-04-25 09:19:12.9189|DEBUG|OnDoc| +2026-04-25 09:21:30.3643|DEBUG|OnDoc| +2026-04-25 09:21:30.4268|DEBUG|OnDoc| +2026-04-25 09:21:30.4268|DEBUG|OnDoc| +2026-04-25 09:21:30.4268|DEBUG|OnDoc| +2026-04-25 09:23:55.0386|DEBUG|OnDoc| +2026-04-25 09:23:55.1022|DEBUG|OnDoc| +2026-04-25 09:23:55.1022|DEBUG|OnDoc| +2026-04-25 09:23:55.1022|DEBUG|OnDoc| +2026-04-25 09:25:07.9646|DEBUG|OnDoc| +2026-04-25 09:25:07.9801|DEBUG|OnDoc| +2026-04-25 09:25:08.1716|DEBUG|OnDoc| +2026-04-25 09:25:08.1786|DEBUG|OnDoc| +2026-04-25 09:25:08.1786|DEBUG|OnDoc| +2026-04-25 09:25:08.3688|DEBUG|OnDoc| +2026-04-25 09:25:08.4029|DEBUG|OnDoc|Start Transfer to OnBase +2026-04-25 09:25:08.4029|DEBUG|OnDoc|Upload URL:https://localhost:44303/API/Fast +2026-04-25 09:25:12.6220|DEBUG|OnDoc|Start Update IL_Log: DokumentID:192_0 +2026-04-25 09:25:12.6417|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:192_0 +2026-04-25 09:25:12.6577|ERROR|OnDoc|Ungültiger Spaltenname "fehlerdatum". +2026-04-25 09:25:12.7673|DEBUG|OnDoc| +2026-04-25 09:25:12.7728|DEBUG|OnDoc| +2026-04-25 09:25:12.7976|DEBUG|OnDoc| +2026-04-25 09:25:12.7976|DEBUG|OnDoc| +2026-04-25 09:25:12.8011|DEBUG|OnDoc| +2026-04-25 09:25:12.8011|DEBUG|OnDoc| +2026-04-25 09:25:12.8011|DEBUG|OnDoc|Start Transfer to OnBase +2026-04-25 09:25:12.8011|DEBUG|OnDoc|Upload URL:https://localhost:44303/API/Fast +2026-04-25 09:25:16.8833|DEBUG|OnDoc|Start Update IL_Log: DokumentID:192_1 +2026-04-25 09:25:16.8994|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:192_1 +2026-04-25 09:25:16.8994|ERROR|OnDoc|Ungültiger Spaltenname "fehlerdatum". +2026-04-26 07:33:54.8943|DEBUG|OnDoc| +2026-04-26 07:33:54.9982|DEBUG|OnDoc| +2026-04-26 07:33:54.9982|DEBUG|OnDoc| +2026-04-26 07:33:54.9982|DEBUG|OnDoc| +2026-04-26 07:33:55.4474|INFO|APIDocLog|DokumentGegnerator Start +2026-04-26 07:33:55.7542|INFO|APIDocLog|Start CreateDoc +2026-04-26 07:33:55.8755|INFO|APIDocLog|Input JSON +2026-04-26 07:33:55.9016|DEBUG|OnDoc|Start GenDoc +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9016|DEBUG|OnDoc| +2026-04-26 07:33:55.9186|DEBUG|OnDoc| +2026-04-26 07:34:01.3272|DEBUG|OnDoc| +2026-04-26 07:34:01.3407|DEBUG|OnDoc| +2026-04-26 07:34:01.4108|DEBUG|OnDoc| +2026-04-26 07:34:01.4188|DEBUG|OnDoc| +2026-04-26 07:34:01.4188|DEBUG|OnDoc| +2026-04-26 07:34:01.4188|DEBUG|OnDoc| +2026-04-26 07:34:01.4188|DEBUG|OnDoc| +2026-04-26 07:34:01.4188|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.4647|DEBUG|OnDoc| +2026-04-26 07:34:01.5045|DEBUG|OnDoc| +2026-04-26 07:34:01.5045|DEBUG|OnDoc| +2026-04-26 07:34:01.5228|INFO|OnDoc|Image-Bezug: 4 +2026-04-26 07:34:01.7628|DEBUG|OnDoc| +2026-04-26 07:34:01.7628|DEBUG|OnDoc| +2026-04-26 07:34:01.8223|DEBUG|OnDoc| +2026-04-26 07:34:01.8248|DEBUG|OnDoc| +2026-04-26 07:34:02.1376|DEBUG|OnDoc| +2026-04-26 07:34:02.1521|DEBUG|OnDoc| +2026-04-26 07:34:02.1521|DEBUG|OnDoc| +2026-04-26 07:34:02.1521|DEBUG|OnDoc| +2026-04-26 07:34:02.1806|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-26 07:34:02.1806|DEBUG|OnDoc| +2026-04-26 07:34:02.1912|DEBUG|OnDoc| +2026-04-26 07:34:02.1912|DEBUG|OnDoc| +2026-04-26 07:34:02.1912|DEBUG|OnDoc| +2026-04-26 07:34:02.1912|DEBUG|OnDoc| +2026-04-26 07:34:02.2528|DEBUG|OnDoc| +2026-04-26 07:34:02.2528|DEBUG|OnDoc| +2026-04-26 07:34:02.2528|DEBUG|OnDoc| +2026-04-26 07:34:02.2613|DEBUG|OnDoc|Generate_Word +2026-04-26 07:34:02.7393|DEBUG|OnDoc|Word2013 +2026-04-26 07:34:02.7453|DEBUG|OnDoc|Word2013 +2026-04-26 07:34:05.0016|DEBUG|OnDoc|Generate_Word +2026-04-26 07:34:05.0558|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024887 +2026-04-26 07:34:05.0578|INFO|DocLog|Dokument über API erstellt +2026-04-26 07:34:05.0578|INFO|APIDocLog|Dokument return to sender +2026-04-26 07:34:05.0578|DEBUG|OnDoc| +2026-04-26 07:34:05.0748|DEBUG|OnDoc| +2026-04-26 07:34:05.0748|DEBUG|OnDoc| +2026-04-26 07:34:05.0748|DEBUG|OnDoc| +2026-04-26 07:34:05.0748|DEBUG|OnDoc| +2026-04-26 07:34:05.0748|DEBUG|OnDoc| +2026-04-26 07:34:08.2370|INFO|APIDocLog|DokumentGegnerator Start +2026-04-26 07:34:08.2988|INFO|APIDocLog|Start CreateDoc +2026-04-26 07:34:08.3263|INFO|APIDocLog|Input JSON +2026-04-26 07:34:08.3263|DEBUG|OnDoc|Start GenDoc +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3263|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3394|DEBUG|OnDoc| +2026-04-26 07:34:08.3560|DEBUG|OnDoc| +2026-04-26 07:34:08.3560|INFO|OnDoc|Image-Bezug: 4 +2026-04-26 07:34:08.4062|DEBUG|OnDoc| +2026-04-26 07:34:08.4062|DEBUG|OnDoc| +2026-04-26 07:34:08.4286|DEBUG|OnDoc| +2026-04-26 07:34:08.4286|DEBUG|OnDoc| +2026-04-26 07:34:08.4377|DEBUG|OnDoc| +2026-04-26 07:34:08.4377|DEBUG|OnDoc| +2026-04-26 07:34:08.4377|DEBUG|OnDoc| +2026-04-26 07:34:08.4377|DEBUG|OnDoc| +2026-04-26 07:34:08.4564|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-26 07:34:08.4564|DEBUG|OnDoc| +2026-04-26 07:34:08.4564|DEBUG|OnDoc| +2026-04-26 07:34:08.4564|DEBUG|OnDoc| +2026-04-26 07:34:08.4650|DEBUG|OnDoc| +2026-04-26 07:34:08.4650|DEBUG|OnDoc| +2026-04-26 07:34:08.4650|DEBUG|OnDoc| +2026-04-26 07:34:08.4650|DEBUG|OnDoc| +2026-04-26 07:34:08.4650|DEBUG|OnDoc| +2026-04-26 07:34:08.4650|DEBUG|OnDoc|Generate_Word +2026-04-26 07:34:08.4841|DEBUG|OnDoc|Word2013 +2026-04-26 07:34:08.4841|DEBUG|OnDoc|Word2013 +2026-04-26 07:34:09.3066|DEBUG|OnDoc|Generate_Word +2026-04-26 07:34:09.3187|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024895 +2026-04-26 07:34:09.3187|INFO|DocLog|Dokument über API erstellt +2026-04-26 07:34:09.3187|INFO|APIDocLog|Dokument return to sender +2026-04-26 07:34:09.3187|DEBUG|OnDoc| +2026-04-26 07:34:09.3397|DEBUG|OnDoc| +2026-04-26 07:34:09.3397|DEBUG|OnDoc| +2026-04-26 07:34:09.3397|DEBUG|OnDoc| +2026-04-26 07:34:09.3397|DEBUG|OnDoc| +2026-04-26 07:34:09.3397|DEBUG|OnDoc| +2026-04-26 07:34:13.4281|INFO|APIDocLog|DokumentGegnerator Start +2026-04-26 07:34:13.4853|INFO|APIDocLog|Start CreateDoc +2026-04-26 07:34:13.5143|INFO|APIDocLog|Input JSON +2026-04-26 07:34:13.5143|DEBUG|OnDoc|Start GenDoc +2026-04-26 07:34:13.5143|DEBUG|OnDoc| +2026-04-26 07:34:13.5143|DEBUG|OnDoc| +2026-04-26 07:34:13.5143|DEBUG|OnDoc| +2026-04-26 07:34:13.5143|DEBUG|OnDoc| +2026-04-26 07:34:13.5143|DEBUG|OnDoc| +2026-04-26 07:34:13.5143|DEBUG|OnDoc| +2026-04-26 07:34:13.5143|DEBUG|OnDoc| +2026-04-26 07:34:13.5143|DEBUG|OnDoc| +2026-04-26 07:34:13.5143|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5274|DEBUG|OnDoc| +2026-04-26 07:34:13.5426|DEBUG|OnDoc| +2026-04-26 07:34:13.5426|DEBUG|OnDoc| +2026-04-26 07:34:13.5621|DEBUG|OnDoc| +2026-04-26 07:34:13.5621|DEBUG|OnDoc| +2026-04-26 07:34:13.5621|DEBUG|OnDoc| +2026-04-26 07:34:13.5621|DEBUG|OnDoc| +2026-04-26 07:34:13.5621|DEBUG|OnDoc| +2026-04-26 07:34:13.5741|DEBUG|OnDoc| +2026-04-26 07:34:13.5912|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-26 07:34:13.5912|DEBUG|OnDoc| +2026-04-26 07:34:13.5912|DEBUG|OnDoc| +2026-04-26 07:34:13.5912|DEBUG|OnDoc| +2026-04-26 07:34:13.5912|DEBUG|OnDoc| +2026-04-26 07:34:13.5912|DEBUG|OnDoc| +2026-04-26 07:34:13.6101|DEBUG|OnDoc| +2026-04-26 07:34:13.6101|DEBUG|OnDoc| +2026-04-26 07:34:13.6101|DEBUG|OnDoc| +2026-04-26 07:34:13.6101|DEBUG|OnDoc|Generate_Word +2026-04-26 07:34:13.6247|DEBUG|OnDoc|Word2013 +2026-04-26 07:34:13.6247|DEBUG|OnDoc|Word2013 +2026-04-26 07:34:14.1274|DEBUG|OnDoc|Generate_Word +2026-04-26 07:34:14.1419|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024905 +2026-04-26 07:34:14.1419|INFO|DocLog|Dokument über API erstellt +2026-04-26 07:34:14.1419|INFO|APIDocLog|Dokument return to sender +2026-04-26 07:34:14.1419|DEBUG|OnDoc| +2026-04-26 07:34:14.1419|DEBUG|OnDoc| +2026-04-26 07:34:14.1523|DEBUG|OnDoc| +2026-04-26 07:34:14.1523|DEBUG|OnDoc| +2026-04-26 07:34:14.1523|DEBUG|OnDoc| +2026-04-26 07:34:14.1523|DEBUG|OnDoc| +2026-04-26 07:34:23.4041|INFO|APIDocLog|DokumentGegnerator Start +2026-04-26 07:34:35.6210|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-26 07:34:35.6757|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) +2026-04-26 07:44:48.8160|INFO|APIDocLog|DokumentGegnerator Start +2026-04-26 07:44:48.9070|INFO|APIDocLog|Start CreateDoc +2026-04-26 07:44:48.9368|INFO|APIDocLog|Input JSON +2026-04-26 07:44:48.9368|DEBUG|OnDoc|Start GenDoc +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9368|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9496|DEBUG|OnDoc| +2026-04-26 07:44:48.9713|DEBUG|OnDoc| +2026-04-26 07:44:48.9713|DEBUG|OnDoc| +2026-04-26 07:44:48.9856|DEBUG|OnDoc| +2026-04-26 07:44:48.9856|DEBUG|OnDoc| +2026-04-26 07:44:48.9856|DEBUG|OnDoc| +2026-04-26 07:44:48.9856|DEBUG|OnDoc| +2026-04-26 07:44:49.0024|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-26 07:44:49.0024|DEBUG|OnDoc| +2026-04-26 07:44:49.0024|DEBUG|OnDoc| +2026-04-26 07:44:49.0110|DEBUG|OnDoc| +2026-04-26 07:44:49.0110|DEBUG|OnDoc| +2026-04-26 07:44:49.0110|DEBUG|OnDoc| +2026-04-26 07:44:49.0110|DEBUG|OnDoc| +2026-04-26 07:44:49.0110|DEBUG|OnDoc| +2026-04-26 07:44:49.0110|DEBUG|OnDoc| +2026-04-26 07:44:49.0110|DEBUG|OnDoc|Generate_Word +2026-04-26 07:44:49.0343|DEBUG|OnDoc|Word2013 +2026-04-26 07:44:49.0343|DEBUG|OnDoc|Word2013 +2026-04-26 07:44:49.5229|DEBUG|OnDoc|Generate_Word +2026-04-26 07:44:49.5339|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024910 +2026-04-26 07:44:49.5339|INFO|DocLog|Dokument über API erstellt +2026-04-26 07:44:49.5339|INFO|APIDocLog|Dokument return to sender +2026-04-26 07:44:49.5339|DEBUG|OnDoc| +2026-04-26 07:44:49.5339|DEBUG|OnDoc| +2026-04-26 07:44:49.5339|DEBUG|OnDoc| +2026-04-26 07:44:49.5339|DEBUG|OnDoc| +2026-04-26 07:44:49.5339|DEBUG|OnDoc| +2026-04-26 07:44:49.5339|DEBUG|OnDoc| +2026-04-26 07:44:54.2366|INFO|APIDocLog|DokumentGegnerator Start +2026-04-26 07:44:54.3101|INFO|APIDocLog|Start CreateDoc +2026-04-26 07:44:54.3347|INFO|APIDocLog|Input JSON +2026-04-26 07:44:54.3347|DEBUG|OnDoc|Start GenDoc +2026-04-26 07:44:54.3347|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3392|DEBUG|OnDoc| +2026-04-26 07:44:54.3695|DEBUG|OnDoc| +2026-04-26 07:44:54.3705|DEBUG|OnDoc| +2026-04-26 07:44:54.3705|DEBUG|OnDoc| +2026-04-26 07:44:54.3705|DEBUG|OnDoc| +2026-04-26 07:44:54.3705|DEBUG|OnDoc| +2026-04-26 07:44:54.3705|DEBUG|OnDoc| +2026-04-26 07:44:54.4026|DEBUG|OnDoc|Generate_Doc_EDOKA +2026-04-26 07:44:54.4026|DEBUG|OnDoc| +2026-04-26 07:44:54.4026|DEBUG|OnDoc| +2026-04-26 07:44:54.4026|DEBUG|OnDoc| +2026-04-26 07:44:54.4026|DEBUG|OnDoc| +2026-04-26 07:44:54.4026|DEBUG|OnDoc| +2026-04-26 07:44:54.4177|DEBUG|OnDoc| +2026-04-26 07:44:54.4177|DEBUG|OnDoc| +2026-04-26 07:44:54.4177|DEBUG|OnDoc| +2026-04-26 07:44:54.4177|DEBUG|OnDoc|Generate_Word +2026-04-26 07:44:54.4177|DEBUG|OnDoc|Word2013 +2026-04-26 07:44:54.4337|DEBUG|OnDoc|Word2013 +2026-04-26 07:44:54.9738|DEBUG|OnDoc|Generate_Word +2026-04-26 07:44:54.9859|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000024921 +2026-04-26 07:44:54.9859|INFO|DocLog|Dokument über API erstellt +2026-04-26 07:44:54.9859|INFO|APIDocLog|Dokument return to sender +2026-04-26 07:44:54.9859|DEBUG|OnDoc| +2026-04-26 07:44:54.9859|DEBUG|OnDoc| +2026-04-26 07:44:54.9859|DEBUG|OnDoc| +2026-04-26 07:44:54.9859|DEBUG|OnDoc| +2026-04-26 07:44:54.9859|DEBUG|OnDoc| +2026-04-26 07:44:54.9859|DEBUG|OnDoc| +2026-04-26 07:45:00.6142|INFO|APIDocLog|DokumentGegnerator Start +2026-04-26 07:45:12.7676|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail. +2026-04-26 07:45:12.8032|DEBUG|OnDoc|Mail Versand NOK - Exception Inner: System.Net.WebException: Der Remotename konnte nicht aufgelöst werden: 'smtp.tgcorp.ch' + bei System.Net.ServicePoint.GetConnection(PooledStream PooledStream, Object owner, Boolean async, IPAddress& address, Socket& abortSocket, Socket& abortSocket6) + bei System.Net.PooledStream.Activate(Object owningObject, Boolean async, GeneralAsyncDelegate asyncCallback) + bei System.Net.ConnectionPool.GetConnection(Object owningObject, GeneralAsyncDelegate asyncCallback, Int32 creationTimeout) + bei System.Net.Mail.SmtpConnection.GetConnection(ServicePoint servicePoint) + bei System.Net.Mail.SmtpClient.GetConnection() + bei System.Net.Mail.SmtpClient.Send(MailMessage message) diff --git a/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache b/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache index a6d800831..659525184 100644 Binary files a/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache and b/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache differ diff --git a/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll b/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll index adf5ab02c..1da68231a 100644 Binary files a/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll and b/API_NetFramework/obj/Debug/OnDoc_NetFramework.dll differ diff --git a/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb b/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb index c471d68a3..5ab4a7bb7 100644 Binary files a/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb and b/API_NetFramework/obj/Debug/OnDoc_NetFramework.pdb differ diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/Web.config b/API_NetFramework/obj/Debug/Package/PackageTmp/Web.config index a3dadcb79..aaa301537 100644 --- a/API_NetFramework/obj/Debug/Package/PackageTmp/Web.config +++ b/API_NetFramework/obj/Debug/Package/PackageTmp/Web.config @@ -49,6 +49,8 @@ + + diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/DOCGEN.dll b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/DOCGEN.dll index bfbe6c6de..1e943a650 100644 Binary files a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/DOCGEN.dll and b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/DOCGEN.dll differ diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/DOCGEN.pdb b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/DOCGEN.pdb index fce9152b9..6f3254fad 100644 Binary files a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/DOCGEN.pdb and b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/DOCGEN.pdb differ diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Database.dll b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Database.dll index 837d17c03..49f252634 100644 Binary files a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Database.dll and b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Database.dll differ diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Database.pdb b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Database.pdb index 46eefaa70..7360e4b13 100644 Binary files a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Database.pdb and b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Database.pdb differ diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/OnDoc_NetFramework.dll b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/OnDoc_NetFramework.dll index adf5ab02c..8c6a0f82a 100644 Binary files a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/OnDoc_NetFramework.dll and b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/OnDoc_NetFramework.dll differ diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/OnDoc_NetFramework.pdb b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/OnDoc_NetFramework.pdb index c471d68a3..03d68d5ce 100644 Binary files a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/OnDoc_NetFramework.pdb and b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/OnDoc_NetFramework.pdb differ diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Versandstrasse.dll b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Versandstrasse.dll index 195fc9387..672c6b571 100644 Binary files a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Versandstrasse.dll and b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Versandstrasse.dll differ diff --git a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Versandstrasse.pdb b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Versandstrasse.pdb index cdb33aaa3..1419cd19a 100644 Binary files a/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Versandstrasse.pdb and b/API_NetFramework/obj/Debug/Package/PackageTmp/bin/Versandstrasse.pdb differ diff --git a/API_NetFramework/obj/Debug/TransformWebConfig/original/Web.config b/API_NetFramework/obj/Debug/TransformWebConfig/original/Web.config index d234feccf..c95dd08bf 100644 --- a/API_NetFramework/obj/Debug/TransformWebConfig/original/Web.config +++ b/API_NetFramework/obj/Debug/TransformWebConfig/original/Web.config @@ -49,6 +49,8 @@ + + diff --git a/API_NetFramework/obj/Debug/TransformWebConfig/transformed/Web.config b/API_NetFramework/obj/Debug/TransformWebConfig/transformed/Web.config index a3dadcb79..aaa301537 100644 --- a/API_NetFramework/obj/Debug/TransformWebConfig/transformed/Web.config +++ b/API_NetFramework/obj/Debug/TransformWebConfig/transformed/Web.config @@ -49,6 +49,8 @@ + + diff --git a/BarcodeLib/bin/Debug/Database.dll b/BarcodeLib/bin/Debug/Database.dll index 837d17c03..49f252634 100644 Binary files a/BarcodeLib/bin/Debug/Database.dll and b/BarcodeLib/bin/Debug/Database.dll differ diff --git a/BarcodeLib/bin/Debug/Database.pdb b/BarcodeLib/bin/Debug/Database.pdb index 46eefaa70..7360e4b13 100644 Binary files a/BarcodeLib/bin/Debug/Database.pdb and b/BarcodeLib/bin/Debug/Database.pdb differ diff --git a/BarcodeLib/obj/Debug/BarcodeLib.csproj.AssemblyReference.cache b/BarcodeLib/obj/Debug/BarcodeLib.csproj.AssemblyReference.cache index c1ec96016..6fe414921 100644 Binary files a/BarcodeLib/obj/Debug/BarcodeLib.csproj.AssemblyReference.cache and b/BarcodeLib/obj/Debug/BarcodeLib.csproj.AssemblyReference.cache differ diff --git a/Client/Diverses/MitarbeiterProfil.cs b/Client/Diverses/MitarbeiterProfil.cs index d4fbcac0c..0d1a9afa9 100644 --- a/Client/Diverses/MitarbeiterProfil.cs +++ b/Client/Diverses/MitarbeiterProfil.cs @@ -97,7 +97,9 @@ namespace OnDoc.Diverses db = null; } - private void refresh_unterschriften_team() + private void + + refresh_unterschriften_team() { DB db = new DB(AppParams.connectionstring); db.clear_parameter(); diff --git a/Client/Diverses/SplashScreen.Designer.cs b/Client/Diverses/SplashScreen.Designer.cs index 0529727d3..276293f80 100644 --- a/Client/Diverses/SplashScreen.Designer.cs +++ b/Client/Diverses/SplashScreen.Designer.cs @@ -65,7 +65,7 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(472, 26); this.label2.TabIndex = 2; - this.label2.Text = "14. April 2026"; + this.label2.Text = "26. April 2026"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.label2.Click += new System.EventHandler(this.label2_Click); // diff --git a/Client/Versandstrasse/Versandstrasse.Designer.cs b/Client/Versandstrasse/Versandstrasse.Designer.cs index df9442b4e..798f3fec3 100644 --- a/Client/Versandstrasse/Versandstrasse.Designer.cs +++ b/Client/Versandstrasse/Versandstrasse.Designer.cs @@ -30,15 +30,15 @@ { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Versandstrasse)); - Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings messageBoxSettings1 = new Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings(); - Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings pdfViewerPrinterSettings1 = new Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings(); - Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings textSearchSettings1 = new Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings(); - Syncfusion.Windows.Forms.Tools.TreeNodeAdvStyleInfo treeNodeAdvStyleInfo1 = new Syncfusion.Windows.Forms.Tools.TreeNodeAdvStyleInfo(); + Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings messageBoxSettings7 = new Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings(); + Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings pdfViewerPrinterSettings7 = new Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings(); + Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings textSearchSettings7 = new Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings(); Syncfusion.Windows.Forms.Tools.TreeNodeAdvStyleInfo treeNodeAdvStyleInfo2 = new Syncfusion.Windows.Forms.Tools.TreeNodeAdvStyleInfo(); - Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings messageBoxSettings2 = new Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings(); - Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings pdfViewerPrinterSettings2 = new Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings(); - Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings textSearchSettings2 = new Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings(); Syncfusion.Windows.Forms.Tools.TreeNodeAdvStyleInfo treeNodeAdvStyleInfo3 = new Syncfusion.Windows.Forms.Tools.TreeNodeAdvStyleInfo(); + Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings messageBoxSettings8 = new Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings(); + Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings pdfViewerPrinterSettings8 = new Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings(); + Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings textSearchSettings8 = new Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings(); + Syncfusion.Windows.Forms.Tools.TreeNodeAdvStyleInfo treeNodeAdvStyleInfo4 = new Syncfusion.Windows.Forms.Tools.TreeNodeAdvStyleInfo(); this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); this.löschenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.externesPDFHinzufügenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); @@ -242,17 +242,17 @@ this.pdfViewerControl1.IsTextSearchEnabled = false; this.pdfViewerControl1.IsTextSelectionEnabled = false; this.pdfViewerControl1.Location = new System.Drawing.Point(908, 54); - messageBoxSettings1.EnableNotification = true; - this.pdfViewerControl1.MessageBoxSettings = messageBoxSettings1; + messageBoxSettings7.EnableNotification = true; + this.pdfViewerControl1.MessageBoxSettings = messageBoxSettings7; this.pdfViewerControl1.MinimumZoomPercentage = 50; this.pdfViewerControl1.Name = "pdfViewerControl1"; this.pdfViewerControl1.PageBorderThickness = 1; - pdfViewerPrinterSettings1.Copies = 1; - pdfViewerPrinterSettings1.PageOrientation = Syncfusion.Windows.PdfViewer.PdfViewerPrintOrientation.Auto; - pdfViewerPrinterSettings1.PageSize = Syncfusion.Windows.PdfViewer.PdfViewerPrintSize.ActualSize; - pdfViewerPrinterSettings1.PrintLocation = ((System.Drawing.PointF)(resources.GetObject("pdfViewerPrinterSettings1.PrintLocation"))); - pdfViewerPrinterSettings1.ShowPrintStatusDialog = true; - this.pdfViewerControl1.PrinterSettings = pdfViewerPrinterSettings1; + pdfViewerPrinterSettings7.Copies = 1; + pdfViewerPrinterSettings7.PageOrientation = Syncfusion.Windows.PdfViewer.PdfViewerPrintOrientation.Auto; + pdfViewerPrinterSettings7.PageSize = Syncfusion.Windows.PdfViewer.PdfViewerPrintSize.ActualSize; + pdfViewerPrinterSettings7.PrintLocation = ((System.Drawing.PointF)(resources.GetObject("pdfViewerPrinterSettings7.PrintLocation"))); + pdfViewerPrinterSettings7.ShowPrintStatusDialog = true; + this.pdfViewerControl1.PrinterSettings = pdfViewerPrinterSettings7; this.pdfViewerControl1.ReferencePath = null; this.pdfViewerControl1.ScrollDisplacementValue = 0; this.pdfViewerControl1.ShowHorizontalScrollBar = true; @@ -262,10 +262,10 @@ this.pdfViewerControl1.SpaceBetweenPages = 8; this.pdfViewerControl1.TabIndex = 10; this.pdfViewerControl1.Text = "pdfViewerControl1"; - textSearchSettings1.CurrentInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(255)))), ((int)(((byte)(171)))), ((int)(((byte)(64))))); - textSearchSettings1.HighlightAllInstance = true; - textSearchSettings1.OtherInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(0))))); - this.pdfViewerControl1.TextSearchSettings = textSearchSettings1; + textSearchSettings7.CurrentInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(255)))), ((int)(((byte)(171)))), ((int)(((byte)(64))))); + textSearchSettings7.HighlightAllInstance = true; + textSearchSettings7.OtherInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(0))))); + this.pdfViewerControl1.TextSearchSettings = textSearchSettings7; this.pdfViewerControl1.ThemeName = "Default"; this.pdfViewerControl1.VerticalScrollOffset = 0; this.pdfViewerControl1.VisualStyle = Syncfusion.Windows.Forms.PdfViewer.VisualStyle.Default; @@ -379,15 +379,15 @@ // treeViewAdvAdresse // this.treeViewAdvAdresse.BackgroundColor = new Syncfusion.Drawing.BrushInfo(System.Drawing.SystemColors.Window); - treeNodeAdvStyleInfo1.CheckBoxTickThickness = 1; - treeNodeAdvStyleInfo1.CheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); - treeNodeAdvStyleInfo1.EnsureDefaultOptionedChild = true; - treeNodeAdvStyleInfo1.IntermediateCheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); - treeNodeAdvStyleInfo1.OptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); - treeNodeAdvStyleInfo1.SelectedOptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(210))))); - treeNodeAdvStyleInfo1.TextColor = System.Drawing.Color.Black; + treeNodeAdvStyleInfo2.CheckBoxTickThickness = 1; + treeNodeAdvStyleInfo2.CheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + treeNodeAdvStyleInfo2.EnsureDefaultOptionedChild = true; + treeNodeAdvStyleInfo2.IntermediateCheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + treeNodeAdvStyleInfo2.OptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + treeNodeAdvStyleInfo2.SelectedOptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(210))))); + treeNodeAdvStyleInfo2.TextColor = System.Drawing.Color.Black; this.treeViewAdvAdresse.BaseStylePairs.AddRange(new Syncfusion.Windows.Forms.Tools.StyleNamePair[] { - new Syncfusion.Windows.Forms.Tools.StyleNamePair("Standard", treeNodeAdvStyleInfo1)}); + new Syncfusion.Windows.Forms.Tools.StyleNamePair("Standard", treeNodeAdvStyleInfo2)}); // // // @@ -816,16 +816,16 @@ this.treeViewAdv1.AllowDrop = true; this.treeViewAdv1.BackColor = System.Drawing.Color.White; this.treeViewAdv1.BackgroundColor = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))))); - treeNodeAdvStyleInfo2.CheckBoxTickThickness = 1; - treeNodeAdvStyleInfo2.CheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); - treeNodeAdvStyleInfo2.EnsureDefaultOptionedChild = true; - treeNodeAdvStyleInfo2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - treeNodeAdvStyleInfo2.IntermediateCheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); - treeNodeAdvStyleInfo2.OptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); - treeNodeAdvStyleInfo2.SelectedOptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(210))))); - treeNodeAdvStyleInfo2.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(43)))), ((int)(((byte)(43))))); + treeNodeAdvStyleInfo3.CheckBoxTickThickness = 1; + treeNodeAdvStyleInfo3.CheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + treeNodeAdvStyleInfo3.EnsureDefaultOptionedChild = true; + treeNodeAdvStyleInfo3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + treeNodeAdvStyleInfo3.IntermediateCheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + treeNodeAdvStyleInfo3.OptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + treeNodeAdvStyleInfo3.SelectedOptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(210))))); + treeNodeAdvStyleInfo3.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(43)))), ((int)(((byte)(43))))); this.treeViewAdv1.BaseStylePairs.AddRange(new Syncfusion.Windows.Forms.Tools.StyleNamePair[] { - new Syncfusion.Windows.Forms.Tools.StyleNamePair("Standard", treeNodeAdvStyleInfo2)}); + new Syncfusion.Windows.Forms.Tools.StyleNamePair("Standard", treeNodeAdvStyleInfo3)}); this.treeViewAdv1.Border3DStyle = System.Windows.Forms.Border3DStyle.Flat; this.treeViewAdv1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.treeViewAdv1.ContextMenuStrip = this.contextMenuStrip1; @@ -835,10 +835,8 @@ // // // - this.treeViewAdv1.HelpTextControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.treeViewAdv1.HelpTextControl.BaseThemeName = null; this.treeViewAdv1.HelpTextControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.treeViewAdv1.HelpTextControl.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(43)))), ((int)(((byte)(43))))); this.treeViewAdv1.HelpTextControl.Location = new System.Drawing.Point(732, 0); this.treeViewAdv1.HelpTextControl.Name = "helpText"; this.treeViewAdv1.HelpTextControl.Size = new System.Drawing.Size(49, 15); @@ -901,17 +899,17 @@ this.pdfViewerControl2.IsTextSearchEnabled = true; this.pdfViewerControl2.IsTextSelectionEnabled = true; this.pdfViewerControl2.Location = new System.Drawing.Point(482, 0); - messageBoxSettings2.EnableNotification = true; - this.pdfViewerControl2.MessageBoxSettings = messageBoxSettings2; + messageBoxSettings8.EnableNotification = true; + this.pdfViewerControl2.MessageBoxSettings = messageBoxSettings8; this.pdfViewerControl2.MinimumZoomPercentage = 50; this.pdfViewerControl2.Name = "pdfViewerControl2"; this.pdfViewerControl2.PageBorderThickness = 1; - pdfViewerPrinterSettings2.Copies = 1; - pdfViewerPrinterSettings2.PageOrientation = Syncfusion.Windows.PdfViewer.PdfViewerPrintOrientation.Auto; - pdfViewerPrinterSettings2.PageSize = Syncfusion.Windows.PdfViewer.PdfViewerPrintSize.ActualSize; - pdfViewerPrinterSettings2.PrintLocation = ((System.Drawing.PointF)(resources.GetObject("pdfViewerPrinterSettings2.PrintLocation"))); - pdfViewerPrinterSettings2.ShowPrintStatusDialog = true; - this.pdfViewerControl2.PrinterSettings = pdfViewerPrinterSettings2; + pdfViewerPrinterSettings8.Copies = 1; + pdfViewerPrinterSettings8.PageOrientation = Syncfusion.Windows.PdfViewer.PdfViewerPrintOrientation.Auto; + pdfViewerPrinterSettings8.PageSize = Syncfusion.Windows.PdfViewer.PdfViewerPrintSize.ActualSize; + pdfViewerPrinterSettings8.PrintLocation = ((System.Drawing.PointF)(resources.GetObject("pdfViewerPrinterSettings8.PrintLocation"))); + pdfViewerPrinterSettings8.ShowPrintStatusDialog = true; + this.pdfViewerControl2.PrinterSettings = pdfViewerPrinterSettings8; this.pdfViewerControl2.ReferencePath = null; this.pdfViewerControl2.ScrollDisplacementValue = 0; this.pdfViewerControl2.ShowHorizontalScrollBar = true; @@ -921,10 +919,10 @@ this.pdfViewerControl2.SpaceBetweenPages = 8; this.pdfViewerControl2.TabIndex = 11; this.pdfViewerControl2.Text = "pdfViewerControl2"; - textSearchSettings2.CurrentInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(255)))), ((int)(((byte)(171)))), ((int)(((byte)(64))))); - textSearchSettings2.HighlightAllInstance = true; - textSearchSettings2.OtherInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(0))))); - this.pdfViewerControl2.TextSearchSettings = textSearchSettings2; + textSearchSettings8.CurrentInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(255)))), ((int)(((byte)(171)))), ((int)(((byte)(64))))); + textSearchSettings8.HighlightAllInstance = true; + textSearchSettings8.OtherInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(0))))); + this.pdfViewerControl2.TextSearchSettings = textSearchSettings8; this.pdfViewerControl2.ThemeName = "Default"; this.pdfViewerControl2.VerticalScrollOffset = 0; this.pdfViewerControl2.VisualStyle = Syncfusion.Windows.Forms.PdfViewer.VisualStyle.Default; @@ -1048,16 +1046,16 @@ this.treeViewAdvCouverts.AllowMouseBasedSelection = true; this.treeViewAdvCouverts.BackColor = System.Drawing.Color.White; this.treeViewAdvCouverts.BackgroundColor = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))))); - treeNodeAdvStyleInfo3.CheckBoxTickThickness = 1; - treeNodeAdvStyleInfo3.CheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); - treeNodeAdvStyleInfo3.EnsureDefaultOptionedChild = true; - treeNodeAdvStyleInfo3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - treeNodeAdvStyleInfo3.IntermediateCheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); - treeNodeAdvStyleInfo3.OptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); - treeNodeAdvStyleInfo3.SelectedOptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(210))))); - treeNodeAdvStyleInfo3.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(43)))), ((int)(((byte)(43))))); + treeNodeAdvStyleInfo4.CheckBoxTickThickness = 1; + treeNodeAdvStyleInfo4.CheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + treeNodeAdvStyleInfo4.EnsureDefaultOptionedChild = true; + treeNodeAdvStyleInfo4.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + treeNodeAdvStyleInfo4.IntermediateCheckColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + treeNodeAdvStyleInfo4.OptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + treeNodeAdvStyleInfo4.SelectedOptionButtonColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(210))))); + treeNodeAdvStyleInfo4.TextColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(43)))), ((int)(((byte)(43))))); this.treeViewAdvCouverts.BaseStylePairs.AddRange(new Syncfusion.Windows.Forms.Tools.StyleNamePair[] { - new Syncfusion.Windows.Forms.Tools.StyleNamePair("Standard", treeNodeAdvStyleInfo3)}); + new Syncfusion.Windows.Forms.Tools.StyleNamePair("Standard", treeNodeAdvStyleInfo4)}); this.treeViewAdvCouverts.Border3DStyle = System.Windows.Forms.Border3DStyle.Flat; this.treeViewAdvCouverts.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.treeViewAdvCouverts.ContextMenuStrip = this.contextMenuStrip2; @@ -1067,10 +1065,8 @@ // // // - this.treeViewAdvCouverts.HelpTextControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); this.treeViewAdvCouverts.HelpTextControl.BaseThemeName = null; this.treeViewAdvCouverts.HelpTextControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.treeViewAdvCouverts.HelpTextControl.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(43)))), ((int)(((byte)(43))))); this.treeViewAdvCouverts.HelpTextControl.Location = new System.Drawing.Point(732, 0); this.treeViewAdvCouverts.HelpTextControl.Name = "helpText"; this.treeViewAdvCouverts.HelpTextControl.Size = new System.Drawing.Size(49, 15); diff --git a/Client/Versandstrasse/Versandstrasse.cs b/Client/Versandstrasse/Versandstrasse.cs index b857c6a25..c0b090aef 100644 --- a/Client/Versandstrasse/Versandstrasse.cs +++ b/Client/Versandstrasse/Versandstrasse.cs @@ -1923,12 +1923,16 @@ namespace OnDoc.Versandstrasse private void rbeinschreiben_CheckedChanged(object sender, EventArgs e) { + + Versandpaket vp = treeViewAdv1.SelectedNode.TagObject as Versandpaket; DB db = new DB(AppParams.connectionstring); try { if (rbeinschreiben.Checked == true) { + MessageBox.Show("Bei 'Einschreiben' wird die Hauptadresse von Avaloq auf dem Adressträger verwendet und kann dadurch von der Zustelladresse im Dokument abweichen.", "Versandart", MessageBoxButtons.OK, MessageBoxIcon.Information); + db.Get_Tabledata("Select dbo.fnkt_ondoc_check_landcode(" + vp.partnernr.ToString() + ")", false, true); try { diff --git a/Client/Versandstrasse/Versandstrasse.resx b/Client/Versandstrasse/Versandstrasse.resx index 086826620..c5cae2317 100644 --- a/Client/Versandstrasse/Versandstrasse.resx +++ b/Client/Versandstrasse/Versandstrasse.resx @@ -128,7 +128,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAD0 - DAAAAk1TRnQBSQFMAgEBBgEAAYABAQGAAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + DAAAAk1TRnQBSQFMAgEBBgEAAYgBAQGIAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAASADAAEBAQABCAYAAQgYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -194,7 +194,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAU - DAAAAk1TRnQBSQFMAgEBBQEAAYgBAQGIAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + DAAAAk1TRnQBSQFMAgEBBQEAAZABAQGQAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAASADAAEBAQABCAYAAQgYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -248,7 +248,7 @@ AYABAQIAAeABBwHAAQMBwAEDAgAB8AEPAfABDwHwAQ8BgAEBCw== - + AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0 dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh @@ -337,7 +337,7 @@ /wM19F1wo1uqCAAAAABJRU5ErkJggg== - + AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0 dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh @@ -355,7 +355,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAq - CQAAAk1TRnQBSQFMAgEBAwEAAUgBAQFIAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + CQAAAk1TRnQBSQFMAgEBAwEAAVABAQFQAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA diff --git a/Client/bin/Debug/DOCGEN.dll b/Client/bin/Debug/DOCGEN.dll index 727d9d6c9..1e943a650 100644 Binary files a/Client/bin/Debug/DOCGEN.dll and b/Client/bin/Debug/DOCGEN.dll differ diff --git a/Client/bin/Debug/DOCGEN.pdb b/Client/bin/Debug/DOCGEN.pdb index 6d7467909..6f3254fad 100644 Binary files a/Client/bin/Debug/DOCGEN.pdb and b/Client/bin/Debug/DOCGEN.pdb differ diff --git a/Client/bin/Debug/Database.dll b/Client/bin/Debug/Database.dll index 837d17c03..49f252634 100644 Binary files a/Client/bin/Debug/Database.dll and b/Client/bin/Debug/Database.dll differ diff --git a/Client/bin/Debug/Database.pdb b/Client/bin/Debug/Database.pdb index 46eefaa70..7360e4b13 100644 Binary files a/Client/bin/Debug/Database.pdb and b/Client/bin/Debug/Database.pdb differ diff --git a/Client/bin/Debug/OnDoc.exe b/Client/bin/Debug/OnDoc.exe index 358bfc96b..7ee864fc8 100644 Binary files a/Client/bin/Debug/OnDoc.exe and b/Client/bin/Debug/OnDoc.exe differ diff --git a/Client/bin/Debug/OnDoc.pdb b/Client/bin/Debug/OnDoc.pdb index 17965c80d..620dc35e2 100644 Binary files a/Client/bin/Debug/OnDoc.pdb and b/Client/bin/Debug/OnDoc.pdb differ diff --git a/Client/bin/Debug/OnDocClient.zip b/Client/bin/Debug/OnDocClient.zip index f141c9fd0..13bcdc8f0 100644 Binary files a/Client/bin/Debug/OnDocClient.zip and b/Client/bin/Debug/OnDocClient.zip differ diff --git a/Client/bin/Debug/Versandstrasse.dll b/Client/bin/Debug/Versandstrasse.dll index 195fc9387..672c6b571 100644 Binary files a/Client/bin/Debug/Versandstrasse.dll and b/Client/bin/Debug/Versandstrasse.dll differ diff --git a/Client/bin/Debug/Versandstrasse.pdb b/Client/bin/Debug/Versandstrasse.pdb index cdb33aaa3..1419cd19a 100644 Binary files a/Client/bin/Debug/Versandstrasse.pdb and b/Client/bin/Debug/Versandstrasse.pdb differ diff --git a/Client/bin/Debug/de-DE/OnDoc.resources.dll b/Client/bin/Debug/de-DE/OnDoc.resources.dll index 690b9cd4f..b70471945 100644 Binary files a/Client/bin/Debug/de-DE/OnDoc.resources.dll and b/Client/bin/Debug/de-DE/OnDoc.resources.dll differ diff --git a/Client/obj/Debug/Client.csproj.AssemblyReference.cache b/Client/obj/Debug/Client.csproj.AssemblyReference.cache index 8194db6cb..96f410827 100644 Binary files a/Client/obj/Debug/Client.csproj.AssemblyReference.cache and b/Client/obj/Debug/Client.csproj.AssemblyReference.cache differ diff --git a/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache index fe91d14e0..5a13ae129 100644 Binary files a/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Client/obj/Debug/OnDoc.Versandstrasse.Versandstrasse.resources b/Client/obj/Debug/OnDoc.Versandstrasse.Versandstrasse.resources index 7ae231de1..af9103aca 100644 Binary files a/Client/obj/Debug/OnDoc.Versandstrasse.Versandstrasse.resources and b/Client/obj/Debug/OnDoc.Versandstrasse.Versandstrasse.resources differ diff --git a/Client/obj/Debug/OnDoc.exe b/Client/obj/Debug/OnDoc.exe index 358bfc96b..7ee864fc8 100644 Binary files a/Client/obj/Debug/OnDoc.exe and b/Client/obj/Debug/OnDoc.exe differ diff --git a/Client/obj/Debug/OnDoc.pdb b/Client/obj/Debug/OnDoc.pdb index 17965c80d..620dc35e2 100644 Binary files a/Client/obj/Debug/OnDoc.pdb and b/Client/obj/Debug/OnDoc.pdb differ diff --git a/Client/obj/Debug/de-DE/OnDoc.resources.dll b/Client/obj/Debug/de-DE/OnDoc.resources.dll index 690b9cd4f..b70471945 100644 Binary files a/Client/obj/Debug/de-DE/OnDoc.resources.dll and b/Client/obj/Debug/de-DE/OnDoc.resources.dll differ diff --git a/DOCGEN/Klassen/SyncFWord.cs b/DOCGEN/Klassen/SyncFWord.cs index 699709200..646d2e5c5 100644 --- a/DOCGEN/Klassen/SyncFWord.cs +++ b/DOCGEN/Klassen/SyncFWord.cs @@ -341,13 +341,14 @@ namespace DOCGEN.Klassen picture.HorizontalPosition = Convert.ToInt32(item.top); picture.HorizontalOrigin = HorizontalOrigin.Page; picture.VerticalOrigin = VerticalOrigin.Page; - picture.TextWrappingStyle = TextWrappingStyle.Square; + picture.TextWrappingStyle = TextWrappingStyle.Behind; picture.TextWrappingType = TextWrappingType.Largest; + picture2.VerticalPosition = picture.VerticalPosition; picture2.HorizontalPosition = picture.HorizontalPosition; picture2.HorizontalOrigin = HorizontalOrigin.Page; picture2.VerticalOrigin = VerticalOrigin.Page; - picture2.TextWrappingStyle = TextWrappingStyle.Square; + picture2.TextWrappingStyle = TextWrappingStyle.Behind; picture2.TextWrappingType = TextWrappingType.Largest; picture.Rotation = 0; @@ -361,6 +362,7 @@ namespace DOCGEN.Klassen picture2.VerticalPosition = picture.VerticalPosition; picture2.HorizontalPosition = picture.HorizontalPosition; + //foreach (IWSection section in document.Sections) //{ IWSection section = document.Sections[0]; @@ -1978,6 +1980,7 @@ namespace DOCGEN.Klassen public string style = ""; public string fontname = ""; public string fontsize = ""; + public List rows; } diff --git a/DOCGEN/bin/Debug/DOCGEN.dll b/DOCGEN/bin/Debug/DOCGEN.dll index bfbe6c6de..1e943a650 100644 Binary files a/DOCGEN/bin/Debug/DOCGEN.dll and b/DOCGEN/bin/Debug/DOCGEN.dll differ diff --git a/DOCGEN/bin/Debug/DOCGEN.pdb b/DOCGEN/bin/Debug/DOCGEN.pdb index fce9152b9..6f3254fad 100644 Binary files a/DOCGEN/bin/Debug/DOCGEN.pdb and b/DOCGEN/bin/Debug/DOCGEN.pdb differ diff --git a/DOCGEN/bin/Debug/Database.dll b/DOCGEN/bin/Debug/Database.dll index 837d17c03..49f252634 100644 Binary files a/DOCGEN/bin/Debug/Database.dll and b/DOCGEN/bin/Debug/Database.dll differ diff --git a/DOCGEN/bin/Debug/Database.pdb b/DOCGEN/bin/Debug/Database.pdb index 46eefaa70..7360e4b13 100644 Binary files a/DOCGEN/bin/Debug/Database.pdb and b/DOCGEN/bin/Debug/Database.pdb differ diff --git a/DOCGEN/obj/Debug/DOCGEN.dll b/DOCGEN/obj/Debug/DOCGEN.dll index bfbe6c6de..1e943a650 100644 Binary files a/DOCGEN/obj/Debug/DOCGEN.dll and b/DOCGEN/obj/Debug/DOCGEN.dll differ diff --git a/DOCGEN/obj/Debug/DOCGEN.pdb b/DOCGEN/obj/Debug/DOCGEN.pdb index fce9152b9..6f3254fad 100644 Binary files a/DOCGEN/obj/Debug/DOCGEN.pdb and b/DOCGEN/obj/Debug/DOCGEN.pdb differ diff --git a/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache b/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache index a71487f13..395a85786 100644 Binary files a/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache and b/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache differ diff --git a/Database/bin/Debug/Database.dll b/Database/bin/Debug/Database.dll index 837d17c03..49f252634 100644 Binary files a/Database/bin/Debug/Database.dll and b/Database/bin/Debug/Database.dll differ diff --git a/Database/bin/Debug/Database.pdb b/Database/bin/Debug/Database.pdb index 46eefaa70..7360e4b13 100644 Binary files a/Database/bin/Debug/Database.pdb and b/Database/bin/Debug/Database.pdb differ diff --git a/Database/db.cs b/Database/db.cs index 58098c27b..cf523ef1f 100644 --- a/Database/db.cs +++ b/Database/db.cs @@ -297,7 +297,7 @@ namespace Database return Convert.ToInt32(mitarbeiter); } - Get_Tabledata("Select * from mitarbeiter where tgnummer='" + mitarbeiter + "'", false, true); + Get_Tabledata("Select * from mitarbeiter where aktiv=1 and tgnummer='" + mitarbeiter + "'", false, true); if (dsdaten.Tables[0].Rows.Count < 1) { return 0; diff --git a/Database/obj/Debug/Database.dll b/Database/obj/Debug/Database.dll index 837d17c03..49f252634 100644 Binary files a/Database/obj/Debug/Database.dll and b/Database/obj/Debug/Database.dll differ diff --git a/Database/obj/Debug/Database.pdb b/Database/obj/Debug/Database.pdb index 46eefaa70..7360e4b13 100644 Binary files a/Database/obj/Debug/Database.pdb and b/Database/obj/Debug/Database.pdb differ diff --git a/OnDocOffice/bin/Debug/DOCGEN.dll b/OnDocOffice/bin/Debug/DOCGEN.dll index bfbe6c6de..1e943a650 100644 Binary files a/OnDocOffice/bin/Debug/DOCGEN.dll and b/OnDocOffice/bin/Debug/DOCGEN.dll differ diff --git a/OnDocOffice/bin/Debug/DOCGEN.pdb b/OnDocOffice/bin/Debug/DOCGEN.pdb index fce9152b9..6f3254fad 100644 Binary files a/OnDocOffice/bin/Debug/DOCGEN.pdb and b/OnDocOffice/bin/Debug/DOCGEN.pdb differ diff --git a/OnDocOffice/bin/Debug/Database.dll b/OnDocOffice/bin/Debug/Database.dll index 837d17c03..49f252634 100644 Binary files a/OnDocOffice/bin/Debug/Database.dll and b/OnDocOffice/bin/Debug/Database.dll differ diff --git a/OnDocOffice/bin/Debug/Database.pdb b/OnDocOffice/bin/Debug/Database.pdb index 46eefaa70..7360e4b13 100644 Binary files a/OnDocOffice/bin/Debug/Database.pdb and b/OnDocOffice/bin/Debug/Database.pdb differ diff --git a/OnDocOffice/obj/Debug/OnDocOffice.csproj.AssemblyReference.cache b/OnDocOffice/obj/Debug/OnDocOffice.csproj.AssemblyReference.cache index 58e73043f..8789e7c56 100644 Binary files a/OnDocOffice/obj/Debug/OnDocOffice.csproj.AssemblyReference.cache and b/OnDocOffice/obj/Debug/OnDocOffice.csproj.AssemblyReference.cache differ diff --git a/Versandstrasse/Class1.cs b/Versandstrasse/Class1.cs index a6b7d6293..c44c61394 100644 --- a/Versandstrasse/Class1.cs +++ b/Versandstrasse/Class1.cs @@ -9,6 +9,7 @@ using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Data.SqlTypes; +using System.Diagnostics.Eventing.Reader; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; @@ -88,10 +89,12 @@ namespace Versandstrasse public void writelog(string inhalt) { - // inhalt = DateTime.Now + " / " + inhalt; + // inhalt = DateTime.Now + " / " + inhalt; //System.IO.File.AppendAllText(@"h:\edoka_work\vs.log", Environment.NewLine + inhalt); } - public string FixPageBreaks(string base64Pdf) + + + public string FixPageBreaks(string base64Pdf, bool rotate) { byte[] inputBytes = Convert.FromBase64String(base64Pdf); @@ -140,6 +143,7 @@ namespace Versandstrasse lastBreakIndex = i; lastOrientation = currentOrientation; } + // if (isLandscape) { loadedDoc.Pages[i].Rotation== PdfPageRotateAngle.RotateAngle90;} i++; } @@ -155,8 +159,11 @@ namespace Versandstrasse loadedDoc.Pages.Add(lastSize); } + loadedDoc.Save(outputStream); + loadedDoc.Close(true); + return Convert.ToBase64String(outputStream.ToArray()); } @@ -164,7 +171,7 @@ namespace Versandstrasse - private bool IsLandscape(float width, float height, PdfPageRotateAngle rotation) + private bool IsLandscape(float width, float height, PdfPageRotateAngle rotation) { bool landscape = width > height; @@ -181,7 +188,7 @@ namespace Versandstrasse // ========================================================= // 📄 A4 erkennen (mit Toleranz) // ========================================================= - private bool IsA4(PdfLoadedPage page) + private bool IsA4(PdfLoadedPage page) { const float tolerance = 5f; @@ -199,13 +206,155 @@ namespace Versandstrasse Landscape } - public string check_pdf_pages(string dokument) + public string RotatePage1(string base64pdf, bool rotate) { - return FixPageBreaks(dokument); + byte[] inputBytes = Convert.FromBase64String(base64pdf); + MemoryStream inputStream = new MemoryStream(inputBytes); + MemoryStream outputStream = new MemoryStream(); + PdfDocument newDoc = new PdfDocument(); + PdfLoadedDocument loadedDocument = new PdfLoadedDocument(inputStream); + for (int i = 0; i < loadedDocument.Pages.Count; i++) + { + PdfLoadedPage loadedPage = loadedDocument.Pages[i] as PdfLoadedPage; + PdfTemplate template = loadedPage.CreateTemplate(); + + PdfSection pdfSection = newDoc.Sections.Add(); + pdfSection.PageSettings.Margins.All = 0; + pdfSection.PageSettings.Size = new SizeF(loadedPage.Graphics.ClientSize); + PdfPage newPage = pdfSection.Pages.Add(); + PdfGraphicsState state = newPage.Graphics.Save(); + if (loadedPage.Rotation == PdfPageRotateAngle.RotateAngle90) + { + newPage.Graphics.TranslateTransform(newPage.Graphics.ClientSize.Width, 0); + newPage.Graphics.RotateTransform(90); + } + + else if (loadedPage.Rotation == PdfPageRotateAngle.RotateAngle270) + { + newPage.Graphics.TranslateTransform(0, newPage.Graphics.ClientSize.Height); + newPage.Graphics.RotateTransform(270); + } + + newPage.Graphics.DrawPdfTemplate(template, new PointF(0, 0)); + newPage.Graphics.Restore(state); + } + newDoc.Save(outputStream); + newDoc.Close(true); + loadedDocument.Close(); + + return Convert.ToBase64String(outputStream.ToArray()); + + // using (MemoryStream inputStream = new MemoryStream(inputBytes)) + // using (MemoryStream outputStream = new MemoryStream()) + // { + // PdfLoadedDocument loadedDoc = new PdfLoadedDocument(inputStream); + // PdfDocument newDoc = new PdfDocument(); + + // for (int i = 0; i < loadedDoc.Pages.Count; i++) + // { + // PdfLoadedPage loadedPage = loadedDoc.Pages[i] as PdfLoadedPage; + + + // SizeF size = loadedPage.Size; + // SizeF targetSize = size; + // bool isRotated = loadedPage.Rotation == PdfPageRotateAngle.RotateAngle90 || + // loadedPage.Rotation == PdfPageRotateAngle.RotateAngle270; + + // if (isRotated) + // { + // targetSize = new SizeF(size.Height, size.Width); + // } + // PdfSection section = newDoc.Sections.Add(); + + // // Seitengröße setzen + // section.PageSettings.Size = targetSize; + + // // Neue Seite erzeugen + // PdfPage newPage = section.Pages.Add(); + + + // PdfGraphics g = newPage.Graphics; + + // PdfTemplate template = loadedPage.CreateTemplate(); + + // // 👉 Transformation anwenden + // switch (loadedPage.Rotation) + // { + // case PdfPageRotateAngle.RotateAngle90: + // g.TranslateTransform(size.Height, 0); + // g.RotateTransform(90); + // break; + + // case PdfPageRotateAngle.RotateAngle270: + // g.TranslateTransform(0, size.Width); + // g.RotateTransform(270); + // break; + + // case PdfPageRotateAngle.RotateAngle180: + // g.TranslateTransform(size.Width, size.Height); + // g.RotateTransform(180); + // break; + // } + + // //g.DrawPdfTemplate(template, new PointF(-50,50)); + // g.DrawPdfTemplate(template, new PointF(1, 1), + //new SizeF(targetSize.Width - 2, targetSize.Height - 2)); + // } + + + // newDoc.Save(outputStream); + // newDoc.Close(true); + // loadedDoc.Close(); + + // return Convert.ToBase64String(outputStream.ToArray()); + // } + } + + + public string RotatePage(string base64pdf, bool rotate) + { + // Load the existing PDF document + byte[] inputBytes = Convert.FromBase64String(base64pdf); + + using (MemoryStream inputStream = new MemoryStream(inputBytes)) + using (MemoryStream outputStream = new MemoryStream()) + { + PdfLoadedDocument loadedDocument = new PdfLoadedDocument(inputStream); + + // Iterate through all pages + foreach (PdfLoadedPage page in loadedDocument.Pages) + { + // Set rotation to portrait (0 degrees) + var size = page.Size; + var rotation = page.Rotation; + + bool isLandscape = IsLandscape(size.Width, size.Height, rotation); + if (isLandscape) + { + page.Rotation = PdfPageRotateAngle.RotateAngle90; + } + } + + loadedDocument.Save(outputStream); + loadedDocument.Close(true); + + return Convert.ToBase64String(outputStream.ToArray()); + } + } + public string check_pdf_pages(string dokument, bool rotatepage=false) + { + if (rotatepage) + { + return RotatePage1(RotatePage(FixPageBreaks(dokument, true), true), true); + } + else + { + return FixPageBreaks(dokument, true); + } var stream = new MemoryStream(Convert.FromBase64String(dokument)); PdfLoadedDocument loadedDocument = new PdfLoadedDocument(stream); - + if (loadedDocument.Pages.Count % 2 == 0) { } else { Add_EmptyPage(ref loadedDocument); } MemoryStream outputStream = new MemoryStream(); string dok = ""; @@ -227,11 +376,11 @@ namespace Versandstrasse { stream = null; loadedDocument = null; - outputStream = null; + outputStream = null; } } - + public string Prepare_PDF(string dokumentid, string tempdir, string connectionstring, string resturi, string apikey, string startuppath, versandscript vs = null, serienbrief sb = null, string sbsourcedok = "", bool couvertpos = false) { try @@ -241,7 +390,7 @@ namespace Versandstrasse this.resturi = resturi; this.apikey = apikey; clsdok dok = new clsdok("", "", "", ""); - + if (sbsourcedok != "") { @@ -341,11 +490,11 @@ namespace Versandstrasse { foreach (TextReplace tr in vdok.TextReplaces) { - + if (tr.TextToReplace.Trim() != "") { writelog("Replace Start " + tr.TextToReplace); - Replace_Text(ref loadedDocument, tr.TextToReplace, tr.NewText, tr.Fontname, tr.Fontsize, startuppath,tr); + Replace_Text(ref loadedDocument, tr.TextToReplace, tr.NewText, tr.Fontname, tr.Fontsize, startuppath, tr); writelog("Replace Ende"); } } @@ -356,11 +505,11 @@ namespace Versandstrasse MemoryStream outputStream = new MemoryStream(); try { - + loadedDocument.Save(outputStream); - + byte[] bytes; bytes = outputStream.ToArray(); @@ -391,16 +540,16 @@ namespace Versandstrasse PdfDocumentBase.Merge(finalDoc, streams); MemoryStream outputStream = new MemoryStream(); string filename = tempdir + Guid.NewGuid().ToString() + ".pdf"; - + finalDoc.Save(outputStream); - + PdfLoadedDocument loadeddoc = new PdfLoadedDocument(outputStream); - + loadeddoc.ConvertToPDFA(PdfConformanceLevel.Pdf_A1B); loadeddoc.Save(outputStream); - + byte[] bytes; bytes = outputStream.ToArray(); @@ -420,13 +569,13 @@ namespace Versandstrasse writelog("Merge Ende"); return vscript.FinalDoc; } - catch (Exception ex) { writelog("2" + ex.Message);return ""; } + catch (Exception ex) { writelog("2" + ex.Message); return ""; } } private void split_doc(ref versandscript vscript, string document) { writelog("Split"); -; //SaveBase64ToFile(document, @"x:\f0.pdf"); + ; //SaveBase64ToFile(document, @"x:\f0.pdf"); vscript.dokuments[0].sourcedokument = document; vsdokument vsd = vscript.dokuments[0]; var stream = new MemoryStream(Convert.FromBase64String(vscript.dokuments[0].sourcedokument)); @@ -530,7 +679,7 @@ namespace Versandstrasse } private void Replace_Text(ref PdfLoadedDocument document, string texttoreplace, string newtext, string fontname, string fontsize, string startuppath, TextReplace tr) { - + PdfLoadedPage loadedPage = document.Pages[0] as PdfLoadedPage; @@ -539,10 +688,10 @@ namespace Versandstrasse int y = -5; int w = 0; int h = 5; - if (tr.Boxpos_X != "") { x=Convert.ToInt32(tr.Boxpos_X); } - if (tr.Boxpos_Y != "") { y=Convert.ToInt32(tr.Boxpos_Y); } - if (tr.Boxpos_W != "") { w=Convert.ToInt32(tr.Boxpos_W); } - if (tr.Boxpos_H != "") { h=Convert.ToInt32(tr.Boxpos_H); } + if (tr.Boxpos_X != "") { x = Convert.ToInt32(tr.Boxpos_X); } + if (tr.Boxpos_Y != "") { y = Convert.ToInt32(tr.Boxpos_Y); } + if (tr.Boxpos_W != "") { w = Convert.ToInt32(tr.Boxpos_W); } + if (tr.Boxpos_H != "") { h = Convert.ToInt32(tr.Boxpos_H); } //Font und Size string fname = "Futura"; string fsize = "8"; @@ -550,12 +699,12 @@ namespace Versandstrasse if (tr.Fontname != "") { fname = tr.Fontname; } if (tr.Fontsize != "") { fsize = tr.Fontsize; } - // PdfUsedFont usedfont = get_fontname(ref document, fname); + // PdfUsedFont usedfont = get_fontname(ref document, fname); PdfFont font = new PdfTrueTypeFont(new Font(fname, Convert.ToInt32(fsize))); Dictionary> matchedTextbounds = new Dictionary>(); document.FindText(texttoreplace, out matchedTextbounds); - + PdfSolidBrush brush = new PdfSolidBrush(Color.White); try { @@ -594,9 +743,9 @@ namespace Versandstrasse } } - - + + @@ -723,26 +872,26 @@ namespace Versandstrasse private void Add_EmptyPage(ref PdfLoadedDocument document) { - SizeF size = document.Pages[document.Pages.Count-1].Size; - bool landscape = false; - // Determine orientation based on size - if (size.Width > size.Height) - { - landscape = true; - } - else - { - landscape = false; - } + SizeF size = document.Pages[document.Pages.Count - 1].Size; + bool landscape = false; + // Determine orientation based on size + if (size.Width > size.Height) + { + landscape = true; + } + else + { + landscape = false; + } - PdfPage page = (PdfPage)document.Pages.Add(); - if (landscape == true) - { - page.Section.PageSettings.Size = PdfPageSize.A4; - page.Section.PageSettings.Width = size.Width; // A4 landscape width - page.Section.PageSettings.Height = size.Height; // A4 landscape height - } + PdfPage page = (PdfPage)document.Pages.Add(); + if (landscape == true) + { + page.Section.PageSettings.Size = PdfPageSize.A4; + page.Section.PageSettings.Width = size.Width; // A4 landscape width + page.Section.PageSettings.Height = size.Height; // A4 landscape height + } } public Image DrawText(Color foreColor, Color backColor, string fontName, int fontSize, string txt, int width, int height, string zusatz, string zusatzfontname, int zusatzfontsize, int rotation) diff --git a/Versandstrasse/bin/Debug/DOCGEN.dll b/Versandstrasse/bin/Debug/DOCGEN.dll index bfbe6c6de..1e943a650 100644 Binary files a/Versandstrasse/bin/Debug/DOCGEN.dll and b/Versandstrasse/bin/Debug/DOCGEN.dll differ diff --git a/Versandstrasse/bin/Debug/DOCGEN.pdb b/Versandstrasse/bin/Debug/DOCGEN.pdb index fce9152b9..6f3254fad 100644 Binary files a/Versandstrasse/bin/Debug/DOCGEN.pdb and b/Versandstrasse/bin/Debug/DOCGEN.pdb differ diff --git a/Versandstrasse/bin/Debug/Database.dll b/Versandstrasse/bin/Debug/Database.dll index 837d17c03..49f252634 100644 Binary files a/Versandstrasse/bin/Debug/Database.dll and b/Versandstrasse/bin/Debug/Database.dll differ diff --git a/Versandstrasse/bin/Debug/Database.pdb b/Versandstrasse/bin/Debug/Database.pdb index 46eefaa70..7360e4b13 100644 Binary files a/Versandstrasse/bin/Debug/Database.pdb and b/Versandstrasse/bin/Debug/Database.pdb differ diff --git a/Versandstrasse/bin/Debug/Versandstrasse.dll b/Versandstrasse/bin/Debug/Versandstrasse.dll index 195fc9387..672c6b571 100644 Binary files a/Versandstrasse/bin/Debug/Versandstrasse.dll and b/Versandstrasse/bin/Debug/Versandstrasse.dll differ diff --git a/Versandstrasse/bin/Debug/Versandstrasse.pdb b/Versandstrasse/bin/Debug/Versandstrasse.pdb index cdb33aaa3..1419cd19a 100644 Binary files a/Versandstrasse/bin/Debug/Versandstrasse.pdb and b/Versandstrasse/bin/Debug/Versandstrasse.pdb differ diff --git a/Versandstrasse/obj/Debug/Versandstrasse.csproj.AssemblyReference.cache b/Versandstrasse/obj/Debug/Versandstrasse.csproj.AssemblyReference.cache index 744ca3f02..bf23ed811 100644 Binary files a/Versandstrasse/obj/Debug/Versandstrasse.csproj.AssemblyReference.cache and b/Versandstrasse/obj/Debug/Versandstrasse.csproj.AssemblyReference.cache differ diff --git a/Versandstrasse/obj/Debug/Versandstrasse.dll b/Versandstrasse/obj/Debug/Versandstrasse.dll index 195fc9387..672c6b571 100644 Binary files a/Versandstrasse/obj/Debug/Versandstrasse.dll and b/Versandstrasse/obj/Debug/Versandstrasse.dll differ diff --git a/Versandstrasse/obj/Debug/Versandstrasse.pdb b/Versandstrasse/obj/Debug/Versandstrasse.pdb index cdb33aaa3..1419cd19a 100644 Binary files a/Versandstrasse/obj/Debug/Versandstrasse.pdb and b/Versandstrasse/obj/Debug/Versandstrasse.pdb differ