Update 20250204
This commit is contained in:
@@ -18,6 +18,9 @@ using API_NetFramework.Models;
|
||||
using System.Web.Http.Controllers;
|
||||
using SecuringWebApiUsingApiKey.Middleware;
|
||||
using System.Drawing.Drawing2D;
|
||||
using Helper;
|
||||
using System.Web.WebPages;
|
||||
using System.Text;
|
||||
|
||||
|
||||
|
||||
@@ -134,6 +137,7 @@ namespace API_NetFramework.Controllers
|
||||
return oBitmap;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
@@ -182,6 +186,7 @@ namespace API_NetFramework.Controllers
|
||||
ImageWidth = Convert.ToInt32(System.Configuration.ConfigurationManager.AppSettings["DefaultImageWidth"]);
|
||||
ImageHeight = Convert.ToInt32(System.Configuration.ConfigurationManager.AppSettings["DefaultImageHeight"]);
|
||||
imgnew= iimg;
|
||||
|
||||
//Bitmap b = new Bitmap(iimg);
|
||||
//imgnew = AutoSizeImage(b, ImageWidth, ImageHeight, false);
|
||||
//imgnew = ScaleImage(b, ImageHeight);
|
||||
@@ -211,6 +216,9 @@ namespace API_NetFramework.Controllers
|
||||
imgnew.Dispose();
|
||||
m.Dispose();
|
||||
System.IO.File.Delete(newfilename);
|
||||
iimg.Dispose();
|
||||
iimg = null;
|
||||
imgnew = null;
|
||||
return Ok(Convert.ToBase64String(imageBytes));
|
||||
}
|
||||
|
||||
@@ -276,7 +284,73 @@ namespace API_NetFramework.Controllers
|
||||
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
[Route("API/CheckSignature")]
|
||||
public IHttpActionResult CheckSignature(string TGNummer)
|
||||
{
|
||||
if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
|
||||
{
|
||||
return Content(HttpStatusCode.Unauthorized, "Invalid Token or API-Key");
|
||||
}
|
||||
try
|
||||
{
|
||||
string path = System.Configuration.ConfigurationManager.AppSettings["UnterschriftPath"]+ TGNummer + ".jpg";
|
||||
if (System.IO.File.Exists(path))
|
||||
{
|
||||
return Content(HttpStatusCode.OK, TGNummer);
|
||||
}
|
||||
else
|
||||
{
|
||||
return Content(HttpStatusCode.NotFound, TGNummer);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
APILogging.Log((HttpRequestMessage)Request, e.Message, LogLevelType.Error);
|
||||
return Content(HttpStatusCode.InternalServerError, e.Message);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public class imageclass
|
||||
{
|
||||
public string tgnummer { get; set;}
|
||||
public string b64 { get; set; }
|
||||
|
||||
}
|
||||
[HttpPost]
|
||||
[Route("API/SaveSignature")]
|
||||
public IHttpActionResult SaveSignature()
|
||||
{
|
||||
|
||||
if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
|
||||
{
|
||||
return Content(HttpStatusCode.Unauthorized, "Invalid Token or API-Key");
|
||||
}
|
||||
try
|
||||
{
|
||||
string result = Request.Content.ReadAsStringAsync().Result;
|
||||
imageclass imageclass = new imageclass();
|
||||
imageclass = JsonConvert.DeserializeObject<imageclass>(result);
|
||||
APILogging.Log((HttpRequestMessage)Request, "Unterschriften-Image gespeichert - " + imageclass.tgnummer, LogLevelType.Info);
|
||||
string path = System.Configuration.ConfigurationManager.AppSettings["UnterschriftPath"];
|
||||
|
||||
byte[] imageByteArray = Convert.FromBase64String(imageclass.b64);
|
||||
File.WriteAllBytes(path + imageclass.tgnummer + ".jpg", imageByteArray);
|
||||
DB dB = new DB(connectionstring);
|
||||
|
||||
return Ok(imageclass.tgnummer);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
APILogging.Log((HttpRequestMessage)Request, e.Message, LogLevelType.Error);
|
||||
return Content(HttpStatusCode.InternalServerError, e.Message);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
//[HttpGet]
|
||||
//[Route("API/GetUnterschrift")]
|
||||
//public IHttpActionResult GetUnterschrift(string TGNummer)
|
||||
|
||||
@@ -5,12 +5,12 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<_PublishTargetUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc</_PublishTargetUrl>
|
||||
<History>True|2025-01-20T09:17:24.5425008Z||;True|2025-01-19T16:20:16.1036874+01:00||;True|2025-01-19T16:19:11.5720999+01:00||;True|2025-01-12T14:24:46.2550852+01:00||;True|2025-01-12T14:00:23.9205001+01:00||;True|2025-01-07T15:08:24.2722613+01:00||;True|2025-01-06T09:25:16.5522864+01:00||;True|2024-12-22T16:49:54.0855447+01:00||;True|2024-12-08T09:59:39.7127943+01:00||;True|2024-12-08T09:26:52.1924006+01:00||;True|2024-12-02T09:50:13.5426444+01:00||;True|2024-12-01T18:53:55.8128003+01:00||;True|2024-11-26T19:32:44.7379810+01:00||;True|2024-11-25T16:02:25.7013060+01:00||;True|2024-11-24T18:56:32.4321643+01:00||;True|2024-11-24T18:48:11.3494435+01:00||;True|2024-11-24T17:50:10.7679996+01:00||;True|2024-11-22T08:35:58.1296657+01:00||;True|2024-11-13T17:47:13.0183160+01:00||;True|2024-11-13T17:46:36.5183689+01:00||;True|2024-11-11T13:42:23.6578245+01:00||;True|2024-11-09T12:11:00.0777236+01:00||;True|2024-11-09T11:54:51.8503924+01:00||;</History>
|
||||
<History>True|2025-02-04T21:19:44.0470841Z||;True|2025-02-04T21:33:03.4165210+01:00||;True|2025-02-02T20:06:51.6815543+01:00||;True|2025-01-20T10:17:24.5425008+01:00||;True|2025-01-19T16:20:16.1036874+01:00||;True|2025-01-19T16:19:11.5720999+01:00||;True|2025-01-12T14:24:46.2550852+01:00||;True|2025-01-12T14:00:23.9205001+01:00||;True|2025-01-07T15:08:24.2722613+01:00||;True|2025-01-06T09:25:16.5522864+01:00||;True|2024-12-22T16:49:54.0855447+01:00||;True|2024-12-08T09:59:39.7127943+01:00||;True|2024-12-08T09:26:52.1924006+01:00||;True|2024-12-02T09:50:13.5426444+01:00||;True|2024-12-01T18:53:55.8128003+01:00||;True|2024-11-26T19:32:44.7379810+01:00||;True|2024-11-25T16:02:25.7013060+01:00||;True|2024-11-24T18:56:32.4321643+01:00||;True|2024-11-24T18:48:11.3494435+01:00||;True|2024-11-24T17:50:10.7679996+01:00||;True|2024-11-22T08:35:58.1296657+01:00||;True|2024-11-13T17:47:13.0183160+01:00||;True|2024-11-13T17:46:36.5183689+01:00||;True|2024-11-11T13:42:23.6578245+01:00||;True|2024-11-09T12:11:00.0777236+01:00||;True|2024-11-09T11:54:51.8503924+01:00||;</History>
|
||||
<LastFailureDetails />
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<File Include="Areas/HelpPage/HelpPage.css">
|
||||
<publishTime>03/06/2024 09:20:46</publishTime>
|
||||
<publishTime>06/03/2024 09:20:46</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/Api.cshtml">
|
||||
<publishTime>07/19/2024 12:24:15</publishTime>
|
||||
@@ -49,7 +49,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>07/19/2024 12:24:15</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml">
|
||||
<publishTime>03/06/2024 09:20:41</publishTime>
|
||||
<publishTime>06/03/2024 09:20:41</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml">
|
||||
<publishTime>07/19/2024 12:24:15</publishTime>
|
||||
@@ -64,28 +64,28 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>07/19/2024 12:24:15</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Shared/_Layout.cshtml">
|
||||
<publishTime>03/06/2024 09:20:40</publishTime>
|
||||
<publishTime>06/03/2024 09:20:40</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/Web.config">
|
||||
<publishTime>03/06/2024 09:20:40</publishTime>
|
||||
<publishTime>06/03/2024 09:20:40</publishTime>
|
||||
</File>
|
||||
<File Include="Areas/HelpPage/Views/_ViewStart.cshtml">
|
||||
<publishTime>03/06/2024 09:20:40</publishTime>
|
||||
<publishTime>06/03/2024 09:20:40</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Antlr3.Runtime.dll">
|
||||
<publishTime>10/09/2013 17:29:20</publishTime>
|
||||
<publishTime>09/10/2013 17:29:20</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Antlr3.Runtime.pdb">
|
||||
<publishTime>10/09/2013 17:29:20</publishTime>
|
||||
<publishTime>09/10/2013 17:29:20</publishTime>
|
||||
</File>
|
||||
<File Include="bin/arm64/libSkiaSharp.dll">
|
||||
<publishTime>09/04/2024 19:25:14</publishTime>
|
||||
<publishTime>04/09/2024 19:25:14</publishTime>
|
||||
</File>
|
||||
<File Include="bin/BarcodeLib.dll">
|
||||
<publishTime>01/18/2025 13:55:56</publishTime>
|
||||
<publishTime>02/03/2025 13:48:41</publishTime>
|
||||
</File>
|
||||
<File Include="bin/BarcodeLib.pdb">
|
||||
<publishTime>01/18/2025 13:55:56</publishTime>
|
||||
<publishTime>02/03/2025 13:48:41</publishTime>
|
||||
</File>
|
||||
<File Include="bin/CSVNET.dll">
|
||||
<publishTime>12/26/2024 14:12:09</publishTime>
|
||||
@@ -94,10 +94,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>12/26/2024 14:12:09</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Database.dll">
|
||||
<publishTime>01/18/2025 12:45:41</publishTime>
|
||||
<publishTime>02/03/2025 12:55:09</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Database.pdb">
|
||||
<publishTime>01/18/2025 12:45:41</publishTime>
|
||||
<publishTime>02/03/2025 12:55:09</publishTime>
|
||||
</File>
|
||||
<File Include="bin/de/System.Net.Http.Formatting.resources.dll">
|
||||
<publishTime>10/20/2023 22:35:02</publishTime>
|
||||
@@ -115,7 +115,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>10/20/2023 22:35:02</publishTime>
|
||||
</File>
|
||||
<File Include="bin/de/System.Web.Optimization.resources.dll">
|
||||
<publishTime>11/02/2014 16:28:40</publishTime>
|
||||
<publishTime>02/11/2014 16:28:40</publishTime>
|
||||
</File>
|
||||
<File Include="bin/de/System.Web.Razor.resources.dll">
|
||||
<publishTime>10/20/2023 22:35:02</publishTime>
|
||||
@@ -130,22 +130,22 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>10/20/2023 22:35:04</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DOCGEN.dll">
|
||||
<publishTime>01/20/2025 08:55:13</publishTime>
|
||||
<publishTime>02/04/2025 20:25:45</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DOCGEN.dll.config">
|
||||
<publishTime>12/23/2024 22:17:43</publishTime>
|
||||
</File>
|
||||
<File Include="bin/DOCGEN.pdb">
|
||||
<publishTime>01/20/2025 08:55:13</publishTime>
|
||||
<publishTime>02/04/2025 20:25:45</publishTime>
|
||||
</File>
|
||||
<File Include="bin/FastReport.Bars.dll">
|
||||
<publishTime>11/27/2023 09:49:58</publishTime>
|
||||
</File>
|
||||
<File Include="bin/FastReport.Compat.dll">
|
||||
<publishTime>07/09/2023 11:54:46</publishTime>
|
||||
<publishTime>09/07/2023 11:54:46</publishTime>
|
||||
</File>
|
||||
<File Include="bin/FastReport.DataVisualization.dll">
|
||||
<publishTime>07/09/2023 12:19:34</publishTime>
|
||||
<publishTime>09/07/2023 12:19:34</publishTime>
|
||||
</File>
|
||||
<File Include="bin/FastReport.dll">
|
||||
<publishTime>11/27/2023 09:50:34</publishTime>
|
||||
@@ -160,7 +160,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>12/30/2024 08:48:57</publishTime>
|
||||
</File>
|
||||
<File Include="bin/libSkiaSharp.dylib">
|
||||
<publishTime>09/04/2024 18:58:02</publishTime>
|
||||
<publishTime>04/09/2024 18:58:02</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Logging.dll">
|
||||
<publishTime>12/30/2024 08:48:57</publishTime>
|
||||
@@ -169,22 +169,22 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>12/30/2024 08:48:57</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.AspNetCore.Http.Abstractions.dll">
|
||||
<publishTime>12/11/2018 18:29:00</publishTime>
|
||||
<publishTime>11/12/2018 18:29:00</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.AspNetCore.Http.dll">
|
||||
<publishTime>01/25/2019 00:18:54</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.AspNetCore.Http.Features.dll">
|
||||
<publishTime>12/11/2018 18:28:58</publishTime>
|
||||
<publishTime>11/12/2018 18:28:58</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.AspNetCore.WebUtilities.dll">
|
||||
<publishTime>12/11/2018 18:29:00</publishTime>
|
||||
<publishTime>11/12/2018 18:29:00</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.Bcl.AsyncInterfaces.dll">
|
||||
<publishTime>10/31/2023 16:00:18</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll">
|
||||
<publishTime>05/03/2023 23:41:40</publishTime>
|
||||
<publishTime>03/05/2023 23:41:40</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.Extensions.Configuration.Abstractions.dll">
|
||||
<publishTime>10/31/2023 16:04:06</publishTime>
|
||||
@@ -208,16 +208,16 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>10/31/2023 16:00:32</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.Net.Http.Headers.dll">
|
||||
<publishTime>12/11/2018 18:28:58</publishTime>
|
||||
<publishTime>11/12/2018 18:28:58</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.Web.Infrastructure.dll">
|
||||
<publishTime>11/04/2022 19:09:46</publishTime>
|
||||
<publishTime>04/11/2022 19:09:46</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Model.dll">
|
||||
<publishTime>01/14/2025 20:53:13</publishTime>
|
||||
<publishTime>02/02/2025 15:33:38</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Model.pdb">
|
||||
<publishTime>01/14/2025 20:53:13</publishTime>
|
||||
<publishTime>02/02/2025 15:33:38</publishTime>
|
||||
</File>
|
||||
<File Include="bin/MW6.SDK.dll">
|
||||
<publishTime>08/19/2014 21:33:57</publishTime>
|
||||
@@ -229,7 +229,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>11/28/2018 00:07:54</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Newtonsoft.Json.dll">
|
||||
<publishTime>08/03/2023 06:09:56</publishTime>
|
||||
<publishTime>03/08/2023 06:09:56</publishTime>
|
||||
</File>
|
||||
<File Include="bin/NLog.Database.dll">
|
||||
<publishTime>04/30/2024 21:58:56</publishTime>
|
||||
@@ -238,22 +238,22 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>04/30/2024 21:58:24</publishTime>
|
||||
</File>
|
||||
<File Include="bin/OfficePrinter.dll">
|
||||
<publishTime>01/19/2025 13:38:11</publishTime>
|
||||
<publishTime>01/28/2025 08:37:54</publishTime>
|
||||
</File>
|
||||
<File Include="bin/OfficePrinter.pdb">
|
||||
<publishTime>01/19/2025 13:38:11</publishTime>
|
||||
<publishTime>01/28/2025 08:37:54</publishTime>
|
||||
</File>
|
||||
<File Include="bin/OnDocOffice.dll">
|
||||
<publishTime>01/19/2025 11:29:23</publishTime>
|
||||
<publishTime>02/04/2025 20:25:45</publishTime>
|
||||
</File>
|
||||
<File Include="bin/OnDocOffice.pdb">
|
||||
<publishTime>01/19/2025 11:29:23</publishTime>
|
||||
<publishTime>02/04/2025 20:25:45</publishTime>
|
||||
</File>
|
||||
<File Include="bin/OnDoc_NetFramework.dll">
|
||||
<publishTime>01/20/2025 10:15:52</publishTime>
|
||||
<publishTime>02/04/2025 22:13:57</publishTime>
|
||||
</File>
|
||||
<File Include="bin/OnDoc_NetFramework.pdb">
|
||||
<publishTime>01/20/2025 10:15:52</publishTime>
|
||||
<publishTime>02/04/2025 22:13:57</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Owin.dll">
|
||||
<publishTime>11/13/2012 13:19:34</publishTime>
|
||||
@@ -301,10 +301,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>02/15/2022 06:21:10</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll">
|
||||
<publishTime>05/10/2021 02:47:54</publishTime>
|
||||
<publishTime>10/05/2021 02:47:54</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll">
|
||||
<publishTime>05/10/2021 02:49:46</publishTime>
|
||||
<publishTime>10/05/2021 02:49:46</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.Managed.Core.CurrentVersions.targets">
|
||||
<publishTime>02/15/2022 06:33:08</publishTime>
|
||||
@@ -355,34 +355,34 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>02/15/2022 06:38:42</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Swashbuckle.Core.dll">
|
||||
<publishTime>08/07/2017 03:30:56</publishTime>
|
||||
<publishTime>07/08/2017 03:30:56</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Syncfusion.Compression.Base.dll">
|
||||
<publishTime>12/09/2024 21:02:32</publishTime>
|
||||
<publishTime>09/12/2024 21:02:32</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Syncfusion.DocIO.Base.dll">
|
||||
<publishTime>12/09/2024 21:21:22</publishTime>
|
||||
<publishTime>09/12/2024 21:21:22</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Syncfusion.DocToPDFConverter.Base.dll">
|
||||
<publishTime>12/09/2024 21:25:18</publishTime>
|
||||
<publishTime>09/12/2024 21:25:18</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Syncfusion.ExcelToPDFConverter.Base.dll">
|
||||
<publishTime>12/09/2024 21:34:20</publishTime>
|
||||
<publishTime>09/12/2024 21:34:20</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Syncfusion.Licensing.dll">
|
||||
<publishTime>12/09/2024 21:33:50</publishTime>
|
||||
<publishTime>09/12/2024 21:33:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Syncfusion.OfficeChart.Base.dll">
|
||||
<publishTime>12/09/2024 21:03:58</publishTime>
|
||||
<publishTime>09/12/2024 21:03:58</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Syncfusion.Pdf.Base.dll">
|
||||
<publishTime>12/09/2024 21:23:26</publishTime>
|
||||
<publishTime>09/12/2024 21:23:26</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Syncfusion.Presentation.Base.dll">
|
||||
<publishTime>12/09/2024 21:32:30</publishTime>
|
||||
<publishTime>09/12/2024 21:32:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Syncfusion.XlsIO.Base.dll">
|
||||
<publishTime>12/09/2024 21:26:42</publishTime>
|
||||
<publishTime>09/12/2024 21:26:42</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Buffers.dll">
|
||||
<publishTime>02/19/2020 11:05:18</publishTime>
|
||||
@@ -391,7 +391,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>05/15/2018 15:29:36</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Memory.dll">
|
||||
<publishTime>08/05/2022 05:31:02</publishTime>
|
||||
<publishTime>05/08/2022 05:31:02</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.Http.Formatting.dll">
|
||||
<publishTime>10/20/2023 22:33:52</publishTime>
|
||||
@@ -412,7 +412,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>05/15/2018 15:29:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Cors.dll">
|
||||
<publishTime>01/10/2013 22:54:22</publishTime>
|
||||
<publishTime>10/01/2013 22:54:22</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Helpers.dll">
|
||||
<publishTime>10/20/2023 22:33:58</publishTime>
|
||||
@@ -427,7 +427,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>01/01/0001 00:00:00</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Optimization.dll">
|
||||
<publishTime>11/02/2014 15:26:04</publishTime>
|
||||
<publishTime>02/11/2014 15:26:04</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Razor.dll">
|
||||
<publishTime>10/20/2023 22:33:48</publishTime>
|
||||
@@ -442,211 +442,217 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
<publishTime>10/20/2023 22:33:58</publishTime>
|
||||
</File>
|
||||
<File Include="bin/vbBarcodes.dll">
|
||||
<publishTime>01/13/2025 19:24:21</publishTime>
|
||||
<publishTime>02/04/2025 20:25:44</publishTime>
|
||||
</File>
|
||||
<File Include="bin/vbBarcodes.pdb">
|
||||
<publishTime>01/13/2025 19:24:21</publishTime>
|
||||
<publishTime>02/04/2025 20:25:44</publishTime>
|
||||
</File>
|
||||
<File Include="bin/VBFileManagement.dll">
|
||||
<publishTime>12/28/2024 10:07:41</publishTime>
|
||||
<publishTime>01/24/2025 09:01:41</publishTime>
|
||||
</File>
|
||||
<File Include="bin/VBFileManagement.pdb">
|
||||
<publishTime>12/28/2024 10:07:41</publishTime>
|
||||
<publishTime>01/24/2025 09:01:41</publishTime>
|
||||
</File>
|
||||
<File Include="bin/VBOffice.dll">
|
||||
<publishTime>02/04/2025 20:25:44</publishTime>
|
||||
</File>
|
||||
<File Include="bin/VBOffice.pdb">
|
||||
<publishTime>02/04/2025 20:25:44</publishTime>
|
||||
</File>
|
||||
<File Include="bin/WebActivatorEx.dll">
|
||||
<publishTime>05/10/2016 15:11:52</publishTime>
|
||||
<publishTime>10/05/2016 15:11:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/WebGrease.dll">
|
||||
<publishTime>01/23/2014 13:57:34</publishTime>
|
||||
</File>
|
||||
<File Include="bin/x64/libSkiaSharp.dll">
|
||||
<publishTime>09/04/2024 19:24:38</publishTime>
|
||||
<publishTime>04/09/2024 19:24:38</publishTime>
|
||||
</File>
|
||||
<File Include="bin/x86/libSkiaSharp.dll">
|
||||
<publishTime>09/04/2024 19:24:38</publishTime>
|
||||
<publishTime>04/09/2024 19:24:38</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-grid.css">
|
||||
<publishTime>03/06/2024 09:16:17</publishTime>
|
||||
<publishTime>06/03/2024 09:16:17</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-grid.css.map">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-grid.min.css">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-grid.min.css.map">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-grid.rtl.css">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-grid.rtl.css.map">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-grid.rtl.min.css">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-grid.rtl.min.css.map">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-reboot.css">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-reboot.css.map">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-reboot.min.css">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-reboot.min.css.map">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-reboot.rtl.css">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-reboot.rtl.css.map">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-reboot.rtl.min.css">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-reboot.rtl.min.css.map">
|
||||
<publishTime>03/06/2024 09:16:16</publishTime>
|
||||
<publishTime>06/03/2024 09:16:16</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-utilities.css">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-utilities.css.map">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-utilities.min.css">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-utilities.min.css.map">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-utilities.rtl.css">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-utilities.rtl.css.map">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-utilities.rtl.min.css">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap-utilities.rtl.min.css.map">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.css">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.css.map">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.min.css">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.min.css.map">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.rtl.css">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.rtl.css.map">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.rtl.min.css">
|
||||
<publishTime>03/06/2024 09:16:15</publishTime>
|
||||
<publishTime>06/03/2024 09:16:15</publishTime>
|
||||
</File>
|
||||
<File Include="Content/bootstrap.rtl.min.css.map">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Content/Site.css">
|
||||
<publishTime>03/06/2024 08:11:55</publishTime>
|
||||
<publishTime>06/03/2024 08:11:55</publishTime>
|
||||
</File>
|
||||
<File Include="favicon.ico">
|
||||
<publishTime>03/06/2024 08:11:55</publishTime>
|
||||
<publishTime>06/03/2024 08:11:55</publishTime>
|
||||
</File>
|
||||
<File Include="Global.asax">
|
||||
<publishTime>07/19/2024 12:25:43</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.bundle.js">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.bundle.js.map">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.bundle.min.js">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.bundle.min.js.map">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.esm.js">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.esm.js.map">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.esm.min.js">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.esm.min.js.map">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.js">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.js.map">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.min.js">
|
||||
<publishTime>03/06/2024 09:16:14</publishTime>
|
||||
<publishTime>06/03/2024 09:16:14</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/bootstrap.min.js.map">
|
||||
<publishTime>03/06/2024 09:16:13</publishTime>
|
||||
<publishTime>06/03/2024 09:16:13</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.7.1.js">
|
||||
<publishTime>03/06/2024 09:16:17</publishTime>
|
||||
<publishTime>06/03/2024 09:16:17</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.7.1.min.js">
|
||||
<publishTime>03/06/2024 09:16:17</publishTime>
|
||||
<publishTime>06/03/2024 09:16:17</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.7.1.min.map">
|
||||
<publishTime>03/06/2024 09:16:17</publishTime>
|
||||
<publishTime>06/03/2024 09:16:17</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.7.1.slim.js">
|
||||
<publishTime>03/06/2024 09:16:17</publishTime>
|
||||
<publishTime>06/03/2024 09:16:17</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.7.1.slim.min.js">
|
||||
<publishTime>03/06/2024 09:16:17</publishTime>
|
||||
<publishTime>06/03/2024 09:16:17</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/jquery-3.7.1.slim.min.map">
|
||||
<publishTime>03/06/2024 09:16:17</publishTime>
|
||||
<publishTime>06/03/2024 09:16:17</publishTime>
|
||||
</File>
|
||||
<File Include="Scripts/modernizr-2.8.3.js">
|
||||
<publishTime>03/06/2024 08:12:04</publishTime>
|
||||
<publishTime>06/03/2024 08:12:04</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Home/APIGenerator.cshtml">
|
||||
<publishTime>01/10/2024 20:21:44</publishTime>
|
||||
<publishTime>10/01/2024 20:21:44</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Home/Index.cshtml">
|
||||
<publishTime>03/06/2024 08:11:55</publishTime>
|
||||
<publishTime>06/03/2024 08:11:55</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Shared/Error.cshtml">
|
||||
<publishTime>03/06/2024 08:11:55</publishTime>
|
||||
<publishTime>06/03/2024 08:11:55</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Shared/_Layout.cshtml">
|
||||
<publishTime>03/06/2024 10:48:16</publishTime>
|
||||
<publishTime>06/03/2024 10:48:16</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Web.config">
|
||||
<publishTime>07/19/2024 12:25:43</publishTime>
|
||||
</File>
|
||||
<File Include="Views/_ViewStart.cshtml">
|
||||
<publishTime>03/06/2024 08:11:55</publishTime>
|
||||
<publishTime>06/03/2024 08:11:55</publishTime>
|
||||
</File>
|
||||
<File Include="Web.config">
|
||||
<publishTime>01/12/2025 14:00:22</publishTime>
|
||||
<publishTime>02/04/2025 21:33:02</publishTime>
|
||||
</File>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -11,7 +11,7 @@
|
||||
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
||||
<add key="UnterschriftPath" value="E:\Software-Projekte\OnDoc\Unterschriften\" />
|
||||
<add key="ImagePath" value="E:\Software-Projekte\OnDoc\Images\" />
|
||||
<add key="DemoUnterschrift" value="YES" />
|
||||
<add key="DemoUnterschrift" value="NO" />
|
||||
<add key="DemoUnterschrift_Links" value="1.png" />
|
||||
<add key="DemoUnterschrift_Rechts" value="2.png" />
|
||||
<add key="DefaultImageWidth" value="120" />
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -11,7 +11,7 @@
|
||||
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
||||
<add key="UnterschriftPath" value="E:\Software-Projekte\OnDoc\Unterschriften\" />
|
||||
<add key="ImagePath" value="E:\Software-Projekte\OnDoc\Images\" />
|
||||
<add key="DemoUnterschrift" value="YES" />
|
||||
<add key="DemoUnterschrift" value="NO" />
|
||||
<add key="DemoUnterschrift_Links" value="1.png" />
|
||||
<add key="DemoUnterschrift_Rechts" value="2.png" />
|
||||
<add key="DefaultImageWidth" value="120" />
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -3787,3 +3787,439 @@ Parametername: encoder
|
||||
2025-02-02 18:06:32.5617|DEBUG|OnDoc|
|
||||
2025-02-02 18:06:32.5888|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: xmniederkofler
|
||||
2025-02-02 18:06:32.5888|INFO|OnDoc|Unterschrift-Bezug: xmniederkofler
|
||||
2025-02-03 09:00:10.5140|DEBUG|OnDoc|
|
||||
2025-02-03 09:00:10.5578|DEBUG|OnDoc|
|
||||
2025-02-03 09:00:10.5849|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 09:00:10.5849|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 09:00:10.6709|DEBUG|OnDoc|
|
||||
2025-02-03 09:00:10.6789|DEBUG|OnDoc|
|
||||
2025-02-03 09:00:10.6950|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 09:01:09.0730|DEBUG|OnDoc|
|
||||
2025-02-03 09:01:09.0831|DEBUG|OnDoc|
|
||||
2025-02-03 09:01:09.1051|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 09:01:09.1051|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 09:01:09.1488|DEBUG|OnDoc|
|
||||
2025-02-03 09:01:09.1488|DEBUG|OnDoc|
|
||||
2025-02-03 09:01:09.1659|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 09:03:57.8014|DEBUG|OnDoc|
|
||||
2025-02-03 09:03:57.8014|DEBUG|OnDoc|
|
||||
2025-02-03 09:03:57.8348|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 09:03:57.8348|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 09:03:57.8798|DEBUG|OnDoc|
|
||||
2025-02-03 09:03:57.8798|DEBUG|OnDoc|
|
||||
2025-02-03 09:03:57.8969|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 09:06:58.4992|DEBUG|OnDoc|
|
||||
2025-02-03 09:06:58.5092|DEBUG|OnDoc|
|
||||
2025-02-03 09:06:58.5331|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 09:06:58.5331|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 09:06:58.5780|DEBUG|OnDoc|
|
||||
2025-02-03 09:06:58.5780|DEBUG|OnDoc|
|
||||
2025-02-03 09:06:58.5937|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 09:52:38.2680|DEBUG|OnDoc|
|
||||
2025-02-03 09:52:38.3045|DEBUG|OnDoc|
|
||||
2025-02-03 09:52:38.3295|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 09:52:38.3295|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 09:52:38.4171|DEBUG|OnDoc|
|
||||
2025-02-03 09:52:38.4271|DEBUG|OnDoc|
|
||||
2025-02-03 09:52:38.4481|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 09:55:14.3885|DEBUG|OnDoc|
|
||||
2025-02-03 09:55:14.3985|DEBUG|OnDoc|
|
||||
2025-02-03 09:55:14.4235|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 09:55:14.4265|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 09:55:14.4685|DEBUG|OnDoc|
|
||||
2025-02-03 09:55:14.4685|DEBUG|OnDoc|
|
||||
2025-02-03 09:55:14.4845|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 11:39:15.3764|DEBUG|OnDoc|Mailversand: 134
|
||||
2025-02-03 11:39:15.4498|ERROR|OnDoc|Unberechtigter Zugriff
|
||||
2025-02-03 11:41:35.0277|DEBUG|OnDoc|
|
||||
2025-02-03 11:41:35.0381|DEBUG|OnDoc|
|
||||
2025-02-03 11:41:35.0631|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG1807
|
||||
2025-02-03 11:41:35.0631|INFO|OnDoc|Unterschrift-Bezug: TG1807
|
||||
2025-02-03 11:42:27.2221|DEBUG|OnDoc|Mailversand: 134
|
||||
2025-02-03 11:42:27.2496|ERROR|OnDoc|Unberechtigter Zugriff
|
||||
2025-02-03 11:42:27.2767|DEBUG|OnDoc|Mailversand: 516
|
||||
2025-02-03 11:42:27.3036|ERROR|OnDoc|Unberechtigter Zugriff
|
||||
2025-02-03 11:43:20.4291|DEBUG|OnDoc|
|
||||
2025-02-03 11:43:20.4291|DEBUG|OnDoc|
|
||||
2025-02-03 11:43:20.4645|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG1807
|
||||
2025-02-03 11:43:20.4645|INFO|OnDoc|Unterschrift-Bezug: TG1807
|
||||
2025-02-03 11:43:20.5078|DEBUG|OnDoc|
|
||||
2025-02-03 11:43:20.5078|DEBUG|OnDoc|
|
||||
2025-02-03 11:43:20.5358|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG7825
|
||||
2025-02-03 11:43:20.5358|INFO|OnDoc|Unterschrift-Bezug: TG7825
|
||||
2025-02-03 12:40:43.2943|DEBUG|OnDoc|
|
||||
2025-02-03 12:40:43.3298|DEBUG|OnDoc|
|
||||
2025-02-03 12:40:43.3558|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 12:40:43.3558|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 12:40:43.4409|DEBUG|OnDoc|
|
||||
2025-02-03 12:40:43.4519|DEBUG|OnDoc|
|
||||
2025-02-03 12:40:43.4689|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 12:42:41.5175|DEBUG|OnDoc|
|
||||
2025-02-03 12:42:41.5275|DEBUG|OnDoc|
|
||||
2025-02-03 12:42:41.5525|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 12:42:41.5525|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 12:42:41.5970|DEBUG|OnDoc|
|
||||
2025-02-03 12:42:41.6000|DEBUG|OnDoc|
|
||||
2025-02-03 12:42:41.6160|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 12:43:07.8539|DEBUG|OnDoc|
|
||||
2025-02-03 12:43:07.8539|DEBUG|OnDoc|
|
||||
2025-02-03 12:43:07.8882|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 12:43:07.8882|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 12:43:07.9366|DEBUG|OnDoc|
|
||||
2025-02-03 12:43:07.9366|DEBUG|OnDoc|
|
||||
2025-02-03 12:43:07.9542|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 12:46:56.4175|DEBUG|OnDoc|
|
||||
2025-02-03 12:46:56.4265|DEBUG|OnDoc|
|
||||
2025-02-03 12:46:56.4525|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 12:46:56.4525|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 12:46:56.4957|DEBUG|OnDoc|
|
||||
2025-02-03 12:46:56.4957|DEBUG|OnDoc|
|
||||
2025-02-03 12:46:56.5137|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 12:47:22.3411|DEBUG|OnDoc|
|
||||
2025-02-03 12:47:22.3501|DEBUG|OnDoc|
|
||||
2025-02-03 12:47:22.3741|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 12:47:22.3741|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 12:47:22.4161|DEBUG|OnDoc|
|
||||
2025-02-03 12:47:22.4161|DEBUG|OnDoc|
|
||||
2025-02-03 12:47:22.4336|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 12:48:01.7304|DEBUG|OnDoc|
|
||||
2025-02-03 12:48:01.7404|DEBUG|OnDoc|
|
||||
2025-02-03 12:48:01.7644|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 12:48:01.7644|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 12:48:01.8079|DEBUG|OnDoc|
|
||||
2025-02-03 12:48:01.8079|DEBUG|OnDoc|
|
||||
2025-02-03 12:48:01.8259|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 12:48:23.9773|DEBUG|OnDoc|Mailversand: -1
|
||||
2025-02-03 12:48:24.0038|ERROR|OnDoc|Unberechtigter Zugriff
|
||||
2025-02-03 12:52:36.6875|DEBUG|OnDoc|
|
||||
2025-02-03 12:52:36.6985|DEBUG|OnDoc|
|
||||
2025-02-03 12:52:36.7266|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 12:52:36.7266|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 12:52:36.7711|DEBUG|OnDoc|
|
||||
2025-02-03 12:52:36.7711|DEBUG|OnDoc|
|
||||
2025-02-03 12:52:36.7871|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 12:53:20.5790|DEBUG|OnDoc|
|
||||
2025-02-03 12:53:20.5892|DEBUG|OnDoc|
|
||||
2025-02-03 12:53:20.6122|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 12:53:20.6142|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 12:53:20.6555|DEBUG|OnDoc|
|
||||
2025-02-03 12:53:20.6555|DEBUG|OnDoc|
|
||||
2025-02-03 12:53:20.6729|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 13:49:31.5958|DEBUG|OnDoc|
|
||||
2025-02-03 13:49:31.6264|DEBUG|OnDoc|
|
||||
2025-02-03 13:49:31.6524|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 13:49:31.6524|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 13:49:31.7321|DEBUG|OnDoc|
|
||||
2025-02-03 13:49:31.7411|DEBUG|OnDoc|
|
||||
2025-02-03 13:49:31.7551|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 13:49:50.6757|DEBUG|OnDoc|
|
||||
2025-02-03 13:49:50.6847|DEBUG|OnDoc|
|
||||
2025-02-03 13:49:50.7097|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 13:49:50.7097|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 13:49:50.7573|DEBUG|OnDoc|
|
||||
2025-02-03 13:49:50.7573|DEBUG|OnDoc|
|
||||
2025-02-03 13:49:50.7763|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 13:50:10.6035|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:10.6035|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:10.6370|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 13:50:10.6370|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 13:50:10.6814|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:10.6814|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:10.6994|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 13:50:32.0251|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002488753
|
||||
2025-02-03 13:50:32.0251|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:32.0371|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:32.0371|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:32.2196|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:32.2196|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:32.2306|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:33.5939|DEBUG|OnDoc|Start Transfer to OnBase
|
||||
2025-02-03 13:50:33.7431|DEBUG|OnDoc|Ende Transfer to OnBase
|
||||
2025-02-03 13:50:33.7653|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082025002488753
|
||||
2025-02-03 13:50:33.7653|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0082025002488753
|
||||
2025-02-03 13:50:33.7746|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0082025002488753
|
||||
2025-02-03 13:50:33.7746|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:33.7746|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:33.7746|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:33.8192|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:33.8192|DEBUG|OnDoc|
|
||||
2025-02-03 13:50:33.8192|DEBUG|OnDoc|
|
||||
2025-02-03 16:31:35.7500|DEBUG|OnDoc|
|
||||
2025-02-03 16:31:35.7880|DEBUG|OnDoc|
|
||||
2025-02-03 16:31:35.8214|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:31:35.8214|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:36:02.2668|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:02.2758|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:02.2988|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:36:02.2988|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:36:02.3502|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:02.3502|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:02.3762|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:36:02.3762|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:36:02.4237|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:02.4267|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:02.4267|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 16:36:02.4922|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:02.4922|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:02.5073|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 16:36:22.8632|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:22.8732|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:22.8962|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:36:22.8962|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:36:22.9467|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:22.9467|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:22.9718|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:36:22.9738|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:36:23.0215|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:23.0215|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:23.0365|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 16:36:23.0839|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:23.0839|DEBUG|OnDoc|
|
||||
2025-02-03 16:36:23.1001|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 16:37:04.0660|DEBUG|OnDoc|
|
||||
2025-02-03 16:37:04.0750|DEBUG|OnDoc|
|
||||
2025-02-03 16:37:04.0990|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:37:04.0990|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:37:04.1503|DEBUG|OnDoc|
|
||||
2025-02-03 16:37:04.1503|DEBUG|OnDoc|
|
||||
2025-02-03 16:37:04.1779|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:37:04.1779|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:37:04.2269|DEBUG|OnDoc|
|
||||
2025-02-03 16:37:04.2269|DEBUG|OnDoc|
|
||||
2025-02-03 16:37:04.2435|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 16:37:04.2905|DEBUG|OnDoc|
|
||||
2025-02-03 16:37:04.2905|DEBUG|OnDoc|
|
||||
2025-02-03 16:37:04.3075|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 16:38:12.2662|DEBUG|OnDoc|
|
||||
2025-02-03 16:38:12.2752|DEBUG|OnDoc|
|
||||
2025-02-03 16:38:12.2993|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:38:12.3012|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:38:12.3493|DEBUG|OnDoc|
|
||||
2025-02-03 16:38:12.3493|DEBUG|OnDoc|
|
||||
2025-02-03 16:38:12.3743|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:38:12.3743|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:38:12.4225|DEBUG|OnDoc|
|
||||
2025-02-03 16:38:12.4225|DEBUG|OnDoc|
|
||||
2025-02-03 16:38:12.4396|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 16:38:12.4858|DEBUG|OnDoc|
|
||||
2025-02-03 16:38:12.4888|DEBUG|OnDoc|
|
||||
2025-02-03 16:38:12.5048|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 16:40:09.0010|DEBUG|OnDoc|
|
||||
2025-02-03 16:40:09.0100|DEBUG|OnDoc|
|
||||
2025-02-03 16:40:09.0375|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:40:09.0375|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:40:09.1035|DEBUG|OnDoc|
|
||||
2025-02-03 16:40:09.1035|DEBUG|OnDoc|
|
||||
2025-02-03 16:40:09.1345|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-03 16:40:09.1345|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-03 16:40:09.1890|DEBUG|OnDoc|
|
||||
2025-02-03 16:40:09.1890|DEBUG|OnDoc|
|
||||
2025-02-03 16:40:09.2070|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-03 16:40:09.2576|DEBUG|OnDoc|
|
||||
2025-02-03 16:40:09.2576|DEBUG|OnDoc|
|
||||
2025-02-03 16:40:09.2746|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-04 12:23:56.2683|DEBUG|OnDoc|
|
||||
2025-02-04 12:23:56.3059|DEBUG|OnDoc|
|
||||
2025-02-04 12:23:56.3339|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 12:23:56.3339|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 14:40:01.8137|DEBUG|OnDoc|
|
||||
2025-02-04 14:40:01.8493|DEBUG|OnDoc|
|
||||
2025-02-04 14:40:01.8776|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 14:40:01.8776|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 14:43:07.8882|DEBUG|OnDoc|
|
||||
2025-02-04 14:43:07.9206|DEBUG|OnDoc|
|
||||
2025-02-04 14:43:07.9491|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 14:43:07.9511|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 14:45:19.6256|DEBUG|OnDoc|
|
||||
2025-02-04 14:45:19.6593|DEBUG|OnDoc|
|
||||
2025-02-04 14:45:19.6889|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 14:45:19.6889|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 14:46:06.9731|ERROR|OnDoc|Unberechtigter Zugriff
|
||||
2025-02-04 14:47:14.0729|DEBUG|OnDoc|
|
||||
2025-02-04 14:47:14.1111|DEBUG|OnDoc|
|
||||
2025-02-04 14:47:14.1432|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 14:47:14.1432|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 14:48:10.1532|INFO|OnDoc|Unterschriften-Image gespeichert - 123
|
||||
2025-02-04 14:49:07.5453|INFO|OnDoc|Unterschriften-Image gespeichert - 123
|
||||
2025-02-04 14:49:20.5862|DEBUG|OnDoc|
|
||||
2025-02-04 14:49:20.6216|DEBUG|OnDoc|
|
||||
2025-02-04 14:49:20.6317|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 14:49:20.6317|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 14:54:10.4731|INFO|OnDoc|Unterschriften-Image gespeichert - Stefan Hutter lokal
|
||||
2025-02-04 15:57:24.3700|DEBUG|OnDoc|
|
||||
2025-02-04 15:57:24.4015|DEBUG|OnDoc|
|
||||
2025-02-04 15:57:24.4275|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 15:57:24.4275|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 15:58:38.0890|DEBUG|OnDoc|
|
||||
2025-02-04 15:58:38.1201|DEBUG|OnDoc|
|
||||
2025-02-04 15:58:38.1477|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 15:58:38.1477|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 16:00:36.0536|DEBUG|OnDoc|
|
||||
2025-02-04 16:00:36.0852|DEBUG|OnDoc|
|
||||
2025-02-04 16:00:36.1208|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 16:00:36.1241|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 16:01:35.3144|DEBUG|OnDoc|
|
||||
2025-02-04 16:01:35.3467|DEBUG|OnDoc|
|
||||
2025-02-04 16:01:35.3761|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 16:01:35.3761|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 18:28:01.3422|DEBUG|OnDoc|
|
||||
2025-02-04 18:28:01.3745|DEBUG|OnDoc|
|
||||
2025-02-04 18:28:01.4026|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 18:28:01.4056|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:06:48.5728|DEBUG|OnDoc|
|
||||
2025-02-04 19:06:48.6078|DEBUG|OnDoc|
|
||||
2025-02-04 19:06:48.6348|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:06:48.6348|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:07:04.4954|ERROR|OnDoc|Unberechtigter Zugriff
|
||||
2025-02-04 19:07:12.4105|INFO|OnDoc|Unterschriften-Image gespeichert - Stefan Hutter lokal
|
||||
2025-02-04 19:17:22.0791|DEBUG|OnDoc|
|
||||
2025-02-04 19:17:22.1101|DEBUG|OnDoc|
|
||||
2025-02-04 19:17:22.1381|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:17:22.1381|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:17:46.5585|ERROR|OnDoc|Unberechtigter Zugriff
|
||||
2025-02-04 19:17:47.5354|DEBUG|OnDoc|
|
||||
2025-02-04 19:17:47.5444|DEBUG|OnDoc|
|
||||
2025-02-04 19:17:47.5694|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:17:47.5694|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:18:06.7403|ERROR|OnDoc|Unberechtigter Zugriff
|
||||
2025-02-04 19:18:11.0812|INFO|OnDoc|Unterschriften-Image gespeichert - Stefan Hutter lokal
|
||||
2025-02-04 19:18:13.7507|DEBUG|OnDoc|
|
||||
2025-02-04 19:18:13.7507|DEBUG|OnDoc|
|
||||
2025-02-04 19:18:13.7831|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:18:13.7831|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:18:19.5013|DEBUG|OnDoc|
|
||||
2025-02-04 19:18:19.5013|DEBUG|OnDoc|
|
||||
2025-02-04 19:18:19.5363|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:18:19.5363|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:18:21.8780|DEBUG|OnDoc|
|
||||
2025-02-04 19:18:21.8780|DEBUG|OnDoc|
|
||||
2025-02-04 19:18:21.9050|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:18:21.9050|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:18:57.2460|INFO|OnDoc|Unterschriften-Image gespeichert - Stefan Hutter lokal
|
||||
2025-02-04 19:19:07.1750|DEBUG|OnDoc|
|
||||
2025-02-04 19:19:07.2110|DEBUG|OnDoc|
|
||||
2025-02-04 19:19:07.4137|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:19:07.4227|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:20:01.1318|DEBUG|OnDoc|
|
||||
2025-02-04 19:20:01.3790|DEBUG|OnDoc|
|
||||
2025-02-04 19:20:01.4370|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:20:01.4370|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:20:20.8158|INFO|OnDoc|Unterschriften-Image gespeichert - Stefan Hutter lokal
|
||||
2025-02-04 19:20:20.8648|ERROR|OnDoc|Der Prozess kann nicht auf die Datei "E:\Software-Projekte\OnDoc\Unterschriften\Stefan Hutter lokal.jpg" zugreifen, da sie von einem anderen Prozess verwendet wird.
|
||||
2025-02-04 19:20:21.6195|DEBUG|OnDoc|
|
||||
2025-02-04 19:20:21.7035|DEBUG|OnDoc|
|
||||
2025-02-04 19:20:21.7315|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:20:21.7335|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:21:21.4989|DEBUG|OnDoc|
|
||||
2025-02-04 19:21:21.4989|DEBUG|OnDoc|
|
||||
2025-02-04 19:21:21.5309|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:21:21.5309|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:21:21.5873|DEBUG|OnDoc|
|
||||
2025-02-04 19:21:21.5873|DEBUG|OnDoc|
|
||||
2025-02-04 19:21:21.6043|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-04 19:23:14.2130|INFO|OnDoc|Unterschriften-Image gespeichert - Stefan Hutter lokal
|
||||
2025-02-04 19:23:15.9148|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:15.9248|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:15.9509|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:23:15.9509|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:23:18.4187|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:18.4217|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:18.4447|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:23:18.4447|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:23:20.0368|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:20.0368|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:20.0668|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:23:20.0668|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:23:21.2616|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:21.2646|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:21.2896|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:23:21.2896|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:23:43.4648|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:43.4748|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:43.4988|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:23:43.4988|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:23:43.5528|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:43.5528|DEBUG|OnDoc|
|
||||
2025-02-04 19:23:43.5699|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-04 19:26:00.3221|DEBUG|OnDoc|
|
||||
2025-02-04 19:26:00.3594|DEBUG|OnDoc|
|
||||
2025-02-04 19:26:00.3934|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:26:00.3934|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:26:30.5992|INFO|OnDoc|Unterschriften-Image gespeichert - Stefan Hutter lokal
|
||||
2025-02-04 19:26:30.6465|ERROR|OnDoc|Der Prozess kann nicht auf die Datei "E:\Software-Projekte\OnDoc\Unterschriften\Stefan Hutter lokal.jpg" zugreifen, da sie von einem anderen Prozess verwendet wird.
|
||||
2025-02-04 19:26:30.7076|DEBUG|OnDoc|
|
||||
2025-02-04 19:26:30.7076|DEBUG|OnDoc|
|
||||
2025-02-04 19:26:30.7341|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:26:30.7341|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:26:55.8087|INFO|OnDoc|Unterschriften-Image gespeichert - Stefan Hutter lokal
|
||||
2025-02-04 19:26:55.8532|ERROR|OnDoc|Der Prozess kann nicht auf die Datei "E:\Software-Projekte\OnDoc\Unterschriften\Stefan Hutter lokal.jpg" zugreifen, da sie von einem anderen Prozess verwendet wird.
|
||||
2025-02-04 19:26:55.9022|DEBUG|OnDoc|
|
||||
2025-02-04 19:26:55.9042|DEBUG|OnDoc|
|
||||
2025-02-04 19:26:55.9314|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:26:55.9314|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:27:00.7729|DEBUG|OnDoc|
|
||||
2025-02-04 19:27:00.7729|DEBUG|OnDoc|
|
||||
2025-02-04 19:27:00.7989|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:27:00.7989|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:27:01.2069|DEBUG|OnDoc|
|
||||
2025-02-04 19:27:01.2069|DEBUG|OnDoc|
|
||||
2025-02-04 19:27:01.2363|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:27:01.2363|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 19:27:22.2313|INFO|OnDoc|Unterschriften-Image gespeichert - Stefan Hutter lokal
|
||||
2025-02-04 19:27:31.4741|ERROR|OnDoc|Der Prozess kann nicht auf die Datei "E:\Software-Projekte\OnDoc\Unterschriften\Stefan Hutter lokal.jpg" zugreifen, da sie von einem anderen Prozess verwendet wird.
|
||||
2025-02-04 19:27:32.5705|DEBUG|OnDoc|
|
||||
2025-02-04 19:27:32.5805|DEBUG|OnDoc|
|
||||
2025-02-04 19:27:32.6035|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 19:27:32.6035|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 20:42:21.9717|ERROR|OnDoc|Unberechtigter Zugriff
|
||||
2025-02-04 20:46:10.6397|DEBUG|OnDoc|
|
||||
2025-02-04 20:46:10.6717|DEBUG|OnDoc|
|
||||
2025-02-04 20:46:10.6987|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 20:46:10.6987|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
2025-02-04 20:46:10.7617|DEBUG|OnDoc|
|
||||
2025-02-04 20:46:10.7637|DEBUG|OnDoc|
|
||||
2025-02-04 20:46:10.7807|DEBUG|OnDoc|TGNummer für Mitarbeiter nicht vorhanden Mitarbeiternr: -1
|
||||
2025-02-04 20:55:24.6018|DEBUG|OnDoc|
|
||||
2025-02-04 20:55:24.6328|DEBUG|OnDoc|
|
||||
2025-02-04 20:55:24.6598|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG1807
|
||||
2025-02-04 20:55:24.6598|INFO|OnDoc|Unterschrift-Bezug - nicht vorhanden: TG1807 DEMO-Unterschrfit verwendet
|
||||
2025-02-04 20:55:24.6598|INFO|OnDoc|Unterschrift-Bezug: TG1807
|
||||
2025-02-04 20:55:24.7308|DEBUG|OnDoc|
|
||||
2025-02-04 20:55:24.7393|DEBUG|OnDoc|
|
||||
2025-02-04 20:55:24.7655|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG7825
|
||||
2025-02-04 20:55:24.7655|INFO|OnDoc|Unterschrift-Bezug - nicht vorhanden: TG7825 DEMO-Unterschrfit verwendet
|
||||
2025-02-04 20:55:24.7655|INFO|OnDoc|Unterschrift-Bezug: TG7825
|
||||
2025-02-04 20:55:44.7135|DEBUG|OnDoc|
|
||||
2025-02-04 20:55:44.7135|DEBUG|OnDoc|
|
||||
2025-02-04 20:55:44.7411|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG1807
|
||||
2025-02-04 20:55:44.7411|INFO|OnDoc|Unterschrift-Bezug - nicht vorhanden: TG1807 DEMO-Unterschrfit verwendet
|
||||
2025-02-04 20:55:44.7411|INFO|OnDoc|Unterschrift-Bezug: TG1807
|
||||
2025-02-04 20:55:44.7822|DEBUG|OnDoc|
|
||||
2025-02-04 20:55:44.7822|DEBUG|OnDoc|
|
||||
2025-02-04 20:55:44.8082|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG7825
|
||||
2025-02-04 20:55:44.8112|INFO|OnDoc|Unterschrift-Bezug - nicht vorhanden: TG7825 DEMO-Unterschrfit verwendet
|
||||
2025-02-04 20:55:44.8112|INFO|OnDoc|Unterschrift-Bezug: TG7825
|
||||
2025-02-04 21:31:54.2980|DEBUG|OnDoc|
|
||||
2025-02-04 21:31:54.3306|DEBUG|OnDoc|
|
||||
2025-02-04 21:31:54.3616|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG1807
|
||||
2025-02-04 21:31:54.3616|INFO|OnDoc|Unterschrift-Bezug - nicht vorhanden: TG1807 DEMO-Unterschrfit verwendet
|
||||
2025-02-04 21:31:54.3616|INFO|OnDoc|Unterschrift-Bezug: TG1807
|
||||
2025-02-04 21:31:54.4386|DEBUG|OnDoc|
|
||||
2025-02-04 21:31:54.4386|DEBUG|OnDoc|
|
||||
2025-02-04 21:31:54.4741|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG7825
|
||||
2025-02-04 21:31:54.4741|INFO|OnDoc|Unterschrift-Bezug - nicht vorhanden: TG7825 DEMO-Unterschrfit verwendet
|
||||
2025-02-04 21:31:54.4741|INFO|OnDoc|Unterschrift-Bezug: TG7825
|
||||
2025-02-04 21:32:03.6905|DEBUG|OnDoc|
|
||||
2025-02-04 21:32:03.6905|DEBUG|OnDoc|
|
||||
2025-02-04 21:32:03.7195|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG1807
|
||||
2025-02-04 21:32:03.7195|INFO|OnDoc|Unterschrift-Bezug - nicht vorhanden: TG1807 DEMO-Unterschrfit verwendet
|
||||
2025-02-04 21:32:03.7195|INFO|OnDoc|Unterschrift-Bezug: TG1807
|
||||
2025-02-04 21:32:03.7619|DEBUG|OnDoc|
|
||||
2025-02-04 21:32:03.7649|DEBUG|OnDoc|
|
||||
2025-02-04 21:32:03.7902|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: TG7825
|
||||
2025-02-04 21:32:03.7902|INFO|OnDoc|Unterschrift-Bezug - nicht vorhanden: TG7825 DEMO-Unterschrfit verwendet
|
||||
2025-02-04 21:32:03.7902|INFO|OnDoc|Unterschrift-Bezug: TG7825
|
||||
2025-02-04 22:14:12.3430|DEBUG|OnDoc|
|
||||
2025-02-04 22:14:12.3750|DEBUG|OnDoc|
|
||||
2025-02-04 22:14:12.3990|DEBUG|OnDoc|Start GetUnterschriftAsBase64 TGNummer: Stefan Hutter lokal
|
||||
2025-02-04 22:14:12.3990|INFO|OnDoc|Unterschrift-Bezug: Stefan Hutter lokal
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -11,11 +11,11 @@
|
||||
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
||||
<add key="UnterschriftPath" value="E:\Software-Projekte\OnDoc\Unterschriften\" />
|
||||
<add key="ImagePath" value="E:\Software-Projekte\OnDoc\Images\" />
|
||||
<add key="DemoUnterschrift" value="YES" />
|
||||
<add key="DemoUnterschrift" value="NO" />
|
||||
<add key="DemoUnterschrift_Links" value="1.png" />
|
||||
<add key="DemoUnterschrift_Rechts" value="2.png" />
|
||||
<add key="DefaultImageWidth" value="140" />
|
||||
<add key="DefaultImageHeight" value="70" />
|
||||
<add key="DefaultImageWidth" value="120" />
|
||||
<add key="DefaultImageHeight" value="50" />
|
||||
<add key="JSONDebugPath" value="X:\\jsontemp\" />
|
||||
<add key="Bearer" value="abc" />
|
||||
<add key="APIKeys" value="x:\apikeys.key" />
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
API_NetFramework/obj/Debug/Package/PackageTmp/bin/VBOffice.dll
Normal file
BIN
API_NetFramework/obj/Debug/Package/PackageTmp/bin/VBOffice.dll
Normal file
Binary file not shown.
BIN
API_NetFramework/obj/Debug/Package/PackageTmp/bin/VBOffice.pdb
Normal file
BIN
API_NetFramework/obj/Debug/Package/PackageTmp/bin/VBOffice.pdb
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -11,11 +11,11 @@
|
||||
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
||||
<add key="UnterschriftPath" value="E:\Software-Projekte\OnDoc\Unterschriften\" />
|
||||
<add key="ImagePath" value="E:\Software-Projekte\OnDoc\Images\" />
|
||||
<add key="DemoUnterschrift" value="YES" />
|
||||
<add key="DemoUnterschrift" value="NO" />
|
||||
<add key="DemoUnterschrift_Links" value="1.png" />
|
||||
<add key="DemoUnterschrift_Rechts" value="2.png" />
|
||||
<add key="DefaultImageWidth" value="140" />
|
||||
<add key="DefaultImageHeight" value="70" />
|
||||
<add key="DefaultImageWidth" value="120" />
|
||||
<add key="DefaultImageHeight" value="50" />
|
||||
<add key="JSONDebugPath" value="X:\\jsontemp\" />
|
||||
<add key="Bearer" value="abc" />
|
||||
<add key="APIKeys" value="x:\apikeys.key" />
|
||||
|
||||
@@ -11,11 +11,11 @@
|
||||
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
||||
<add key="UnterschriftPath" value="E:\Software-Projekte\OnDoc\Unterschriften\" />
|
||||
<add key="ImagePath" value="E:\Software-Projekte\OnDoc\Images\" />
|
||||
<add key="DemoUnterschrift" value="YES" />
|
||||
<add key="DemoUnterschrift" value="NO" />
|
||||
<add key="DemoUnterschrift_Links" value="1.png" />
|
||||
<add key="DemoUnterschrift_Rechts" value="2.png" />
|
||||
<add key="DefaultImageWidth" value="140" />
|
||||
<add key="DefaultImageHeight" value="70" />
|
||||
<add key="DefaultImageWidth" value="120" />
|
||||
<add key="DefaultImageHeight" value="50" />
|
||||
<add key="JSONDebugPath" value="X:\\jsontemp\" />
|
||||
<add key="Bearer" value="abc" />
|
||||
<add key="APIKeys" value="x:\apikeys.key" />
|
||||
|
||||
Reference in New Issue
Block a user