update 20260322
This commit is contained in:
@@ -8,8 +8,8 @@
|
||||
"idField": "ID",
|
||||
"displayField": "ID",
|
||||
"jsonField": "JsonData",
|
||||
"Buttons": "Öffnen",
|
||||
"AnzeigeDokument": "",
|
||||
"Buttons": "Öffnen;PaketAnzeige",
|
||||
"AnzeigeDokument": "SELECT paket as JsonData from Ondoc_Versandstrasse_Paket where id= @id ",
|
||||
"FilterColumns": ""
|
||||
},
|
||||
{
|
||||
|
||||
@@ -349,7 +349,7 @@ namespace API_NetFramework.Controllers
|
||||
mailInhalt m0 = new mailInhalt();
|
||||
m0.typ = 1;
|
||||
m0.subject = "ONDOC-ERR-Verify";
|
||||
m0.message = "CheckResult";
|
||||
m0.message = "CheckResult" + " " + CheckResult;
|
||||
m0.guid = guid;
|
||||
m0.dokumentid = "";
|
||||
m0.empfaenger = "";
|
||||
|
||||
@@ -281,7 +281,7 @@ padding-bottom:20px;
|
||||
success: function (response) {
|
||||
var pdfWindow = window.open("");
|
||||
pdfWindow.document.write("<iframe width='100%' height='100%' src='data:application/pdf;base64," + response.file + "'></iframe>");
|
||||
//alert("Server Response: " + response.file);
|
||||
|
||||
},
|
||||
|
||||
error: function (err) {
|
||||
@@ -304,6 +304,22 @@ padding-bottom:20px;
|
||||
}
|
||||
);
|
||||
|
||||
}
|
||||
function showPacDoc(tableKey, id) {
|
||||
PageMethods.GetPacDoc(
|
||||
tableKey,
|
||||
id,
|
||||
function (result) {
|
||||
|
||||
var pdfWindow = window.open("");
|
||||
pdfWindow.document.write("<iframe width='100%' height='100%' src='data:application/pdf;base64," + result + "'></iframe>");
|
||||
},
|
||||
function (err) {
|
||||
|
||||
alert(err.get_message())
|
||||
}
|
||||
);
|
||||
|
||||
}
|
||||
function loadJson(tableKey, id) {
|
||||
|
||||
|
||||
@@ -2,10 +2,12 @@
|
||||
using Newtonsoft.Json;
|
||||
using SecuringWebApiUsingApiKey.Middleware;
|
||||
using System;
|
||||
using System.Buffers.Text;
|
||||
using System.Configuration;
|
||||
using System.Data;
|
||||
using System.Data.SqlClient;
|
||||
using System.Linq;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Web;
|
||||
using System.Web.Http.Results;
|
||||
using System.Web.Services;
|
||||
@@ -149,7 +151,18 @@ namespace WebApp
|
||||
e.Row.Cells.Add(c2);
|
||||
|
||||
break;
|
||||
case "PAKETANZEIGE":
|
||||
var c3 = new TableCell();
|
||||
var l3 = new LinkButton
|
||||
{
|
||||
Text = "Paket-Dok.anzeigen",
|
||||
CssClass = "open"
|
||||
};
|
||||
l3.OnClientClick = $"showPacDoc('{tableKeyJs}','{idJs}'); return false;";
|
||||
c3.Controls.Add(l3);
|
||||
e.Row.Cells.Add(c3);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -183,10 +196,36 @@ namespace WebApp
|
||||
|
||||
//e.Row.Cells.Add(cell);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public static object GetPacDoc(string table, string id)
|
||||
{
|
||||
var config = TableConfigProvider.LoadConfig();
|
||||
var cfg = config.Tables.FirstOrDefault(t => t.Key == table);
|
||||
if (cfg == null) return "Tabelle nicht gefunden";
|
||||
using (var con = new SqlConnection(StringCipher.Decrypt(ConfigurationManager.ConnectionStrings["DocTesterconnectionstring"].ConnectionString, "i%!k!7pab%bNLdA5hE4pkR4XaB%E^jB3d9tHuQ4pbF&BZjF7SB#WBWit5#HrbJiLrLVm")))
|
||||
using (var cmd = new SqlCommand(cfg.AnzeigeDokument, con))
|
||||
{
|
||||
cmd.Parameters.AddWithValue("@id", id);
|
||||
con.Open();
|
||||
string doc = cmd.ExecuteScalar()?.ToString();
|
||||
con.Close();
|
||||
dynamic dataj = JsonConvert.DeserializeObject(doc);
|
||||
var b64 = dataj.finaldoc.ToString(); ;
|
||||
bool isbase64 = (b64.Length % 4 == 0) && Regex.IsMatch(b64, @"^[a-zA-Z0-9\+/]*={0,3}$", RegexOptions.None);
|
||||
b64 = System.IO.File.ReadAllText(@"y:\clm.json");
|
||||
return b64; ;
|
||||
}
|
||||
}
|
||||
public static bool IsBase64String(string base64)
|
||||
|
||||
{
|
||||
|
||||
base64 = base64.Trim();
|
||||
|
||||
return (base64.Length % 4 == 0) && Regex.IsMatch(base64, @"^[a-zA-Z0-9\+/]*={0,3}$", RegexOptions.None);
|
||||
|
||||
}
|
||||
[WebMethod]
|
||||
public static object GetDoc(string table, string id)
|
||||
{
|
||||
var config = TableConfigProvider.LoadConfig();
|
||||
@@ -199,6 +238,7 @@ namespace WebApp
|
||||
con.Open();
|
||||
string doc = cmd.ExecuteScalar()?.ToString();
|
||||
con.Close();
|
||||
System.IO.File.WriteAllText(@"y:\clm.json", doc);
|
||||
return doc;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,12 +5,12 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<_PublishTargetUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc</_PublishTargetUrl>
|
||||
<History>True|2026-03-19T20:38:10.9526034Z||;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-02-25T15:03:49.5202958+01:00||;True|2026-02-25T14:49:40.4560899+01:00||;True|2026-02-25T10:41:35.9042956+01:00||;True|2026-02-25T10:33:42.2485129+01:00||;True|2026-02-25T10:05:23.9864404+01:00||;True|2026-02-24T20:45:52.7533529+01:00||;True|2026-02-24T17:49:48.6739610+01:00||;True|2026-02-24T14:30:47.0663499+01:00||;True|2026-02-24T09:28:30.5328425+01:00||;True|2026-02-24T08:40:15.6054714+01:00||;True|2026-02-24T07:59:34.6469067+01:00||;True|2026-02-24T07:30:03.4506392+01:00||;True|2026-02-23T08:26:05.4681353+01:00||;True|2026-02-22T10:44:29.6270572+01:00||;True|2026-02-22T10:41:26.3016875+01:00||;True|2026-02-22T10:30:20.0395713+01:00||;True|2026-02-22T10:06:09.3728289+01:00||;True|2026-02-20T11:11:41.2906293+01:00||;True|2026-02-20T10:46:35.4015642+01:00||;True|2026-02-20T09:45:14.8833885+01:00||;True|2026-02-20T07:32:39.1940489+01:00||;True|2026-02-18T09:12:43.1434580+01:00||;True|2026-02-17T15:15:14.8805757+01:00||;True|2026-02-17T11:09:40.4786451+01:00||;True|2026-02-17T10:45:37.3358353+01:00||;True|2026-02-17T10:33:30.6184470+01:00||;True|2026-02-16T18:55:30.1424518+01:00||;True|2026-02-16T18:01:46.0478978+01:00||;True|2026-02-16T14:51:53.3273467+01:00||;True|2026-02-16T14:12:09.6130777+01:00||;True|2026-02-16T11:21:18.5769808+01:00||;True|2026-02-16T10:08:08.4277947+01:00||;True|2026-02-16T09:52:01.8749049+01:00||;True|2026-02-16T08:13:22.5356518+01:00||;True|2026-02-13T12:36:18.0536988+01:00||;True|2026-02-13T07:29:34.9460520+01:00||;True|2026-02-13T07:27:07.4597689+01:00||;True|2026-02-13T07:23:53.8686289+01:00||;</History>
|
||||
<History>True|2026-03-22T12:25:52.6279375Z||;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-02-25T15:03:49.5202958+01:00||;True|2026-02-25T14:49:40.4560899+01:00||;True|2026-02-25T10:41:35.9042956+01:00||;True|2026-02-25T10:33:42.2485129+01:00||;True|2026-02-25T10:05:23.9864404+01:00||;True|2026-02-24T20:45:52.7533529+01:00||;True|2026-02-24T17:49:48.6739610+01:00||;True|2026-02-24T14:30:47.0663499+01:00||;True|2026-02-24T09:28:30.5328425+01:00||;True|2026-02-24T08:40:15.6054714+01:00||;True|2026-02-24T07:59:34.6469067+01:00||;True|2026-02-24T07:30:03.4506392+01:00||;True|2026-02-23T08:26:05.4681353+01:00||;True|2026-02-22T10:44:29.6270572+01:00||;True|2026-02-22T10:41:26.3016875+01:00||;True|2026-02-22T10:30:20.0395713+01:00||;True|2026-02-22T10:06:09.3728289+01:00||;True|2026-02-20T11:11:41.2906293+01:00||;True|2026-02-20T10:46:35.4015642+01:00||;True|2026-02-20T09:45:14.8833885+01:00||;True|2026-02-20T07:32:39.1940489+01:00||;True|2026-02-18T09:12:43.1434580+01:00||;True|2026-02-17T15:15:14.8805757+01:00||;True|2026-02-17T11:09:40.4786451+01:00||;True|2026-02-17T10:45:37.3358353+01:00||;True|2026-02-17T10:33:30.6184470+01:00||;True|2026-02-16T18:55:30.1424518+01:00||;True|2026-02-16T18:01:46.0478978+01:00||;True|2026-02-16T14:51:53.3273467+01:00||;True|2026-02-16T14:12:09.6130777+01:00||;True|2026-02-16T11:21:18.5769808+01:00||;True|2026-02-16T10:08:08.4277947+01:00||;True|2026-02-16T09:52:01.8749049+01:00||;True|2026-02-16T08:13:22.5356518+01:00||;True|2026-02-13T12:36:18.0536988+01:00||;True|2026-02-13T07:29:34.9460520+01:00||;</History>
|
||||
<LastFailureDetails />
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<File Include="App_Data/TableConfig.json">
|
||||
<publishTime>03/07/2026 13:31:30</publishTime>
|
||||
<publishTime>03/20/2026 21:02:32</publishTime>
|
||||
</File>
|
||||
<File Include="App_Data/users.json">
|
||||
<publishTime>03/12/2026 17:43:43</publishTime>
|
||||
@@ -88,10 +88,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>06/02/2026 17:20:00</publishTime>
|
||||
</File>
|
||||
<File Include="bin/BarcodeLib.dll">
|
||||
<publishTime>03/18/2026 17:57:14</publishTime>
|
||||
<publishTime>03/20/2026 21:02:44</publishTime>
|
||||
</File>
|
||||
<File Include="bin/BarcodeLib.pdb">
|
||||
<publishTime>03/18/2026 17:57:14</publishTime>
|
||||
<publishTime>03/20/2026 21:02:44</publishTime>
|
||||
</File>
|
||||
<File Include="bin/CSVNET.dll">
|
||||
<publishTime>02/03/2026 12:58:54</publishTime>
|
||||
@@ -100,13 +100,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>02/03/2026 12:58:54</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Database.dll">
|
||||
<publishTime>03/18/2026 17:51:04</publishTime>
|
||||
<publishTime>03/20/2026 21:01:43</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Database.dll.config">
|
||||
<publishTime>09/18/2025 08:15:15</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Database.pdb">
|
||||
<publishTime>03/18/2026 17:51:04</publishTime>
|
||||
<publishTime>03/20/2026 21:01:43</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DataMatrix.net.dll">
|
||||
<publishTime>02/03/2026 12:58:54</publishTime>
|
||||
@@ -145,13 +145,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>10/20/2023 22:35:04</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DOCGEN.dll">
|
||||
<publishTime>03/19/2026 21:38:09</publishTime>
|
||||
<publishTime>03/22/2026 13:25:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DOCGEN.dll.config">
|
||||
<publishTime>03/11/2026 15:59:42</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DOCGEN.pdb">
|
||||
<publishTime>03/19/2026 21:38:09</publishTime>
|
||||
<publishTime>03/22/2026 13:25:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/FastReport.Bars.dll">
|
||||
<publishTime>11/27/2023 09:49:58</publishTime>
|
||||
@@ -232,10 +232,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>11/04/2022 19:09:46</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Model.dll">
|
||||
<publishTime>03/18/2026 17:50:58</publishTime>
|
||||
<publishTime>03/20/2026 21:01:32</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Model.pdb">
|
||||
<publishTime>03/18/2026 17:50:58</publishTime>
|
||||
<publishTime>03/20/2026 21:01:32</publishTime>
|
||||
</File>
|
||||
<File Include="bin/MW6.SDK.dll">
|
||||
<publishTime>08/19/2014 21:33:57</publishTime>
|
||||
@@ -268,16 +268,16 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>02/03/2026 12:58:53</publishTime>
|
||||
</File>
|
||||
<File Include="bin/OnDocOffice.dll">
|
||||
<publishTime>03/19/2026 21:38:09</publishTime>
|
||||
<publishTime>03/22/2026 13:25:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/OnDocOffice.pdb">
|
||||
<publishTime>03/19/2026 21:38:09</publishTime>
|
||||
<publishTime>03/22/2026 13:25:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/OnDoc_NetFramework.dll">
|
||||
<publishTime>03/19/2026 21:38:09</publishTime>
|
||||
<publishTime>03/22/2026 13:25:51</publishTime>
|
||||
</File>
|
||||
<File Include="bin/OnDoc_NetFramework.pdb">
|
||||
<publishTime>03/19/2026 21:38:09</publishTime>
|
||||
<publishTime>03/22/2026 13:25:51</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Owin.dll">
|
||||
<publishTime>11/13/2012 13:19:34</publishTime>
|
||||
@@ -628,7 +628,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>07/19/2024 12:25:43</publishTime>
|
||||
</File>
|
||||
<File Include="JSONViewer.aspx">
|
||||
<publishTime>03/17/2026 13:41:56</publishTime>
|
||||
<publishTime>03/20/2026 21:10:07</publishTime>
|
||||
</File>
|
||||
<File Include="OnDocAPIHome.aspx">
|
||||
<publishTime>01/01/0001 00:00:00</publishTime>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -153258,3 +153258,631 @@ Die Anweisung wurde beendet.
|
||||
2026-03-19 21:36:00.5747|DEBUG|OnDoc|
|
||||
2026-03-19 21:36:00.5747|DEBUG|OnDoc|
|
||||
2026-03-19 21:36:00.5747|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.1128|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.2118|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.2118|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.2118|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.5481|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 07:21:25.8043|INFO|APIDocLog|Start CreateDoc
|
||||
2026-03-20 07:21:25.8984|INFO|APIDocLog|Input JSON
|
||||
2026-03-20 07:21:25.9190|DEBUG|OnDoc|Start GenDoc
|
||||
2026-03-20 07:21:25.9190|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9190|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9190|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9190|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9190|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9190|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9190|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9190|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9190|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9293|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9293|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9293|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9293|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9293|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9293|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9293|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9293|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9293|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9458|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:25.9458|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0021|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0021|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0021|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0076|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0423|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0423|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.0644|INFO|OnDoc|Image-Bezug: 4
|
||||
2026-03-20 07:21:26.2955|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.3073|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.3568|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.3568|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.6532|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.6660|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.6660|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.6660|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.6968|DEBUG|OnDoc|Generate_Doc_EDOKA
|
||||
2026-03-20 07:21:26.6968|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.7194|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.7194|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.7194|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.7259|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.7605|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.7605|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.7605|DEBUG|OnDoc|
|
||||
2026-03-20 07:21:26.7605|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 07:21:27.2332|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 07:21:27.2423|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 07:22:41.9994|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:42.0385|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:42.0916|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2026-03-20 07:22:42.0916|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2026-03-20 07:22:42.2804|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:42.2919|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:42.3450|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494
|
||||
2026-03-20 07:22:42.3450|INFO|OnDoc|Unterschrift-Bezug: TG0494
|
||||
2026-03-20 07:22:44.5450|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 07:22:44.5922|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020386
|
||||
2026-03-20 07:22:44.5922|INFO|DocLog|Dokument über API erstellt
|
||||
2026-03-20 07:22:44.5922|INFO|APIDocLog|Dokument return to sender
|
||||
2026-03-20 07:22:44.5922|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:44.6117|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:44.6117|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:44.6117|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:44.6117|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:44.6117|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:56.9863|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 07:22:57.1149|INFO|APIDocLog|Start CreateDoc
|
||||
2026-03-20 07:22:57.1741|INFO|APIDocLog|Input JSON
|
||||
2026-03-20 07:22:57.1741|DEBUG|OnDoc|Start GenDoc
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1791|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1952|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1952|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1952|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1952|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1952|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1952|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1952|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1952|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.1952|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.2117|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.2117|INFO|OnDoc|Image-Bezug: 4
|
||||
2026-03-20 07:22:57.2669|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.2669|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3139|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3139|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3250|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3250|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3250|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3250|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3693|DEBUG|OnDoc|Generate_Doc_EDOKA
|
||||
2026-03-20 07:22:57.3693|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3693|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3693|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3693|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3693|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3839|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3839|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3839|DEBUG|OnDoc|
|
||||
2026-03-20 07:22:57.3839|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 07:22:57.3839|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 07:22:57.3979|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 07:23:02.4802|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:02.5159|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:02.5645|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2026-03-20 07:23:02.5645|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2026-03-20 07:23:02.6349|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:02.6349|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:02.6940|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG0494
|
||||
2026-03-20 07:23:02.6962|INFO|OnDoc|Unterschrift-Bezug: TG0494
|
||||
2026-03-20 07:23:03.4848|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 07:23:03.4961|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020394
|
||||
2026-03-20 07:23:03.4961|INFO|DocLog|Dokument über API erstellt
|
||||
2026-03-20 07:23:03.4961|INFO|APIDocLog|Dokument return to sender
|
||||
2026-03-20 07:23:03.4961|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:03.5110|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:03.5110|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:03.5110|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:03.5110|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:03.5110|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:22.0720|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 07:23:22.2079|INFO|APIDocLog|Start CreateCLM
|
||||
2026-03-20 07:23:22.2674|INFO|APIDocLog|Input JSON
|
||||
2026-03-20 07:23:22.2836|DEBUG|APIDocLog|Create CLMDocItem
|
||||
2026-03-20 07:23:22.2956|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:22.3106|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.6920|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.7022|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.7441|DEBUG|APIDocLog|Start GenDocCLM
|
||||
2026-03-20 07:23:24.7602|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.7602|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.7602|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.7602|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.7602|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.7602|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.8172|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.8172|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.8685|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.8685|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.9088|DEBUG|APIDocLog|DocGenerator
|
||||
2026-03-20 07:23:24.9088|DEBUG|OnDoc|Generate_Doc_EDOKA
|
||||
2026-03-20 07:23:24.9088|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.9329|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.9329|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.9329|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:24.9476|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020403
|
||||
2026-03-20 07:23:24.9476|INFO|DocLog|Dokument über API erstellt
|
||||
2026-03-20 07:23:24.9476|INFO|APIDocLog|Dokument abgeschlossen
|
||||
2026-03-20 07:23:30.8040|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 07:23:33.0226|INFO|APIDocLog|CreateDoks Start
|
||||
2026-03-20 07:23:33.8861|INFO|APIDocLog|Input Json
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|Start GenDoc
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:33.8985|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:34.4830|ERROR|APIDocLog|Versandstrasse mit ungeprüfter, linker Unterschrift ist nicht möglich
|
||||
2026-03-20 07:23:46.6182|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail.
|
||||
2026-03-20 07:23:46.6479|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-03-20 07:23:52.3337|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 07:23:52.4128|INFO|APIDocLog|Start CreateCLM
|
||||
2026-03-20 07:23:52.4497|INFO|APIDocLog|Input JSON
|
||||
2026-03-20 07:23:52.4497|DEBUG|APIDocLog|Create CLMDocItem
|
||||
2026-03-20 07:23:52.4497|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:52.4605|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:55.0145|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:55.0372|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:55.0576|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:55.0576|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:55.0772|INFO|OnDoc|Image-Bezug: 4
|
||||
2026-03-20 07:23:57.5699|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.5699|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.5699|DEBUG|APIDocLog|Start GenDocCLM
|
||||
2026-03-20 07:23:57.5699|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.5699|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.5699|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.5699|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.5860|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.5860|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6091|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6091|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6412|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6412|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6633|DEBUG|APIDocLog|DocGenerator
|
||||
2026-03-20 07:23:57.6633|DEBUG|OnDoc|Generate_Doc_EDOKA
|
||||
2026-03-20 07:23:57.6633|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6633|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6633|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6633|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6633|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6887|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6887|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6887|DEBUG|OnDoc|
|
||||
2026-03-20 07:23:57.6948|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 07:23:57.7377|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 07:23:57.7377|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 07:23:58.7423|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 07:23:59.0764|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020419
|
||||
2026-03-20 07:23:59.0764|INFO|DocLog|Dokument über API erstellt
|
||||
2026-03-20 07:23:59.0764|INFO|APIDocLog|Dokument abgeschlossen
|
||||
2026-03-20 07:24:07.3623|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 07:24:07.4675|INFO|APIDocLog|Start CreateDoc
|
||||
2026-03-20 07:24:07.5251|INFO|APIDocLog|Input JSON
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|Start GenDoc
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5251|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.5388|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6049|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6049|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6182|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6182|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6182|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6182|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6607|DEBUG|OnDoc|Generate_Doc_EDOKA
|
||||
2026-03-20 07:24:07.6607|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6712|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6712|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6712|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6712|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6712|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6712|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6839|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:07.6839|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 07:24:07.6839|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 07:24:07.6839|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 07:24:10.5702|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 07:24:10.5702|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020427
|
||||
2026-03-20 07:24:10.5702|INFO|DocLog|Dokument über API erstellt
|
||||
2026-03-20 07:24:10.5702|INFO|APIDocLog|Dokument return to sender
|
||||
2026-03-20 07:24:10.5702|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:10.5896|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:10.5896|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:10.5896|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:10.5896|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:10.5896|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:18.0147|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 07:24:19.9530|INFO|APIDocLog|CreateDoks Start
|
||||
2026-03-20 07:24:20.5804|INFO|APIDocLog|Input Json
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|Start GenDoc
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.5932|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.6012|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.6012|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.6012|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:20.6012|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.7902|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.7902|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.7902|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.7902|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.7902|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.7902|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.7902|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8047|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8310|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8310|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8417|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8417|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8417|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8417|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8644|DEBUG|OnDoc|Generate_Doc_EDOKA
|
||||
2026-03-20 07:24:21.8644|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8739|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8739|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8739|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8739|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8739|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8739|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8854|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:21.8854|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 07:24:21.9394|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 07:24:21.9394|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 07:24:23.3810|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 07:24:23.3912|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020435
|
||||
2026-03-20 07:24:23.3912|INFO|DocLog|Dokument über API erstellt
|
||||
2026-03-20 07:24:23.3912|INFO|APIDocLog|Dok erstellt
|
||||
2026-03-20 07:24:23.3912|INFO|APIDocLog|Attachment angefügt
|
||||
2026-03-20 07:24:24.1274|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.1406|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.1406|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.1859|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.1859|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.1859|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.1859|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.1859|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.1859|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.1859|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.1859|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.2236|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.2589|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.2589|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.4397|DEBUG|OnDoc|
|
||||
2026-03-20 07:24:24.4482|DEBUG|OnDoc|
|
||||
2026-03-20 07:30:02.7818|DEBUG|OnDoc|
|
||||
2026-03-20 07:30:02.8735|DEBUG|OnDoc|
|
||||
2026-03-20 07:30:02.8735|DEBUG|OnDoc|
|
||||
2026-03-20 07:30:02.8735|DEBUG|OnDoc|
|
||||
2026-03-20 09:51:28.5336|DEBUG|OnDoc|
|
||||
2026-03-20 09:51:28.5969|DEBUG|OnDoc|
|
||||
2026-03-20 09:51:28.5969|DEBUG|OnDoc|
|
||||
2026-03-20 09:51:28.6010|DEBUG|OnDoc|
|
||||
2026-03-20 14:09:25.5180|DEBUG|OnDoc|
|
||||
2026-03-20 14:09:25.6088|DEBUG|OnDoc|
|
||||
2026-03-20 14:09:25.6088|DEBUG|OnDoc|
|
||||
2026-03-20 14:09:25.6088|DEBUG|OnDoc|
|
||||
2026-03-20 14:19:19.2635|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 14:19:31.4835|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail.
|
||||
2026-03-20 14:19:31.5348|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-03-20 14:20:23.9469|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 14:20:36.1023|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail.
|
||||
2026-03-20 14:20:36.1372|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-03-20 14:20:53.1671|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 14:20:56.9323|INFO|APIDocLog|CreateDoks Start
|
||||
2026-03-20 14:20:57.6683|INFO|APIDocLog|Input Json
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|Start GenDoc
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6839|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6949|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6949|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6949|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6949|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6949|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6949|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6949|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:57.6949|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8035|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8155|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8155|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8155|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8155|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8155|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8251|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8656|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8681|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8909|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8909|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8909|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.8909|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.9092|DEBUG|OnDoc|Generate_Doc_EDOKA
|
||||
2026-03-20 14:20:58.9092|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.9196|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.9196|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.9196|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.9196|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.9301|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.9301|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.9301|DEBUG|OnDoc|
|
||||
2026-03-20 14:20:58.9301|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 14:20:59.3597|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 14:20:59.3694|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 14:21:02.6588|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 14:21:02.7524|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020440
|
||||
2026-03-20 14:21:02.7524|INFO|DocLog|Dokument über API erstellt
|
||||
2026-03-20 14:21:02.7524|INFO|APIDocLog|Dok erstellt
|
||||
2026-03-20 14:21:02.7524|INFO|APIDocLog|Attachment angefügt
|
||||
2026-03-20 14:21:05.9933|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0294|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0386|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0386|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0386|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0386|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0386|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0386|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0386|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0657|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0657|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0657|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0657|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0779|DEBUG|OnDoc|Generate_Doc_EDOKA
|
||||
2026-03-20 14:21:06.0779|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0874|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0874|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0874|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0874|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0874|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0874|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0874|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:06.0874|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 14:21:06.1072|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 14:21:06.1072|DEBUG|OnDoc|Word2013
|
||||
2026-03-20 14:21:10.1572|DEBUG|OnDoc|Generate_Word
|
||||
2026-03-20 14:21:10.1692|DEBUG|OnDoc|Ende GenDoc DokumentID:OFFEDK0082026000020451
|
||||
2026-03-20 14:21:10.1692|INFO|DocLog|Dokument über API erstellt
|
||||
2026-03-20 14:21:10.1692|INFO|APIDocLog|Dok erstellt
|
||||
2026-03-20 14:21:16.0460|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.0855|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.0855|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.1161|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.1196|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.1196|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.1196|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.1196|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.1196|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.1196|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.1196|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.1526|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.5057|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.5160|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.6666|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.6789|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.6789|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7027|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7027|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7027|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7027|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7027|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7027|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7103|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7103|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7345|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7721|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.7751|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.8747|DEBUG|OnDoc|
|
||||
2026-03-20 14:21:16.8849|DEBUG|OnDoc|
|
||||
2026-03-20 14:58:46.3558|DEBUG|OnDoc|
|
||||
2026-03-20 14:58:46.4490|DEBUG|OnDoc|
|
||||
2026-03-20 14:58:46.4490|DEBUG|OnDoc|
|
||||
2026-03-20 14:58:46.4490|DEBUG|OnDoc|
|
||||
2026-03-20 15:00:14.3899|DEBUG|OnDoc|
|
||||
2026-03-20 15:00:14.4957|DEBUG|OnDoc|
|
||||
2026-03-20 15:00:14.4957|DEBUG|OnDoc|
|
||||
2026-03-20 15:00:14.4957|DEBUG|OnDoc|
|
||||
2026-03-20 15:51:30.9039|DEBUG|OnDoc|
|
||||
2026-03-20 15:51:30.9919|DEBUG|OnDoc|
|
||||
2026-03-20 15:51:30.9919|DEBUG|OnDoc|
|
||||
2026-03-20 15:51:30.9919|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:34.6558|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 15:59:34.9025|INFO|APIDocLog|CreateDoks Start
|
||||
2026-03-20 15:59:38.4369|INFO|APIDocLog|Input Json
|
||||
2026-03-20 15:59:38.4490|DEBUG|OnDoc|Start GenDoc
|
||||
2026-03-20 15:59:38.4490|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:38.4490|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:38.4490|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:38.4490|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:38.4490|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:38.4490|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:39.4098|ERROR|APIDocLog|TGNr-Ersteller TG1072 ist ungültig
|
||||
2026-03-20 15:59:51.5270|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail.
|
||||
2026-03-20 15:59:51.5754|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-03-20 15:59:56.4074|INFO|APIDocLog|DokumentGegnerator Start
|
||||
2026-03-20 15:59:56.4775|INFO|APIDocLog|CreateDoks Start
|
||||
2026-03-20 15:59:58.8379|INFO|APIDocLog|Input Json
|
||||
2026-03-20 15:59:58.8379|DEBUG|OnDoc|Start GenDoc
|
||||
2026-03-20 15:59:58.8379|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:58.8379|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:58.8379|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:58.8379|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:58.8379|DEBUG|OnDoc|
|
||||
2026-03-20 15:59:58.8379|DEBUG|OnDoc|
|
||||
2026-03-20 16:00:10.2903|ERROR|APIDocLog|TGNr-Ersteller TG1072 ist ungültig
|
||||
2026-03-20 16:00:44.3358|DEBUG|OnDoc|Mail Versand NOK: Fehler beim Senden von Mail.
|
||||
2026-03-20 16:00:44.3706|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-03-20 21:02:03.2809|DEBUG|OnDoc|
|
||||
2026-03-20 21:02:03.3947|DEBUG|OnDoc|
|
||||
2026-03-20 21:02:03.3947|DEBUG|OnDoc|
|
||||
2026-03-20 21:02:03.3947|DEBUG|OnDoc|
|
||||
2026-03-20 21:02:58.8630|DEBUG|OnDoc|
|
||||
2026-03-20 21:02:58.9758|DEBUG|OnDoc|
|
||||
2026-03-20 21:02:58.9758|DEBUG|OnDoc|
|
||||
2026-03-20 21:02:58.9758|DEBUG|OnDoc|
|
||||
2026-03-20 21:07:50.4985|DEBUG|OnDoc|
|
||||
2026-03-20 21:07:50.6031|DEBUG|OnDoc|
|
||||
2026-03-20 21:07:50.6031|DEBUG|OnDoc|
|
||||
2026-03-20 21:07:50.6031|DEBUG|OnDoc|
|
||||
2026-03-21 07:22:36.0147|DEBUG|OnDoc|
|
||||
2026-03-21 07:22:36.1324|DEBUG|OnDoc|
|
||||
2026-03-21 07:22:36.1324|DEBUG|OnDoc|
|
||||
2026-03-21 07:22:36.1404|DEBUG|OnDoc|
|
||||
2026-03-21 09:39:31.9922|DEBUG|OnDoc|
|
||||
2026-03-21 09:39:32.1196|DEBUG|OnDoc|
|
||||
2026-03-21 09:39:32.1241|DEBUG|OnDoc|
|
||||
2026-03-21 09:39:32.1241|DEBUG|OnDoc|
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -8,8 +8,8 @@
|
||||
"idField": "ID",
|
||||
"displayField": "ID",
|
||||
"jsonField": "JsonData",
|
||||
"Buttons": "Öffnen",
|
||||
"AnzeigeDokument": "",
|
||||
"Buttons": "Öffnen;PaketAnzeige",
|
||||
"AnzeigeDokument": "SELECT paket as JsonData from Ondoc_Versandstrasse_Paket where id= @id ",
|
||||
"FilterColumns": ""
|
||||
},
|
||||
{
|
||||
|
||||
@@ -281,7 +281,7 @@ padding-bottom:20px;
|
||||
success: function (response) {
|
||||
var pdfWindow = window.open("");
|
||||
pdfWindow.document.write("<iframe width='100%' height='100%' src='data:application/pdf;base64," + response.file + "'></iframe>");
|
||||
//alert("Server Response: " + response.file);
|
||||
|
||||
},
|
||||
|
||||
error: function (err) {
|
||||
@@ -304,6 +304,22 @@ padding-bottom:20px;
|
||||
}
|
||||
);
|
||||
|
||||
}
|
||||
function showPacDoc(tableKey, id) {
|
||||
PageMethods.GetPacDoc(
|
||||
tableKey,
|
||||
id,
|
||||
function (result) {
|
||||
|
||||
var pdfWindow = window.open("");
|
||||
pdfWindow.document.write("<iframe width='100%' height='100%' src='data:application/pdf;base64," + result + "'></iframe>");
|
||||
},
|
||||
function (err) {
|
||||
|
||||
alert(err.get_message())
|
||||
}
|
||||
);
|
||||
|
||||
}
|
||||
function loadJson(tableKey, id) {
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user