update 20241125

This commit is contained in:
Stefan Hutter
2024-11-24 19:38:37 +01:00
parent 6bdbc4173e
commit 341ea50f06
281 changed files with 14362 additions and 180 deletions

View File

@@ -44,6 +44,9 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="CSVNET">
<HintPath>..\CSVNET\bin\Debug\CSVNET.dll</HintPath>
</Reference>
<Reference Include="Microsoft.AspNetCore.Http, Version=2.2.2.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.AspNetCore.Http.2.2.2\lib\netstandard2.0\Microsoft.AspNetCore.Http.dll</HintPath>
</Reference>

View File

@@ -11,13 +11,15 @@ using System.Net.Http;
using System.Runtime.Serialization.Formatters;
using System.Web;
using System.Web.Http;
using SecuringWebApiUsingApiKey.Middleware;
namespace API_NetFramework.Controllers
{
public class AntwortAdresseController : ApiController
{
string tokenfunction = "Adresse";
string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString;
string connectionstring = StringCipher.Decrypt(ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString, "i%!k!7pab%bNLdA5hE4pkR4XaB%E^jB3d9tHuQ4pbF&BZjF7SB#WBWit5#HrbJiLrLVm");
/// <summary>
/// GetGetAll liefert alle GAS-Adressen
/// </summary>

View File

@@ -19,6 +19,8 @@ using System.Text;
using Microsoft.AspNetCore.Http.Features;
using System.Security.Cryptography;
using System.Net.Http.Headers;
using SecuringWebApiUsingApiKey.Middleware;
using DOCGEN.Klassen;
namespace API_NetFramework.Controllers
@@ -46,20 +48,20 @@ namespace API_NetFramework.Controllers
{
// GET: OnBase
string tokenfunction = "Archiv";
string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString;
string connectionstring = StringCipher.Decrypt(ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString, "i%!k!7pab%bNLdA5hE4pkR4XaB%E^jB3d9tHuQ4pbF&BZjF7SB#WBWit5#HrbJiLrLVm");
private void Update_IL_Log(ref ILResponse ilr, string dokumentid)
{
APILogging.Log((HttpRequestMessage)Request, "Start Updaet IL_Log: DokumentID:" + dokumentid, LogLevelType.Debug);
DB dB = new DB(ConfigurationManager.ConnectionStrings["JournalConnectionstring"].ConnectionString);
DB dB = new DB(StringCipher.Decrypt(ConfigurationManager.ConnectionStrings["JournalConnectionstring"].ConnectionString, "i%!k!7pab%bNLdA5hE4pkR4XaB%E^jB3d9tHuQ4pbF&BZjF7SB#WBWit5#HrbJiLrLVm"));
string sql = "Insert OnDoc_IL_Log (dokumentid, ilresponse,error, erstellt_am) values ('" + dokumentid + "',";
sql = sql + "'" + ilr.response.ToString() + "',";
if (ilr.senderror != 0) { sql = sql + "1,"; } else { sql = sql + "0,"; }
sql = sql +"getdate() )";
dB.Exec_SQL(sql);
dB = null;
APILogging.Log((HttpRequestMessage)Request, "Ende Updaet IL_Log: DokumentID:" + dokumentid, LogLevelType.Debug);
APILogging.Log((HttpRequestMessage)Request, "Ende Update IL_Log: DokumentID:" + dokumentid, LogLevelType.Debug);
}
private void update_dokumentstatus(string dokumentid)
@@ -89,8 +91,15 @@ namespace API_NetFramework.Controllers
}
try
{
APILogging.Log((HttpRequestMessage)Request, "Start ArchiveDocFromDatabase: DokumentID:"+DokumentID, LogLevelType.Debug);
string doktypnr = "";
string extension = "";
APILogging.Log((HttpRequestMessage)Request, "Start ArchiveDocFromDatabase: DokumentID:" + DokumentID, LogLevelType.Debug);
DB db = new DB(connectionstring);
db.Get_Tabledata("Select dokumenttypnr, dokumentname from dokument where dokumentid='" + DokumentID+"'", false, true);
extension = System.IO.Path.GetExtension(db.dsdaten.Tables[0].Rows[0]["dokumentname"].ToString());
doktypnr = db.dsdaten.Tables[0].Rows[0][0].ToString();
db.clear_parameter();
db.add_parameter("@dokumentid", DokumentID);
db.Get_Tabledata("[sp_Get_OnDoc_Parameters]", true, false);
@@ -98,8 +107,18 @@ namespace API_NetFramework.Controllers
DocGet dg = new DocGet(connectionstring);
clsdok dok = new clsdok("", "", "");
dok = dg.GetDocAsPDF(DokumentID);
string[] officeformat = System.Configuration.ConfigurationManager.AppSettings["ArchivierungOfficeFormat"].ToString().Split(',');
if (officeformat.Contains(doktypnr) || extension.ToUpper()=="PDF")
{
dg.GetDoc(DokumentID);
extension = extension.ToUpper().Replace(".", "");
}
else {
dok = dg.GetDocAsPDF(DokumentID);
extension = "PDF";
}
if (db.dsdaten.Tables[0].Rows[0]["BpNummer"].ToString() == "")
{
@@ -112,19 +131,15 @@ namespace API_NetFramework.Controllers
onbasedoc.personNummer = "";
}
onbasedoc.dokumentDatum = db.dsdaten.Tables[0].Rows[0]["DokumentDatum"].ToString();
onbasedoc.dokumentTyp = db.dsdaten.Tables[0].Rows[0]["dokumenttyp"].ToString();
onbasedoc.dateiTyp = db.dsdaten.Tables[0].Rows[0]["dateityp"].ToString();
onbasedoc.dokumentTyp = db.dsdaten.Tables[0].Rows[0]["dokumenttyp"].ToString(); ;
onbasedoc.dateiTyp = extension;
var Attribute = new List<Model.OnBaseDocUpload.attribute>();
onbasedoc.attributes = new List<Model.OnBaseDocUpload.attribute>();
foreach (System.Data.DataRow rw in db.dsdaten.Tables[1].Rows)
{
var p = new OnBaseDocUpload.attribute()
{
fieldname = rw["fieldname"].ToString(),
fieldvalue = rw["fieldvalue"].ToString()
};
Attribute.Add(p);
OnBaseDocUpload.attribute na = new OnBaseDocUpload.attribute(rw["fieldname"].ToString(), rw["fieldvalue"].ToString());
onbasedoc.attributes.Add(na);
}
onbasedoc.attributes = Attribute;
onbasedoc.dokumentDatei = dok.dokument;
db = null;
ILResponse ilr = new ILResponse();
@@ -175,36 +190,6 @@ namespace API_NetFramework.Controllers
}
//[HttpGet]
//[Route("API/ArchiveDocBase64")]
///// <summary>
///// Archiviert das als Base64String übergebene Dokument in OnBase
///// </summary>
///// <param name="DokumentID"></param>
///// <param name="Dokumenttyp"></param>
///// <returns>
///// Returncode: 200 (OK)
///// Dokumenthandle aus OnBase
///// </returns>
///// <remarks></remarks>
////
//public IHttpActionResult ArchivDocBase64(string DokumentID, string Dokumenttyp)
//{
// if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
// {
// return Content(HttpStatusCode.Unauthorized, "Invalid Token or API-Key");
// }
// try
// {
// return Ok();
// }
// catch (Exception e)
// {
// APILogging.Log((HttpRequestMessage)Request, e.Message, LogLevelType.Error);
// return Content(HttpStatusCode.InternalServerError, e.Message);
// }
//}
/// <summary>
/// CheckDocID prüft auf eine vorhandene DokumentID in OnDoc (DokumentID OFFEDK... / Barcode-Klenber-Nr)
/// </summary>
@@ -234,8 +219,7 @@ namespace API_NetFramework.Controllers
db.Get_Tabledata("Select barcodenr from barcodeetikette where dokumentid='" + DokumentID + "'", false, true);
if (db.dsdaten.Tables[0].Rows.Count > 0)
{
return (ArchivDocFromIRIS(DokumentID));
//return Ok(DokumentID);
return Ok(DokumentID);
}
APILogging.Log((HttpRequestMessage)Request, "Ende Check DokumentID: DokumentID:" + DokumentID, LogLevelType.Debug);
@@ -282,8 +266,7 @@ namespace API_NetFramework.Controllers
APILogging.Log((HttpRequestMessage)Request, db.dsdaten.Tables[0].Rows[0].ToString() + dokumentid, LogLevelType.Debug);
return Content(HttpStatusCode.NotFound, returnmessage);
case "0":
APILogging.Log((HttpRequestMessage)Request, "Ende ArchivDocFromIRIS DokumentID:" + dokumentid, LogLevelType.Debug);
return Ok(dokumentid);
return (ArchivDocFromDatabase(dokumentid));
default:
break;
};

View File

@@ -12,6 +12,7 @@ using Newtonsoft.Json;
using API_NetFramework.Models;
using System.Security.Cryptography;
using edoka_dms;
using SecuringWebApiUsingApiKey.Middleware;
namespace API_NetFramework.Controllers
@@ -24,7 +25,7 @@ namespace API_NetFramework.Controllers
public class DocumentController : ApiController
{
public string tokenfunction = "Dokument";
string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString;
string connectionstring = StringCipher.Decrypt(ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString, "i%!k!7pab%bNLdA5hE4pkR4XaB%E^jB3d9tHuQ4pbF&BZjF7SB#WBWit5#HrbJiLrLVm");
[HttpGet]
[Route("API/GetDocument")]
public IHttpActionResult GetDocument(string dokid)

View File

@@ -16,6 +16,7 @@ using System.Threading.Tasks;
using System.Threading;
using API_NetFramework.Models;
using System.Web.Http.Controllers;
using SecuringWebApiUsingApiKey.Middleware;
@@ -36,7 +37,8 @@ namespace API_NetFramework.Controllers
public class UnterschriftController : ApiController
{
string tokenfunction = "Unterschrift";
string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString;
string connectionstring = StringCipher.Decrypt(ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString, "i%!k!7pab%bNLdA5hE4pkR4XaB%E^jB3d9tHuQ4pbF&BZjF7SB#WBWit5#HrbJiLrLVm");
[HttpGet]
[Route("API/GetUnterschriftAsBase64")]
public IHttpActionResult GetUnterschriftAsBase64(string TGNummer)

View File

@@ -7,6 +7,7 @@ using System.Configuration;
using Database;
using System.Net.Http;
using System.ComponentModel;
using SecuringWebApiUsingApiKey.Middleware;
namespace API_NetFramework.Models
{
@@ -18,7 +19,7 @@ namespace API_NetFramework.Models
{
if (Logging.Logging.IntLogLevel == "")
{
string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString;
string connectionstring = StringCipher.Decrypt(ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString, "i%!k!7pab%bNLdA5hE4pkR4XaB%E^jB3d9tHuQ4pbF&BZjF7SB#WBWit5#HrbJiLrLVm");
DB db = new DB(connectionstring);
db.Get_Tabledata("Select * from nlog_parameter where id=3", false, true);
Logging.Logging.IntLogLevel = db.dsdaten.Tables[0].Rows[0]["LogLevel"].ToString();

View File

@@ -5,7 +5,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<Project>
<PropertyGroup>
<_PublishTargetUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc</_PublishTargetUrl>
<History>True|2024-11-13T16:47:13.0183160Z||;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|2024-11-24T17:56:32.4321643Z||;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>
@@ -82,16 +82,22 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>09/04/2024 19:25:14</publishTime>
</File>
<File Include="bin/BarcodeLib.dll">
<publishTime>11/18/2024 17:07:41</publishTime>
<publishTime>11/24/2024 14:23:50</publishTime>
</File>
<File Include="bin/BarcodeLib.pdb">
<publishTime>11/18/2024 17:07:41</publishTime>
<publishTime>11/24/2024 14:23:50</publishTime>
</File>
<File Include="bin/CSVNET.dll">
<publishTime>11/23/2024 19:27:07</publishTime>
</File>
<File Include="bin/CSVNET.pdb">
<publishTime>11/23/2024 19:27:07</publishTime>
</File>
<File Include="bin/Database.dll">
<publishTime>11/20/2024 15:24:20</publishTime>
<publishTime>11/24/2024 17:50:08</publishTime>
</File>
<File Include="bin/Database.pdb">
<publishTime>11/20/2024 15:24:20</publishTime>
<publishTime>11/24/2024 17:50:08</publishTime>
</File>
<File Include="bin/de/System.Net.Http.Formatting.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
@@ -124,13 +130,13 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/20/2023 22:35:04</publishTime>
</File>
<File Include="bin/DOCGEN.dll">
<publishTime>11/20/2024 15:24:21</publishTime>
<publishTime>11/24/2024 17:50:08</publishTime>
</File>
<File Include="bin/DOCGEN.dll.config">
<publishTime>11/18/2024 16:59:09</publishTime>
</File>
<File Include="bin/DOCGEN.pdb">
<publishTime>11/20/2024 15:24:21</publishTime>
<publishTime>11/24/2024 17:50:08</publishTime>
</File>
<File Include="bin/FastReport.Bars.dll">
<publishTime>11/27/2023 09:49:58</publishTime>
@@ -208,10 +214,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>11/04/2022 19:09:46</publishTime>
</File>
<File Include="bin/Model.dll">
<publishTime>11/20/2024 15:24:20</publishTime>
<publishTime>11/22/2024 12:26:16</publishTime>
</File>
<File Include="bin/Model.pdb">
<publishTime>11/20/2024 15:24:20</publishTime>
<publishTime>11/22/2024 12:26:16</publishTime>
</File>
<File Include="bin/Newtonsoft.Json.Bson.dll">
<publishTime>11/28/2018 00:10:18</publishTime>
@@ -235,16 +241,16 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>11/18/2024 17:07:31</publishTime>
</File>
<File Include="bin/OnDocOffice.dll">
<publishTime>11/20/2024 15:24:21</publishTime>
<publishTime>11/24/2024 17:50:08</publishTime>
</File>
<File Include="bin/OnDocOffice.pdb">
<publishTime>11/20/2024 15:24:21</publishTime>
<publishTime>11/24/2024 17:50:08</publishTime>
</File>
<File Include="bin/OnDoc_NetFramework.dll">
<publishTime>11/20/2024 15:24:21</publishTime>
<publishTime>11/24/2024 18:56:30</publishTime>
</File>
<File Include="bin/OnDoc_NetFramework.pdb">
<publishTime>11/20/2024 15:24:21</publishTime>
<publishTime>11/24/2024 18:56:30</publishTime>
</File>
<File Include="bin/Owin.dll">
<publishTime>11/13/2012 13:19:34</publishTime>
@@ -429,6 +435,12 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<File Include="bin/System.Web.WebPages.Razor.dll">
<publishTime>10/20/2023 22:33:58</publishTime>
</File>
<File Include="bin/VBFileManagement.dll">
<publishTime>11/24/2024 12:59:01</publishTime>
</File>
<File Include="bin/VBFileManagement.pdb">
<publishTime>11/24/2024 12:59:01</publishTime>
</File>
<File Include="bin/WebActivatorEx.dll">
<publishTime>05/10/2016 15:11:52</publishTime>
</File>
@@ -622,7 +634,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>03/06/2024 08:11:55</publishTime>
</File>
<File Include="Web.config">
<publishTime>11/20/2024 15:24:22</publishTime>
<publishTime>11/24/2024 17:50:09</publishTime>
</File>
</ItemGroup>
</Project>

View File

@@ -21,10 +21,13 @@
<add key="ILFast" value="https://localhost:44303/API/Fast" />
<add key="ILSlow" value="https://localhost:44303/API/Slow" />
<add key="ILDocupload" value="" />
<add key="ArchivierungOfficeFormat" value="1983,2396,2397,2421" />
<add key="ExcelValueFile" value="x:\exceldata.csv" />
<add key="ExcelDokType" value="2421" />
</appSettings>
<connectionStrings>
<add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="JournalConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_journale;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="EDOKAConnectionstring" connectionString="Po7oIigu4hOz6zXOpaSnrhveCQyfGgFeskvEQsvm3CEgxjJMEYYDEbnWlt9Qr9vGTkzqm5hvURTLA1hKVU++/ozcvT5qIVTpDLBTKd4AM/4YgN3+L9cx3mxMoWmv1JMjqxZVbR6GYiuSo1xuD05sl3IGoUenfugP6hBP/IC7MjUjisDUE6msFpWiraJr53gcfDvIrc2CUBTVUS+f94kewhlKxjtEohtCM71PN2zpoMiPyBIuXDyrYlYyokUOg6uV" />
<add name="JournalConnectionstring" connectionString="fPYJwxH9angA+JMQ9OUQ4hfBQZR9aohQseovi6H5GI0fPBr22eh34jHXesVUNDhwsPJJ0OmlpwxTCTVyjoY1Aw40d5tZuSeZO/1jKhPU/Yg+Ek2kXe/VFlTN0CxG/er1XxAtLOHL62GJMnpNryUkqIbKJqa46rB0JbLACg8WMdk7/0GmEn39Gi54EQMywlbZ2dCffgfko6mudawZ4vkzWcpH0QxSqBqu8sCtpZYSEl9VYnnX/SwJHVlgOuWgtcxt" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.8.1" />

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.

View File

@@ -21,10 +21,13 @@
<add key="ILFast" value="https://localhost:44303/API/Fast" />
<add key="ILSlow" value="https://localhost:44303/API/Slow" />
<add key="ILDocupload" value="" />
<add key="ArchivierungOfficeFormat" value="1983,2396,2397,2421" />
<add key="ExcelValueFile" value="x:\exceldata.csv" />
<add key="ExcelDokType" value="2421" />
</appSettings>
<connectionStrings>
<add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="JournalConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_journale;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="EDOKAConnectionstring" connectionString="Po7oIigu4hOz6zXOpaSnrhveCQyfGgFeskvEQsvm3CEgxjJMEYYDEbnWlt9Qr9vGTkzqm5hvURTLA1hKVU++/ozcvT5qIVTpDLBTKd4AM/4YgN3+L9cx3mxMoWmv1JMjqxZVbR6GYiuSo1xuD05sl3IGoUenfugP6hBP/IC7MjUjisDUE6msFpWiraJr53gcfDvIrc2CUBTVUS+f94kewhlKxjtEohtCM71PN2zpoMiPyBIuXDyrYlYyokUOg6uV" />
<add name="JournalConnectionstring" connectionString="fPYJwxH9angA+JMQ9OUQ4hfBQZR9aohQseovi6H5GI0fPBr22eh34jHXesVUNDhwsPJJ0OmlpwxTCTVyjoY1Aw40d5tZuSeZO/1jKhPU/Yg+Ek2kXe/VFlTN0CxG/er1XxAtLOHL62GJMnpNryUkqIbKJqa46rB0JbLACg8WMdk7/0GmEn39Gi54EQMywlbZ2dCffgfko6mudawZ4vkzWcpH0QxSqBqu8sCtpZYSEl9VYnnX/SwJHVlgOuWgtcxt" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.8.1" />

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,26 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
VBFileManagement
</name>
</assembly>
<members>
<member name="T:VBFileManagement.My.Resources.Resources">
<summary>
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
</summary>
</member>
<member name="P:VBFileManagement.My.Resources.Resources.ResourceManager">
<summary>
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
</summary>
</member>
<member name="P:VBFileManagement.My.Resources.Resources.Culture">
<summary>
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
</summary>
</member>
</members>
</doc>

View File

@@ -681,3 +681,180 @@ done
2024-11-21 17:40:32.1301|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002014002326559
2024-11-21 17:40:32.1400|DEBUG|OnDoc|
2024-11-21 17:40:32.1400|DEBUG|OnDoc|System.Data.DataRowOFFEDK0002014002326559
2024-11-22 06:58:35.4594|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 06:58:39.6477|DEBUG|OnDoc|
2024-11-22 06:58:45.1208|DEBUG|OnDoc|Ende ArchivDocFromIRIS DokumentID:OFFEDK0002008001966962
2024-11-22 06:58:54.6820|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 06:59:01.8230|DEBUG|OnDoc|
2024-11-22 06:59:11.6319|DEBUG|OnDoc|System.Data.DataRowOFFEDK0002008001966962
2024-11-22 07:00:52.6687|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 07:00:56.0356|DEBUG|OnDoc|
2024-11-22 07:01:09.0416|DEBUG|OnDoc|System.Data.DataRowOFFEDK0002008001966962
2024-11-22 07:02:13.8180|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 07:02:18.7897|DEBUG|OnDoc|
2024-11-22 07:03:51.8725|DEBUG|OnDoc|Ende ArchivDocFromIRIS DokumentID:OFFEDK0002008001966962
2024-11-22 07:03:56.1047|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 07:05:47.9171|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 07:05:50.7178|DEBUG|OnDoc|
2024-11-22 07:07:15.2622|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 07:07:17.0908|DEBUG|OnDoc|
2024-11-22 07:07:21.7374|DEBUG|OnDoc|System.Data.DataRowOFFEDK0002008001966962
2024-11-22 07:07:56.0277|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 07:08:01.2968|DEBUG|OnDoc|
2024-11-22 07:08:07.2327|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966962
2024-11-22 07:08:09.1349|DEBUG|OnDoc|
2024-11-22 07:08:10.5801|DEBUG|OnDoc|
2024-11-22 07:08:26.3104|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-22 07:08:51.4040|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966962
2024-11-22 07:08:52.8606|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0002008001966962
2024-11-22 07:08:52.8717|DEBUG|OnDoc|Ende Updaet IL_Log: DokumentID:OFFEDK0002008001966962
2024-11-22 07:09:55.8427|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 07:09:55.8868|DEBUG|OnDoc|
2024-11-22 07:09:55.8868|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966962
2024-11-22 07:09:55.8868|DEBUG|OnDoc|
2024-11-22 07:09:55.9078|DEBUG|OnDoc|
2024-11-22 07:09:58.6514|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-22 07:10:02.7912|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966962
2024-11-22 07:10:02.8259|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0002008001966962
2024-11-22 07:10:02.8259|DEBUG|OnDoc|Ende Updaet IL_Log: DokumentID:OFFEDK0002008001966962
2024-11-22 07:15:21.0764|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 07:15:23.4392|DEBUG|OnDoc|
2024-11-22 07:15:30.1395|DEBUG|OnDoc|System.Data.DataRowOFFEDK0002008001966962
2024-11-22 07:16:17.6898|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 07:16:20.3958|DEBUG|OnDoc|
2024-11-22 07:16:25.0979|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966962
2024-11-22 07:16:26.0036|DEBUG|OnDoc|
2024-11-22 07:16:26.8570|DEBUG|OnDoc|
2024-11-22 07:16:32.0054|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-22 07:16:44.2512|DEBUG|OnDoc|Ende Transfer to OnBase
2024-11-22 07:16:54.0859|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966962
2024-11-22 07:16:57.3724|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0002008001966962
2024-11-22 07:16:57.4120|DEBUG|OnDoc|Ende Updaet IL_Log: DokumentID:OFFEDK0002008001966962
2024-11-22 07:16:59.9696|DEBUG|OnDoc|
2024-11-22 07:16:59.9848|DEBUG|OnDoc|
2024-11-22 07:16:59.9848|DEBUG|OnDoc|
2024-11-22 07:17:00.0126|ERROR|OnDoc|Die Tabelle 0 kann nicht gefunden werden.
2024-11-22 07:17:10.8725|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966962
2024-11-22 07:17:10.9086|DEBUG|OnDoc|
2024-11-22 07:17:10.9086|DEBUG|OnDoc|System.Data.DataRowOFFEDK0002008001966962
2024-11-22 07:19:01.7271|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0002024002454347
2024-11-22 07:19:04.0950|DEBUG|OnDoc|
2024-11-22 07:19:04.1142|DEBUG|OnDoc|
2024-11-22 07:19:06.5897|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-22 07:19:06.7067|DEBUG|OnDoc|Ende Transfer to OnBase
2024-11-22 07:19:11.3374|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0002024002454347
2024-11-22 07:19:11.7538|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0002024002454347
2024-11-22 07:19:11.7639|DEBUG|OnDoc|Ende Updaet IL_Log: DokumentID:OFFEDK0002024002454347
2024-11-22 07:19:13.0532|DEBUG|OnDoc|
2024-11-22 07:19:13.0682|DEBUG|OnDoc|
2024-11-22 07:19:13.0682|DEBUG|OnDoc|
2024-11-22 07:19:13.0860|ERROR|OnDoc|Die Tabelle 0 kann nicht gefunden werden.
2024-11-22 08:20:46.8134|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001967079
2024-11-22 08:20:49.7235|DEBUG|OnDoc|
2024-11-22 08:20:53.9432|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001967079
2024-11-22 08:20:55.0854|DEBUG|OnDoc|
2024-11-22 08:20:56.3964|DEBUG|OnDoc|
2024-11-22 08:21:05.0971|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-22 08:21:13.6620|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001967079
2024-11-22 08:21:14.4999|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0002008001967079
2024-11-22 08:21:32.8741|ERROR|OnDoc|Die Eingabe ist keine gültige Base-64-Zeichenfolge, da sie ein Nicht-Base-64-Zeichen, mehr als zwei Leerstellen oder in den Leerstellen ein Zeichen enthält, das ungültig ist.
2024-11-22 08:21:39.5898|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001967079
2024-11-22 08:21:39.6313|DEBUG|OnDoc|
2024-11-22 08:21:53.2173|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001967079
2024-11-22 08:21:54.2127|DEBUG|OnDoc|
2024-11-22 08:21:55.1872|DEBUG|OnDoc|
2024-11-22 08:22:02.4763|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-22 08:22:12.4976|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001967079
2024-11-22 08:22:31.0149|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0002008001967079
2024-11-22 08:22:36.9765|ERROR|OnDoc|Die Eingabe ist keine gültige Base-64-Zeichenfolge, da sie ein Nicht-Base-64-Zeichen, mehr als zwei Leerstellen oder in den Leerstellen ein Zeichen enthält, das ungültig ist.
2024-11-22 08:23:23.2984|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001967079
2024-11-22 08:23:23.3614|DEBUG|OnDoc|
2024-11-22 08:23:24.8481|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001967079
2024-11-22 08:23:24.8601|DEBUG|OnDoc|
2024-11-22 08:23:24.8601|DEBUG|OnDoc|
2024-11-22 08:23:29.6213|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-22 08:23:38.0788|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001967079
2024-11-22 08:23:40.4182|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0002008001967079
2024-11-22 08:23:45.6149|DEBUG|OnDoc|Ende Updaet IL_Log: DokumentID:OFFEDK0002008001967079
2024-11-22 08:24:16.0301|DEBUG|OnDoc|Start Check DokumentID: DokumentID:OFFEDK0002008001967079
2024-11-22 08:24:16.0663|DEBUG|OnDoc|
2024-11-22 12:01:49.0571|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966328
2024-11-22 12:01:51.0895|DEBUG|OnDoc|
2024-11-22 12:01:57.3371|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966328
2024-11-22 12:01:58.4466|DEBUG|OnDoc|
2024-11-22 12:01:59.4552|DEBUG|OnDoc|
2024-11-22 12:02:12.5468|ERROR|OnDoc|Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
2024-11-22 12:02:25.7264|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966328
2024-11-22 12:02:28.0112|DEBUG|OnDoc|
2024-11-22 12:02:55.2154|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966328
2024-11-22 12:02:56.5439|DEBUG|OnDoc|
2024-11-22 12:02:57.6182|DEBUG|OnDoc|
2024-11-22 12:03:36.3534|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966328
2024-11-22 12:03:36.6986|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0002008001966328
2024-11-22 12:03:36.7207|DEBUG|OnDoc|Ende Updaet IL_Log: DokumentID:OFFEDK0002008001966328
2024-11-22 12:03:38.0768|DEBUG|OnDoc|
2024-11-22 12:03:38.0908|DEBUG|OnDoc|
2024-11-22 12:03:38.0908|DEBUG|OnDoc|
2024-11-22 12:03:38.1128|ERROR|OnDoc|Die Tabelle 0 kann nicht gefunden werden.
2024-11-22 12:08:52.6295|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966328
2024-11-22 12:08:52.6685|DEBUG|OnDoc|
2024-11-22 12:08:52.6685|DEBUG|OnDoc|System.Data.DataRowOFFEDK0002008001966328
2024-11-22 12:32:30.9748|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0082024002454355
2024-11-22 12:32:33.8233|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082024002454355
2024-11-22 12:32:35.9586|DEBUG|OnDoc|
2024-11-22 12:32:40.6454|DEBUG|OnDoc|
2024-11-22 12:32:55.0478|DEBUG|OnDoc|OFFEDK0082024002454355 / EDOKA Dokument-ID/OFFEDK0082024002454355
2024-11-22 12:32:58.2022|DEBUG|OnDoc|OFFEDK0082024002454355 / EDOKA Dokumenttyp Nr/120
2024-11-22 12:33:00.2042|DEBUG|OnDoc|OFFEDK0082024002454355 / Partner Kurzname/Ort/ , Weinfelden
2024-11-22 12:33:02.5005|DEBUG|OnDoc|OFFEDK0082024002454355 / Original Filename/BRIEOFFEDK0082024002454355.docx
2024-11-22 12:33:04.8339|DEBUG|OnDoc|OFFEDK0082024002454355 / Status Korrespondenz/In Aufbewahrung
2024-11-22 12:33:06.8676|DEBUG|OnDoc|OFFEDK0082024002454355 / Verantwortlich Email/hutter@shub.ch
2024-11-22 12:33:08.9371|DEBUG|OnDoc|OFFEDK0082024002454355 / Verantwortlich Name/Hutter Stefan
2024-11-22 12:33:10.9762|DEBUG|OnDoc|OFFEDK0082024002454355 / Verantwortlich Benutzername/Stefan Hutter lokal
2024-11-22 12:33:13.0206|DEBUG|OnDoc|OFFEDK0082024002454355 / Unterschrift rechts/Helena Zürcher, TG9665
2024-11-22 12:33:15.1419|DEBUG|OnDoc|OFFEDK0082024002454355 / Unterschrift links/Helena Ackermann, 1234
2024-11-22 12:33:17.1390|DEBUG|OnDoc|OFFEDK0082024002454355 / Created by/STEFAN HUTTER LOKAL
2024-11-22 12:33:19.1422|DEBUG|OnDoc|OFFEDK0082024002454355 / Papierkorb/NEIN
2024-11-22 12:33:21.5905|DEBUG|OnDoc|OFFEDK0082024002454355 / Container Nr/10 20 014.595-03
2024-11-22 12:33:26.8156|DEBUG|OnDoc|OFFEDK0082024002454355 / Herkunftsapplikation/EDOKA
2024-11-22 12:33:36.2837|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-22 12:33:48.2786|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082024002454355
2024-11-22 12:33:50.8796|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0082024002454355
2024-11-22 12:33:50.9016|DEBUG|OnDoc|Ende Updaet IL_Log: DokumentID:OFFEDK0082024002454355
2024-11-24 08:04:56.7510|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082024002454403
2024-11-24 08:04:58.9168|ERROR|OnDoc|Ungültiger Spaltenname "OFFEDK0082024002454403".
2024-11-24 08:05:04.7640|ERROR|OnDoc|Die Tabelle 0 kann nicht gefunden werden.
2024-11-24 08:05:32.9238|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082024002454403
2024-11-24 08:05:33.8045|DEBUG|OnDoc|
2024-11-24 08:05:55.3079|DEBUG|OnDoc|
2024-11-24 08:06:05.5418|DEBUG|OnDoc|
2024-11-24 08:06:44.0139|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-24 08:06:44.1815|DEBUG|OnDoc|Ende Transfer to OnBase
2024-11-24 08:06:49.0996|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082024002454403
2024-11-24 08:06:49.4560|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0082024002454403
2024-11-24 08:06:49.4742|DEBUG|OnDoc|Ende Updaet IL_Log: DokumentID:OFFEDK0082024002454403
2024-11-24 08:06:52.5347|DEBUG|OnDoc|
2024-11-24 08:06:52.5957|DEBUG|OnDoc|
2024-11-24 08:06:52.5957|DEBUG|OnDoc|
2024-11-24 08:12:31.0939|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0082024002454427
2024-11-24 08:12:31.1531|DEBUG|OnDoc|
2024-11-24 08:12:31.1633|DEBUG|OnDoc|
2024-11-24 08:12:31.1753|DEBUG|OnDoc|
2024-11-24 08:12:32.3744|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-24 08:12:32.5135|DEBUG|OnDoc|Ende Transfer to OnBase
2024-11-24 08:12:32.5466|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0082024002454427
2024-11-24 08:12:32.5466|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0082024002454427
2024-11-24 08:12:32.5466|DEBUG|OnDoc|Ende Updaet IL_Log: DokumentID:OFFEDK0082024002454427
2024-11-24 08:12:32.5466|DEBUG|OnDoc|
2024-11-24 08:12:32.5654|DEBUG|OnDoc|
2024-11-24 08:12:32.5654|DEBUG|OnDoc|
2024-11-24 18:47:08.2765|DEBUG|OnDoc|Start ArchivDocFromIRIS DokumentID: OFFEDK0002008001966718
2024-11-24 18:47:08.3358|DEBUG|OnDoc|
2024-11-24 18:47:13.4109|DEBUG|OnDoc|Start ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966718
2024-11-24 18:47:14.1148|DEBUG|OnDoc|
2024-11-24 18:47:18.3635|DEBUG|OnDoc|
2024-11-24 18:47:22.1157|DEBUG|OnDoc|
2024-11-24 18:47:36.1775|DEBUG|OnDoc|Start Transfer to OnBase
2024-11-24 18:47:40.3876|DEBUG|OnDoc|Ende ArchiveDocFromDatabase: DokumentID:OFFEDK0002008001966718
2024-11-24 18:47:40.3906|DEBUG|OnDoc|Start Updaet IL_Log: DokumentID:OFFEDK0002008001966718
2024-11-24 18:47:40.3906|DEBUG|OnDoc|Ende Update IL_Log: DokumentID:OFFEDK0002008001966718

View File

@@ -1 +1 @@
e3bd8e83aa5c2a0e3a79dc6a52be63d1040407a3b479c3366beaa1e996e86770
0d1a9ebbad5bb9929b52cfc409e2f295381fddc112dacd091614320eb3f2990e

View File

@@ -299,3 +299,8 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Compression.Bas
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.OfficeChart.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDocOffice.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDocOffice.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\CSVNET.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\CSVNET.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBFileManagement.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBFileManagement.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBFileManagement.xml

View File

@@ -1 +1 @@
58f0b5c20291391874abaca82e9cc5bf56c3a33fb153f42caa9174d4d752785e
cfbd970a1620d565a6eaba19ea5652f2f3862322af8e217ccf8c8aa9f99a07e0

View File

@@ -170,3 +170,8 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Compression.Bas
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.OfficeChart.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDocOffice.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDocOffice.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\CSVNET.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBFileManagement.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\CSVNET.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBFileManagement.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBFileManagement.xml

View File

@@ -12,7 +12,7 @@
<add key="UnterschriftPath" value="x:\docdemo\unterschriften\" />
<add key="JSONDebugPath" value="X:\\jsontemp\" />
<add key="Bearer" value="abc" />
<add key="APIKeys" value="U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+,&#xD;&#xA;5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6,&#xD;&#xA;ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS" />
<add key="APIKeys" value="x:\apikeys.key" />
<add key="APIUser" value="OnDoc,OnBase,Fivo" />
<add key="AuthCheck" value="Yes" />
<add key="SendToOnBase" value="No" />
@@ -21,10 +21,13 @@
<add key="ILFast" value="https://localhost:44303/API/Fast" />
<add key="ILSlow" value="https://localhost:44303/API/Slow" />
<add key="ILDocupload" value="" />
<add key="ArchivierungOfficeFormat" value="1983,2396,2397,2421" />
<add key="ExcelValueFile" value="x:\exceldata.csv" />
<add key="ExcelDokType" value="2421" />
</appSettings>
<connectionStrings>
<add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="JournalConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_journale;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="EDOKAConnectionstring" connectionString="Po7oIigu4hOz6zXOpaSnrhveCQyfGgFeskvEQsvm3CEgxjJMEYYDEbnWlt9Qr9vGTkzqm5hvURTLA1hKVU++/ozcvT5qIVTpDLBTKd4AM/4YgN3+L9cx3mxMoWmv1JMjqxZVbR6GYiuSo1xuD05sl3IGoUenfugP6hBP/IC7MjUjisDUE6msFpWiraJr53gcfDvIrc2CUBTVUS+f94kewhlKxjtEohtCM71PN2zpoMiPyBIuXDyrYlYyokUOg6uV" />
<add name="JournalConnectionstring" connectionString="fPYJwxH9angA+JMQ9OUQ4hfBQZR9aohQseovi6H5GI0fPBr22eh34jHXesVUNDhwsPJJ0OmlpwxTCTVyjoY1Aw40d5tZuSeZO/1jKhPU/Yg+Ek2kXe/VFlTN0CxG/er1XxAtLOHL62GJMnpNryUkqIbKJqa46rB0JbLACg8WMdk7/0GmEn39Gi54EQMywlbZ2dCffgfko6mudawZ4vkzWcpH0QxSqBqu8sCtpZYSEl9VYnnX/SwJHVlgOuWgtcxt" />
</connectionStrings>
<system.web>
<compilation targetFramework="4.8.1" />
@@ -125,9 +128,4 @@
</handlers>
</system.webServer>
</configuration>
<!--APIKeys
Adresse: U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+
Archiv,Dokument,Unterschrift: 5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6
Unterschrift: ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS
-->
<!--ProjectGuid: D1F49CD8-7015-425E-A16F-738BC4222BDB-->

View File

@@ -12,9 +12,7 @@
<add key="UnterschriftPath" value="x:\docdemo\unterschriften\" />
<add key="JSONDebugPath" value="X:\\jsontemp\" />
<add key="Bearer" value="abc" />
<add key="APIKeys" value="U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+,
5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6,
ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS" />
<add key="APIKeys" value="x:\apikeys.key"/>
<add key="APIUser" value="OnDoc,OnBase,Fivo"/>
<add key="AuthCheck" value="Yes" />
<add key="SendToOnBase" value="No" />
@@ -23,10 +21,13 @@ ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4
<add key="ILFast" value="https://localhost:44303/API/Fast" />
<add key="ILSlow" value="https://localhost:44303/API/Slow" />
<add key="ILDocupload" value="" />
<add key="ArchivierungOfficeFormat" value="1983,2396,2397,2421" />
<add key="ExcelValueFile" value="x:\exceldata.csv" />
<add key="ExcelDokType" value="2421" />
</appSettings>
<connectionStrings>
<add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="JournalConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_journale;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="EDOKAConnectionstring" connectionString="Po7oIigu4hOz6zXOpaSnrhveCQyfGgFeskvEQsvm3CEgxjJMEYYDEbnWlt9Qr9vGTkzqm5hvURTLA1hKVU++/ozcvT5qIVTpDLBTKd4AM/4YgN3+L9cx3mxMoWmv1JMjqxZVbR6GYiuSo1xuD05sl3IGoUenfugP6hBP/IC7MjUjisDUE6msFpWiraJr53gcfDvIrc2CUBTVUS+f94kewhlKxjtEohtCM71PN2zpoMiPyBIuXDyrYlYyokUOg6uV" />
<add name="JournalConnectionstring" connectionString="fPYJwxH9angA+JMQ9OUQ4hfBQZR9aohQseovi6H5GI0fPBr22eh34jHXesVUNDhwsPJJ0OmlpwxTCTVyjoY1Aw40d5tZuSeZO/1jKhPU/Yg+Ek2kXe/VFlTN0CxG/er1XxAtLOHL62GJMnpNryUkqIbKJqa46rB0JbLACg8WMdk7/0GmEn39Gi54EQMywlbZ2dCffgfko6mudawZ4vkzWcpH0QxSqBqu8sCtpZYSEl9VYnnX/SwJHVlgOuWgtcxt" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.8.1" />
@@ -128,8 +129,4 @@ ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4
</system.webServer>
</configuration>
<!--APIKeys
Adresse: U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+
Archiv,Dokument,Unterschrift: 5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6
Unterschrift: ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS
-->

View File

@@ -12,7 +12,7 @@
<add key="UnterschriftPath" value="x:\docdemo\unterschriften\" />
<add key="JSONDebugPath" value="X:\\jsontemp\" />
<add key="Bearer" value="abc" />
<add key="APIKeys" value="U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+,&#xD;&#xA;5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6,&#xD;&#xA;ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS" />
<add key="APIKeys" value="x:\apikeys.key" />
<add key="APIUser" value="OnDoc,OnBase,Fivo" />
<add key="AuthCheck" value="Yes" />
<add key="SendToOnBase" value="No" />
@@ -21,10 +21,13 @@
<add key="ILFast" value="https://localhost:44303/API/Fast" />
<add key="ILSlow" value="https://localhost:44303/API/Slow" />
<add key="ILDocupload" value="" />
<add key="ArchivierungOfficeFormat" value="1983,2396,2397,2421" />
<add key="ExcelValueFile" value="x:\exceldata.csv" />
<add key="ExcelDokType" value="2421" />
</appSettings>
<connectionStrings>
<add name="EDOKAConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="JournalConnectionstring" connectionString="Data Source=shu01\shu00;Initial Catalog=edoka_journale;Persist Security Info=True;User ID=sa;Password=*shu29;" />
<add name="EDOKAConnectionstring" connectionString="Po7oIigu4hOz6zXOpaSnrhveCQyfGgFeskvEQsvm3CEgxjJMEYYDEbnWlt9Qr9vGTkzqm5hvURTLA1hKVU++/ozcvT5qIVTpDLBTKd4AM/4YgN3+L9cx3mxMoWmv1JMjqxZVbR6GYiuSo1xuD05sl3IGoUenfugP6hBP/IC7MjUjisDUE6msFpWiraJr53gcfDvIrc2CUBTVUS+f94kewhlKxjtEohtCM71PN2zpoMiPyBIuXDyrYlYyokUOg6uV" />
<add name="JournalConnectionstring" connectionString="fPYJwxH9angA+JMQ9OUQ4hfBQZR9aohQseovi6H5GI0fPBr22eh34jHXesVUNDhwsPJJ0OmlpwxTCTVyjoY1Aw40d5tZuSeZO/1jKhPU/Yg+Ek2kXe/VFlTN0CxG/er1XxAtLOHL62GJMnpNryUkqIbKJqa46rB0JbLACg8WMdk7/0GmEn39Gi54EQMywlbZ2dCffgfko6mudawZ4vkzWcpH0QxSqBqu8sCtpZYSEl9VYnnX/SwJHVlgOuWgtcxt" />
</connectionStrings>
<system.web>
<compilation targetFramework="4.8.1" />
@@ -125,9 +128,4 @@
</handlers>
</system.webServer>
</configuration>
<!--APIKeys
Adresse: U3AF12C/o+r8c1fhnk+NkEOduuH9uNH3aZ1AVb0dHN1fxMGLr1s0eKcvoeJ7bPY02ytHD4SjcFb78NiQQyvWtDD+S7noWCyNmaCQkXHMx4LAomlnvnwKPqVs1TQ0qFB+
Archiv,Dokument,Unterschrift: 5sPQAPCxiSj+JWf+sWKTYgdTRSXeZJX/Ft2wE5B/SaSPoxPNMvkTgNjbmiK18SNmJ66OPzOM1fEw70R+VZeRWU+5fowTIXAGYLDneikxmK4HnIJku8732xxJ/9EomCZ6
Unterschrift: ecJVgQbmauycFRw5Lz6hB0dJb6GYCePckr2kw3g+xLkbS+h6oxR0iPMFkP3uXpFq7luWAdXrEWs1kmR4Pan5rN+bgwm2YjdPl56Et/Z5hIr+QJhPMB8lmNO1oJytu3GS
-->
<!--ProjectGuid: D1F49CD8-7015-425E-A16F-738BC4222BDB-->